In [15]:
import os
import sys
import pandas as pd
import plotly.express as px
In [8]:
import os
os.chdir("../..")
In [10]:
os.getcwd()
Out[10]:
'/Volumes/GoogleDrive/My Drive/Computer Backups/Rahul Yerrabelli drive/PythonProjects/GeospatialAnalysis'
In [11]:
import geopandas
import rioxarray                 # Surface data manipulation
import xarray                    # Surface data manipulation
from pysal.explore import esda   # Exploratory Spatial analytics
from pysal.lib import weights    # Spatial weights
import contextily                # Background tiles
OMP: Info #276: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead.
/Users/ryerrabelli/.conda/envs/GeospatialAnalysis/lib/python3.8/site-packages/spaghetti/network.py:36: FutureWarning: The next major release of pysal/spaghetti (2.0.0) will drop support for all ``libpysal.cg`` geometries. This change is a first step in refactoring ``spaghetti`` that is expected to result in dramatically reduced runtimes for network instantiation and operations. Users currently requiring network and point pattern input as ``libpysal.cg`` geometries should prepare for this simply by converting to ``shapely`` geometries.
  warnings.warn(f"{dep_msg}", FutureWarning)
In [155]:
fips2county = pd.read_csv("data/fips2county.tsv", sep="\t", comment='#', dtype=str).sort_values(by="CountyFIPS")
fips2countygeo = geopandas.read_file("data/plotly_usa_geojson-counties-fips.json").sort_values(by="id")
#fips2countygeo = geopandas.read_file("https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json")
In [158]:
fips2county.head()
Out[158]:
StateFIPS CountyFIPS_3 CountyName StateName CountyFIPS StateAbbr STATE_COUNTY
0 01 001 Autauga Alabama 01001 AL AL | AUTAUGA
1 01 003 Baldwin Alabama 01003 AL AL | BALDWIN
2 01 005 Barbour Alabama 01005 AL AL | BARBOUR
3 01 007 Bibb Alabama 01007 AL AL | BIBB
4 01 009 Blount Alabama 01009 AL AL | BLOUNT
In [161]:
df_orig.sort_values(by="FIPS").head()
Out[161]:
FIPS Total Number of Services Total Medicare Payment Amount Total Number of Services: 2019 Total Medicare Payment Amount: 2019 Total Number of Services: 2018 Total Medicare Payment Amount: 2018 Total Number of Services: 2017 Total Medicare Payment Amount: 2017 Total Number of Services: 2016 ... Diabetes Asthma Arthritis Hypertension Heart Failure Ischemic Heart Disease Population Density Medicare Population Density Moran I score for ACS billing fraction County
556 01003 524.0 29853.60 50.0 4107.68 238.0 12862.19 236.0 12883.73 0.0 ... 23.58 4.76 37.42 60.28 12.38 32.04 133.873533 29.847074 Low-High Baldwin
180 01015 1151.0 190568.73 188.0 27504.74 241.0 36262.76 217.0 32923.37 236.0 ... 30.44 5.30 42.24 65.54 16.86 34.70 189.179161 42.220748 Non Significant Calhoun
0 01017 408.0 30064.80 157.0 10363.09 115.0 6360.51 136.0 13341.20 0.0 ... 34.70 4.10 35.56 67.00 16.78 31.58 56.426908 14.230610 Non Significant Chambers
168 01031 455.0 141396.75 49.0 12137.77 96.0 23540.88 67.0 20028.67 104.0 ... 31.00 6.68 41.58 67.88 14.30 29.88 76.088557 14.931691 Non Significant Coffee
1 01033 272.0 37080.23 27.0 3247.80 38.0 3775.56 47.0 6287.85 52.0 ... 33.02 4.94 40.44 71.38 14.00 30.60 92.421606 22.681014 Non Significant Colbert

5 rows × 72 columns

In [162]:
import pandas as pd

# The ent CSV file only contains the counties which are analyzable
df_orig = pd.read_csv("data/2022_04_10 ent initial output.csv", dtype={"FIPS": str}).sort_values(by="FIPS")
# Merge with the fips 2 county standard data set
df_wide = pd.merge(left=df_orig, right=fips2county, how="left", left_on='FIPS', right_on='CountyFIPS')
# Insert a county "County, ST" col (i.e. "Freehold, NJ" or "Chicago, IL") for ease
df_wide.insert(1, "County_St", df_wide["CountyName"].astype(str) + ", " + df_wide["StateAbbr"].astype(str))
# Display with all the columns
with pd.option_context('display.max_rows', 3, 'display.max_columns', None): 
    display(df_wide)
    pass

loc_simple = ["FIPS", "CountyName","StateAbbr", "% ASC Billing", "Moran I score for ACS billing fraction"]
df_wide_simple=df_wide[loc_simple]

loc_main = ["FIPS", "County",	"StateFIPS", "Total Medicare Payment Amount", "% ASC Procedures", "% ASC Billing",	"CountyFIPS_3",	"CountyName",	"StateName",	"CountyFIPS",	"StateAbbr",	"STATE_COUNTY"]
#a=pd.merge(right=df_orig, left=fips2county, how="outer", right_on='FIPS', left_on='CountyFIPS')
#a=a.loc[:,loc_main]
#df_orig2=df_orig.loc[:,["FIPS","pop","Moran I score for ACS billing fraction","County"]]
FIPS County_St Total Number of Services Total Medicare Payment Amount Total Number of Services: 2019 Total Medicare Payment Amount: 2019 Total Number of Services: 2018 Total Medicare Payment Amount: 2018 Total Number of Services: 2017 Total Medicare Payment Amount: 2017 Total Number of Services: 2016 Total Medicare Payment Amount: 2016 Total Number of Services: 2015 Total Medicare Payment Amount: 2015 tot_ratio % ASC Procedures: 2019 % ASC Billing: 2019 % ASC Procedures: 2018 % ASC Billing: 2018 % ASC Procedures: 2017 % ASC Billing: 2017 % ASC Procedures: 2016 % ASC Billing: 2016 % ASC Procedures: 2015 % ASC Billing: 2015 % ASC Procedures % ASC Billing Beneficiaries with Part A and Part B Average Age Percent Male Percent Non-Hispanic White Percent African American Percent Hispanic Percent Eligible for Medicaid Average HCC Score Hospital Readmission Rate Emergency Department Visits per 1000 Beneficiaries Procedures Per Capita Standardized Costs Procedure Events Per 1000 Beneficiaries metro pct_poverty median_house_income pop 2013_Rural_urban_cont_code Pct_wthout_high_diploma Pct_wth_high_diploma Pct_wth_some_coll Pct_wth_coll_degree unemployment pct_uninsured fibro tabacco obesity migrane Alzheimers Depression Alcohol Abuse Drug Abuse Schizo_othr_psych COPD Chronic Kidney Disease Osteoporosis Stroke Diabetes Asthma Arthritis Hypertension Heart Failure Ischemic Heart Disease Population Density Medicare Population Density Moran I score for ACS billing fraction County StateFIPS CountyFIPS_3 CountyName StateName CountyFIPS StateAbbr STATE_COUNTY
0 01003 Baldwin, AL 524.0 29853.60 50.0 4107.68 238.0 12862.19 236.0 12883.73 0.0 0.00 0.0 0.00 15.0 0.00000 0.000000 0.0 0.0 0.000000 0.000000 0.0 0.0 0.0 0.0 0.000000 0.000000 47450.4 72.2 46.114 92.722 4.384 1.06 8.484 0.920 15.616 565.6 811.670 7523.2 1 10.92 56582.6 212830.0 3.0 9.2 27.7 31.3 31.9 4.32 11.52 19.8 8.4 20.8 3.0 10.82 15.90 1.775 3.150 2.14 11.18 20.40 6.20 3.86 23.58 4.76 37.42 60.28 12.38 32.04 133.873533 29.847074 Low-High Baldwin 01 003 Baldwin Alabama 01003 AL AL | BALDWIN
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
940 56041 Uinta, WY 347.0 92886.86 179.0 65588.66 34.0 5826.04 47.0 9214.44 51.0 9390.43 36.0 2867.29 17.0 43.01676 72.010649 0.0 0.0 25.531915 72.933569 0.0 0.0 0.0 0.0 25.648415 58.082747 2939.2 70.0 48.514 0.000 0.000 0.00 14.766 0.818 12.368 579.0 529.996 3911.8 0 9.82 65848.4 20478.8 7.0 7.3 41.5 35.2 16.0 4.74 12.90 16.0 9.4 11.4 2.2 7.08 16.22 2.200 2.675 3.26 11.08 15.58 2.96 2.22 23.26 3.72 24.48 39.52 11.28 22.38 9.839597 1.412219 Non Significant Uinta 56 041 Uinta Wyoming 56041 WY WY | UINTA

941 rows × 80 columns

In [ ]:
 
In [13]:
cols_to_keep = ["FIPS","County_St"]
col_categories = ["Total Number of Services:", "Total Medicare Payment Amount:", "% ASC Procedures:", "% ASC Billing:"]

df_longs = []

# Convert each type of category to long format in separate dataframes
for col_category in col_categories:
        df_long = df_wide.melt(id_vars=cols_to_keep, 
                               var_name="Year", 
                               value_vars=[f"{col_category} {year}" for year in range(2015, 2019 +1)], 
                               value_name=f"{col_category} in Year",
                               )
        df_long["Year"] = df_long["Year"].replace({ f"{col_category} {year}":f"{year}" for year in range(2015, 2019 +1)})
        df_longs.append(df_long)

# Merge the separate category dataframes
df_long = df_longs[0]
for ind in range(1,len(df_longs)):
    df_long = pd.merge(left=df_long, right=df_longs[ind], how="outer", on=(cols_to_keep+["Year"]) )

# Merge with the overall wide dataframe to keep those other values
df_long = pd.merge(left=df_long, 
                   right=df_wide.drop([f"{col_category} {year}" for year in range(2015, 2019 +1) for col_category in col_categories], axis=1), 
                   how="left", on=cols_to_keep)

display(df_long)
FIPS County_St Year Total Number of Services: in Year Total Medicare Payment Amount: in Year % ASC Procedures: in Year % ASC Billing: in Year Total Number of Services Total Medicare Payment Amount tot_ratio ... Medicare Population Density Moran I score for ACS billing fraction County StateFIPS CountyFIPS_3 CountyName StateName CountyFIPS StateAbbr STATE_COUNTY
0 01017 Chambers, AL 2015 0.0 0.00 0.000000 0.000000 408.0 30064.800000 14.196990 ... 14.230610 Non Significant Chambers 01 017 Chambers Alabama 01017 AL AL | CHAMBERS
1 01033 Colbert, AL 2015 108.0 10404.39 0.000000 0.000000 272.0 37080.230000 16.000000 ... 22.681014 Non Significant Colbert 01 033 Colbert Alabama 01033 AL AL | COLBERT
2 01045 Dale, AL 2015 0.0 0.00 0.000000 0.000000 12.0 405.210000 0.999104 ... 17.700437 Non Significant Dale 01 045 Dale Alabama 01045 AL AL | DALE
3 01083 Limestone, AL 2015 0.0 0.00 0.000000 0.000000 55.0 9515.590000 4.000000 ... 29.157261 Non Significant Limestone 01 083 Limestone Alabama 01083 AL AL | LIMESTONE
4 05145 White, AR 2015 1217.0 48412.57 0.000000 0.000000 1269.0 52190.220000 11.995594 ... 15.224018 Non Significant White 05 145 White Arkansas 05145 AR AR | WHITE
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
4700 21073 Franklin, KY 2019 0.0 0.00 0.000000 0.000000 114.0 7749.960000 3.910144 ... 62.858188 Non Significant Franklin 21 073 Franklin Kentucky 21073 KY KY | FRANKLIN
4701 56021 Laramie, WY 2019 422.0 79083.86 100.000000 100.000000 1784.0 337949.890001 21.000000 ... 6.286729 Non Significant Laramie 56 021 Laramie Wyoming 56021 WY WY | LARAMIE
4702 54041 Lewis, WV 2019 0.0 0.00 0.000000 0.000000 606.0 26648.230000 4.000000 ... 10.524948 Low-Low Lewis 54 041 Lewis West Virginia 54041 WV WV | LEWIS
4703 50027 Windsor, VT 2019 319.0 12093.61 0.000000 0.000000 1132.0 47825.130000 35.000000 ... 14.320922 Low-Low Windsor 50 027 Windsor Vermont 50027 VT VT | WINDSOR
4704 51041 Chesterfield, VA 2019 111.0 47135.49 28.828829 51.859904 617.0 204885.309999 34.339788 ... 124.679835 Non Significant Chesterfield 51 041 Chesterfield Virginia 51041 VA VA | CHESTERFIELD

4705 rows × 65 columns

In [177]:
countiesgeo = geopandas.read_file("https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json")
countiesgeo = countiesgeo.sort_values(by="id")
In [178]:
countiesgeo.head()
Out[178]:
id GEO_ID STATE COUNTY NAME LSAD CENSUSAREA geometry
0 01001 0500000US01001 01 001 Autauga County 594.436 POLYGON ((-86.49677 32.34444, -86.71790 32.402...
1908 01003 0500000US01003 01 003 Baldwin County 1589.784 POLYGON ((-87.59893 30.99745, -87.59411 30.976...
1999 01005 0500000US01005 01 005 Barbour County 884.876 POLYGON ((-85.05603 32.06305, -85.05021 32.024...
710 01007 0500000US01007 01 007 Bibb County 622.582 POLYGON ((-87.42120 32.87451, -87.42013 32.902...
1 01009 0500000US01009 01 009 Blount County 644.776 POLYGON ((-86.57780 33.76532, -86.75914 33.840...
In [17]:
from urllib.request import urlopen
import json
with urlopen('https://raw.githubusercontent.com/plotly/datasets/master/geojson-counties-fips.json') as response:
    counties = json.load(response)
In [172]:
counties["features"][0]["id"]
Out[172]:
'01001'
In [173]:
counties2 = counties.copy()
counties2["features"] = sorted(counties2["features"], key=lambda d: d['id']) 
In [174]:
counties2
Out[174]:
{'type': 'FeatureCollection',
 'features': [{'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01001',
    'STATE': '01',
    'COUNTY': '001',
    'NAME': 'Autauga',
    'LSAD': 'County',
    'CENSUSAREA': 594.436},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.496774, 32.344437],
      [-86.717897, 32.402814],
      [-86.814912, 32.340803],
      [-86.890581, 32.502974],
      [-86.917595, 32.664169],
      [-86.71339, 32.661732],
      [-86.714219, 32.705694],
      [-86.413116, 32.707386],
      [-86.411172, 32.409937],
      [-86.496774, 32.344437]]]},
   'id': '01001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01003',
    'STATE': '01',
    'COUNTY': '003',
    'NAME': 'Baldwin',
    'LSAD': 'County',
    'CENSUSAREA': 1589.784},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.598927, 30.997454],
      [-87.594111, 30.976335],
      [-87.601355, 30.936294],
      [-87.622203, 30.897508],
      [-87.634938, 30.865886],
      [-87.624137, 30.845713],
      [-87.532607, 30.743489],
      [-87.502926, 30.722369],
      [-87.497515, 30.720123],
      [-87.481225, 30.716508],
      [-87.449362, 30.698913],
      [-87.407118, 30.671796],
      [-87.396997, 30.65364],
      [-87.394219, 30.641699],
      [-87.394479, 30.625192],
      [-87.449921, 30.51469],
      [-87.449841, 30.514369],
      [-87.448332, 30.513063],
      [-87.430578, 30.491096],
      [-87.419177, 30.410198],
      [-87.427478, 30.408398],
      [-87.440678, 30.391498],
      [-87.451378, 30.367199],
      [-87.450962, 30.346262],
      [-87.450078, 30.3111],
      [-87.452378, 30.300201],
      [-87.518324, 30.280435],
      [-87.544533, 30.275659],
      [-87.558097, 30.274437],
      [-87.581362, 30.269257],
      [-87.656888, 30.249709],
      [-87.73553, 30.240679],
      [-87.80056, 30.229365],
      [-87.838462, 30.227185],
      [-87.926119, 30.230373],
      [-87.962253, 30.229522],
      [-87.999996, 30.225753],
      [-88.014572, 30.222366],
      [-88.028401, 30.221132],
      [-88.029272, 30.222714],
      [-88.023991, 30.23039],
      [-87.966847, 30.235618],
      [-87.948979, 30.256564],
      [-87.936041, 30.261469],
      [-87.918247, 30.253308],
      [-87.913762, 30.247837],
      [-87.90046, 30.241531],
      [-87.893201, 30.239237],
      [-87.879343, 30.23859],
      [-87.860085, 30.240289],
      [-87.817743, 30.254292],
      [-87.802087, 30.253054],
      [-87.78775, 30.254244],
      [-87.766626, 30.262353],
      [-87.755263, 30.277292],
      [-87.755516, 30.291217],
      [-87.772758, 30.311701],
      [-87.796717, 30.324198],
      [-87.809266, 30.332702],
      [-87.82988, 30.353809],
      [-87.837239, 30.369324],
      [-87.845132, 30.377446],
      [-87.853806, 30.378481],
      [-87.865017, 30.38345],
      [-87.906343, 30.40938],
      [-87.908908, 30.41424],
      [-87.914136, 30.446144],
      [-87.920031, 30.470645],
      [-87.924211, 30.4761],
      [-87.931902, 30.4811],
      [-87.933355, 30.487357],
      [-87.911141, 30.525848],
      [-87.905343, 30.537566],
      [-87.901711, 30.550879],
      [-87.904168, 30.565985],
      [-87.907891, 30.573114],
      [-87.911431, 30.576261],
      [-87.914956, 30.585893],
      [-87.91253, 30.615795],
      [-87.919346, 30.63606],
      [-87.93107, 30.652694],
      [-87.936717, 30.657432],
      [-87.955989, 30.658862],
      [-87.981196, 30.67509],
      [-88.008396, 30.684956],
      [-88.026319, 30.753358],
      [-87.944546, 30.827046],
      [-87.981261, 30.886895],
      [-87.941152, 31.048161],
      [-87.972869, 31.162694],
      [-87.943748, 31.161341],
      [-87.946588, 31.19293],
      [-87.913637, 31.187356],
      [-87.765152, 31.297346],
      [-87.61589, 31.244458],
      [-87.615431, 30.997361],
      [-87.598927, 30.997454]]]},
   'id': '01003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01005',
    'STATE': '01',
    'COUNTY': '005',
    'NAME': 'Barbour',
    'LSAD': 'County',
    'CENSUSAREA': 884.876},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.056029, 32.063055],
      [-85.050212, 32.024196],
      [-85.062246, 31.991857],
      [-85.07233, 31.964758],
      [-85.08213, 31.944658],
      [-85.10663, 31.915159],
      [-85.132931, 31.88826],
      [-85.141831, 31.839861],
      [-85.141331, 31.783163],
      [-85.138668, 31.780425],
      [-85.130731, 31.772263],
      [-85.12523, 31.767063],
      [-85.124501, 31.763081],
      [-85.216076, 31.702409],
      [-85.416038, 31.706664],
      [-85.416437, 31.619466],
      [-85.748251, 31.618048],
      [-85.66623, 31.772877],
      [-85.657668, 31.880275],
      [-85.587344, 31.997355],
      [-85.428476, 32.014951],
      [-85.410241, 32.146651],
      [-85.257747, 32.148251],
      [-85.185067, 32.061708],
      [-85.056029, 32.063055]]]},
   'id': '01005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01007',
    'STATE': '01',
    'COUNTY': '007',
    'NAME': 'Bibb',
    'LSAD': 'County',
    'CENSUSAREA': 622.582},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.4212, 32.874508],
      [-87.420132, 32.902605],
      [-87.421936, 33.003379],
      [-87.318539, 33.006179],
      [-87.281945, 33.13306],
      [-87.199317, 33.130657],
      [-87.199153, 33.196554],
      [-87.065738, 33.246907],
      [-87.026846, 33.246459],
      [-87.025596, 33.165795],
      [-86.881182, 33.049901],
      [-86.876118, 32.836264],
      [-87.019157, 32.837034],
      [-87.319184, 32.831522],
      [-87.319473, 32.875124],
      [-87.4212, 32.874508]]]},
   'id': '01007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01009',
    'STATE': '01',
    'COUNTY': '009',
    'NAME': 'Blount',
    'LSAD': 'County',
    'CENSUSAREA': 644.776},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.577799, 33.765316],
      [-86.759144, 33.840617],
      [-86.953664, 33.815297],
      [-86.954305, 33.844862],
      [-86.96296, 33.844865],
      [-86.963358, 33.858221],
      [-86.924387, 33.909222],
      [-86.793914, 33.952059],
      [-86.685365, 34.05914],
      [-86.692061, 34.092654],
      [-86.599632, 34.119914],
      [-86.514881, 34.25437],
      [-86.45302, 34.259317],
      [-86.303516, 34.099073],
      [-86.332723, 33.986109],
      [-86.370152, 33.93977],
      [-86.325622, 33.940147],
      [-86.377532, 33.861706],
      [-86.577528, 33.801977],
      [-86.577799, 33.765316]]]},
   'id': '01009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01011',
    'STATE': '01',
    'COUNTY': '011',
    'NAME': 'Bullock',
    'LSAD': 'County',
    'CENSUSAREA': 622.805},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.410241, 32.146651],
      [-85.428476, 32.014951],
      [-85.587344, 31.997355],
      [-85.657668, 31.880275],
      [-85.791047, 31.880357],
      [-85.790048, 31.967254],
      [-85.88435, 31.967253],
      [-85.893652, 32.047351],
      [-85.996853, 32.051049],
      [-85.999157, 32.250543],
      [-85.919293, 32.274382],
      [-85.856218, 32.231975],
      [-85.433543, 32.234648],
      [-85.427442, 32.146551],
      [-85.410241, 32.146651]]]},
   'id': '01011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01013',
    'STATE': '01',
    'COUNTY': '013',
    'NAME': 'Butler',
    'LSAD': 'County',
    'CENSUSAREA': 776.829},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.701554, 31.523946],
      [-86.839386, 31.525204],
      [-86.906769, 31.632671],
      [-86.905899, 31.753035],
      [-86.906899, 31.830628],
      [-86.908939, 31.961673],
      [-86.857583, 31.962167],
      [-86.448198, 31.964629],
      [-86.448635, 31.655617],
      [-86.499533, 31.655247],
      [-86.499213, 31.525331],
      [-86.690217, 31.523693],
      [-86.701554, 31.523946]]]},
   'id': '01013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01015',
    'STATE': '01',
    'COUNTY': '015',
    'NAME': 'Calhoun',
    'LSAD': 'County',
    'CENSUSAREA': 605.868},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.145562, 33.679098],
      [-86.043993, 33.763595],
      [-86.066972, 33.839198],
      [-86.066439, 33.841094],
      [-86.065272, 33.842198],
      [-86.049072, 33.841598],
      [-86.048772, 33.852698],
      [-86.021271, 33.851498],
      [-86.021471, 33.866098],
      [-85.995169, 33.864897],
      [-85.99497, 33.879598],
      [-85.98637, 33.879198],
      [-85.98647, 33.893698],
      [-85.96917, 33.892898],
      [-85.96917, 33.914598],
      [-85.738975, 33.96846],
      [-85.529432, 33.95598],
      [-85.530094, 33.941423],
      [-85.532482, 33.889152],
      [-85.638049, 33.773339],
      [-85.638579, 33.648413],
      [-85.796054, 33.55622],
      [-85.794559, 33.585565],
      [-85.994935, 33.586475],
      [-86.050669, 33.67459],
      [-86.145562, 33.679098]]]},
   'id': '01015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01017',
    'STATE': '01',
    'COUNTY': '017',
    'NAME': 'Chambers',
    'LSAD': 'County',
    'CENSUSAREA': 596.531},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.184131, 32.870525],
      [-85.123421, 32.772248],
      [-85.13204, 32.764211],
      [-85.136776, 32.746512],
      [-85.285043, 32.730731],
      [-85.593151, 32.72853],
      [-85.593177, 33.10734],
      [-85.232378, 33.108077],
      [-85.223261, 33.06258],
      [-85.221868, 33.055538],
      [-85.184131, 32.870525]]]},
   'id': '01017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01019',
    'STATE': '01',
    'COUNTY': '019',
    'NAME': 'Cherokee',
    'LSAD': 'County',
    'CENSUSAREA': 553.7},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.512108, 34.518252],
      [-85.508384, 34.501212],
      [-85.502454, 34.474527],
      [-85.502316, 34.473954],
      [-85.462304, 34.286365],
      [-85.458693, 34.269437],
      [-85.458071, 34.265736],
      [-85.455371, 34.252854],
      [-85.455057, 34.250689],
      [-85.421731, 34.080821],
      [-85.398837, 33.964129],
      [-85.530094, 33.941423],
      [-85.529432, 33.95598],
      [-85.738975, 33.96846],
      [-85.843617, 34.200006],
      [-85.636645, 34.366622],
      [-85.576981, 34.483543],
      [-85.513699, 34.524133],
      [-85.512108, 34.518252]]]},
   'id': '01019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01021',
    'STATE': '01',
    'COUNTY': '021',
    'NAME': 'Chilton',
    'LSAD': 'County',
    'CENSUSAREA': 692.854},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.517344, 33.020566],
      [-86.515959, 32.929361],
      [-86.457015, 32.813899],
      [-86.374974, 32.75358],
      [-86.413335, 32.750591],
      [-86.413116, 32.707386],
      [-86.714219, 32.705694],
      [-86.71339, 32.661732],
      [-86.917595, 32.664169],
      [-87.01766, 32.663269],
      [-87.017762, 32.729532],
      [-87.019157, 32.837034],
      [-86.876118, 32.836264],
      [-86.881182, 33.049901],
      [-86.881638, 33.071861],
      [-86.610003, 33.070003],
      [-86.517344, 33.020566]]]},
   'id': '01021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01023',
    'STATE': '01',
    'COUNTY': '023',
    'NAME': 'Choctaw',
    'LSAD': 'County',
    'CENSUSAREA': 913.5},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.43865, 32.172806],
      [-88.431707, 32.227662],
      [-88.421453, 32.30868],
      [-87.930661, 32.310574],
      [-88.019145, 32.28524],
      [-88.007077, 32.185313],
      [-88.070615, 32.0617],
      [-88.07349, 31.990182],
      [-88.121414, 31.950256],
      [-88.180384, 31.814546],
      [-88.088288, 31.699303],
      [-88.464428, 31.697952],
      [-88.471106, 31.850949],
      [-88.471214, 31.851385],
      [-88.46996, 31.893759],
      [-88.468879, 31.930262],
      [-88.46866, 31.933173],
      [-88.455039, 32.039719],
      [-88.454959, 32.040576],
      [-88.43871, 32.172078],
      [-88.43865, 32.172806]]]},
   'id': '01023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01025',
    'STATE': '01',
    'COUNTY': '025',
    'NAME': 'Clarke',
    'LSAD': 'County',
    'CENSUSAREA': 1238.465},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.944233, 31.989872],
      [-87.667769, 31.991355],
      [-87.667488, 31.958459],
      [-87.620112, 31.827123],
      [-87.50093, 31.829251],
      [-87.516131, 31.697824],
      [-87.566841, 31.697115],
      [-87.565413, 31.553573],
      [-87.603137, 31.409556],
      [-87.665572, 31.423166],
      [-87.784796, 31.324672],
      [-87.765152, 31.297346],
      [-87.913637, 31.187356],
      [-87.946588, 31.19293],
      [-87.959619, 31.316206],
      [-87.908068, 31.323041],
      [-87.906143, 31.491752],
      [-88.072234, 31.5945],
      [-88.078711, 31.669618],
      [-88.080629, 31.67785],
      [-88.086946, 31.686181],
      [-88.088288, 31.699303],
      [-88.180384, 31.814546],
      [-88.121414, 31.950256],
      [-88.07349, 31.990182],
      [-87.944233, 31.989872]]]},
   'id': '01025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01027',
    'STATE': '01',
    'COUNTY': '027',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 603.961},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.85189, 33.498742],
      [-85.887782, 33.469427],
      [-85.782735, 33.469349],
      [-85.765427, 33.498593],
      [-85.643482, 33.495885],
      [-85.653654, 33.106634],
      [-85.974715, 33.105286],
      [-86.00917, 33.09026],
      [-86.17437, 33.104394],
      [-86.17283, 33.195681],
      [-86.120567, 33.194511],
      [-86.118198, 33.29632],
      [-85.980293, 33.29419],
      [-85.976525, 33.38187],
      [-85.923762, 33.396206],
      [-85.904909, 33.498655],
      [-85.85189, 33.498742]]]},
   'id': '01027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01029',
    'STATE': '01',
    'COUNTY': '029',
    'NAME': 'Cleburne',
    'LSAD': 'County',
    'CENSUSAREA': 560.1},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.337974, 33.653111],
      [-85.322497, 33.574167],
      [-85.314994, 33.535898],
      [-85.314091, 33.530218],
      [-85.313999, 33.529807],
      [-85.304439, 33.482884],
      [-85.643482, 33.495885],
      [-85.765427, 33.498593],
      [-85.782735, 33.469349],
      [-85.887782, 33.469427],
      [-85.85189, 33.498742],
      [-85.796852, 33.541849],
      [-85.796054, 33.55622],
      [-85.638579, 33.648413],
      [-85.638049, 33.773339],
      [-85.532482, 33.889152],
      [-85.530094, 33.941423],
      [-85.398837, 33.964129],
      [-85.386693, 33.901697],
      [-85.361844, 33.773951],
      [-85.360491, 33.767958],
      [-85.337974, 33.653111]]]},
   'id': '01029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01031',
    'STATE': '01',
    'COUNTY': '031',
    'NAME': 'Coffee',
    'LSAD': 'County',
    'CENSUSAREA': 678.972},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.791402, 31.196349],
      [-86.193476, 31.192213],
      [-86.196365, 31.425431],
      [-86.193951, 31.440072],
      [-86.194784, 31.529949],
      [-86.14395, 31.537675],
      [-86.145895, 31.617741],
      [-85.789142, 31.617964],
      [-85.791402, 31.196349]]]},
   'id': '01031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01033',
    'STATE': '01',
    'COUNTY': '033',
    'NAME': 'Colbert',
    'LSAD': 'County',
    'CENSUSAREA': 592.619},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.139988, 34.581703],
      [-88.139246, 34.587795],
      [-88.138719, 34.589215],
      [-88.118407, 34.724292],
      [-88.097888, 34.892202],
      [-87.973222, 34.88255],
      [-87.835833, 34.741239],
      [-87.524363, 34.832384],
      [-87.42651, 34.800022],
      [-87.416484, 34.767544],
      [-87.529667, 34.567081],
      [-88.139988, 34.581703]]]},
   'id': '01033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01035',
    'STATE': '01',
    'COUNTY': '035',
    'NAME': 'Conecuh',
    'LSAD': 'County',
    'CENSUSAREA': 850.156},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.701554, 31.523946],
      [-86.667245, 31.369404],
      [-86.700282, 31.192217],
      [-86.772519, 31.202243],
      [-86.763961, 31.261293],
      [-87.427455, 31.260386],
      [-87.166581, 31.519561],
      [-87.135051, 31.642417],
      [-87.052284, 31.716761],
      [-86.905899, 31.753035],
      [-86.906769, 31.632671],
      [-86.839386, 31.525204],
      [-86.701554, 31.523946]]]},
   'id': '01035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01037',
    'STATE': '01',
    'COUNTY': '037',
    'NAME': 'Coosa',
    'LSAD': 'County',
    'CENSUSAREA': 650.926},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.336776, 32.767469],
      [-86.336768, 32.753783],
      [-86.374974, 32.75358],
      [-86.457015, 32.813899],
      [-86.515959, 32.929361],
      [-86.517344, 33.020566],
      [-86.491029, 33.102944],
      [-86.226271, 33.104115],
      [-86.17437, 33.104394],
      [-86.00917, 33.09026],
      [-86.007187, 32.754984],
      [-86.31948, 32.753698],
      [-86.336776, 32.767469]]]},
   'id': '01037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01039',
    'STATE': '01',
    'COUNTY': '039',
    'NAME': 'Covington',
    'LSAD': 'County',
    'CENSUSAREA': 1030.456},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.388646, 30.994181],
      [-86.388647, 30.994181],
      [-86.391937, 30.994172],
      [-86.404912, 30.994049],
      [-86.454704, 30.993791],
      [-86.458319, 30.993998],
      [-86.512834, 30.9937],
      [-86.519938, 30.993245],
      [-86.563436, 30.995223],
      [-86.567586, 30.995109],
      [-86.664681, 30.994534],
      [-86.678383, 30.994537],
      [-86.688294, 30.995029],
      [-86.700282, 31.192217],
      [-86.667245, 31.369404],
      [-86.701554, 31.523946],
      [-86.690217, 31.523693],
      [-86.499213, 31.525331],
      [-86.39994, 31.527128],
      [-86.398536, 31.451325],
      [-86.280155, 31.52851],
      [-86.277031, 31.455602],
      [-86.193951, 31.440072],
      [-86.196365, 31.425431],
      [-86.193476, 31.192213],
      [-86.187246, 30.993992],
      [-86.289247, 30.993798],
      [-86.304596, 30.994029],
      [-86.364907, 30.994455],
      [-86.36927, 30.994477],
      [-86.374545, 30.994474],
      [-86.388646, 30.994181]]]},
   'id': '01039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01041',
    'STATE': '01',
    'COUNTY': '041',
    'NAME': 'Crenshaw',
    'LSAD': 'County',
    'CENSUSAREA': 608.84},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.193951, 31.440072],
      [-86.277031, 31.455602],
      [-86.280155, 31.52851],
      [-86.398536, 31.451325],
      [-86.39994, 31.527128],
      [-86.499213, 31.525331],
      [-86.499533, 31.655247],
      [-86.448635, 31.655617],
      [-86.448198, 31.964629],
      [-86.406276, 32.050731],
      [-86.303616, 32.051664],
      [-86.302217, 31.965065],
      [-86.191379, 31.966453],
      [-86.199378, 31.79045],
      [-86.148339, 31.790951],
      [-86.145895, 31.617741],
      [-86.14395, 31.537675],
      [-86.194784, 31.529949],
      [-86.193951, 31.440072]]]},
   'id': '01041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01043',
    'STATE': '01',
    'COUNTY': '043',
    'NAME': 'Cullman',
    'LSAD': 'County',
    'CENSUSAREA': 734.841},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.109911, 34.299299],
      [-87.110111, 34.313799],
      [-87.092311, 34.312297],
      [-86.581936, 34.304694],
      [-86.45302, 34.259317],
      [-86.514881, 34.25437],
      [-86.599632, 34.119914],
      [-86.692061, 34.092654],
      [-86.685365, 34.05914],
      [-86.793914, 33.952059],
      [-86.924387, 33.909222],
      [-86.963358, 33.858221],
      [-87.091836, 33.890093],
      [-87.151036, 33.993225],
      [-87.111992, 33.992385],
      [-87.109911, 34.299299]]]},
   'id': '01043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01045',
    'STATE': '01',
    'COUNTY': '045',
    'NAME': 'Dale',
    'LSAD': 'County',
    'CENSUSAREA': 561.15},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.416437, 31.619466],
      [-85.417434, 31.314973],
      [-85.485854, 31.246096],
      [-85.659985, 31.270889],
      [-85.710866, 31.195179],
      [-85.791402, 31.196349],
      [-85.789142, 31.617964],
      [-85.749941, 31.617914],
      [-85.748251, 31.618048],
      [-85.416437, 31.619466]]]},
   'id': '01045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01047',
    'STATE': '01',
    'COUNTY': '047',
    'NAME': 'Dallas',
    'LSAD': 'County',
    'CENSUSAREA': 978.695},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.906956, 32.04797],
      [-87.178071, 32.047514],
      [-87.262853, 32.147007],
      [-87.472206, 32.264919],
      [-87.47308, 32.307614],
      [-87.421744, 32.308101],
      [-87.423153, 32.482965],
      [-87.116515, 32.487659],
      [-87.017762, 32.729532],
      [-87.01766, 32.663269],
      [-86.917595, 32.664169],
      [-86.890581, 32.502974],
      [-86.814912, 32.340803],
      [-86.864367, 32.274918],
      [-86.810313, 32.224747],
      [-86.908302, 32.225028],
      [-86.906956, 32.04797]]]},
   'id': '01047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01049',
    'STATE': '01',
    'COUNTY': '049',
    'NAME': 'DeKalb',
    'LSAD': 'County',
    'CENSUSAREA': 777.093},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.513709, 34.52417],
      [-85.513699, 34.524133],
      [-85.576981, 34.483543],
      [-85.636645, 34.366622],
      [-85.843617, 34.200006],
      [-86.106086, 34.200756],
      [-86.110362, 34.427797],
      [-86.057712, 34.475994],
      [-86.00384, 34.480031],
      [-85.785471, 34.624584],
      [-85.583145, 34.860371],
      [-85.552482, 34.708321],
      [-85.552454, 34.708138],
      [-85.541267, 34.656783],
      [-85.541264, 34.656701],
      [-85.534423, 34.623789],
      [-85.527127, 34.588684],
      [-85.51393, 34.525192],
      [-85.513709, 34.52417]]]},
   'id': '01049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01051',
    'STATE': '01',
    'COUNTY': '051',
    'NAME': 'Elmore',
    'LSAD': 'County',
    'CENSUSAREA': 618.485},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.336776, 32.767469],
      [-86.31948, 32.753698],
      [-86.007187, 32.754984],
      [-85.87986, 32.754528],
      [-85.886148, 32.493053],
      [-85.89442, 32.447578],
      [-86.023012, 32.419978],
      [-86.192284, 32.43613],
      [-86.237068, 32.49498],
      [-86.411172, 32.409937],
      [-86.413116, 32.707386],
      [-86.413335, 32.750591],
      [-86.374974, 32.75358],
      [-86.336768, 32.753783],
      [-86.336776, 32.767469]]]},
   'id': '01051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01053',
    'STATE': '01',
    'COUNTY': '053',
    'NAME': 'Escambia',
    'LSAD': 'County',
    'CENSUSAREA': 945.08},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.163084, 30.999051],
      [-87.25498, 30.998285],
      [-87.255592, 30.998216],
      [-87.257002, 30.998194],
      [-87.25796, 30.998263],
      [-87.259689, 30.998172],
      [-87.26054, 30.998195],
      [-87.265564, 30.998267],
      [-87.288905, 30.998345],
      [-87.290995, 30.998352],
      [-87.301567, 30.998434],
      [-87.30403, 30.998191],
      [-87.312183, 30.998435],
      [-87.333973, 30.998272],
      [-87.355656, 30.998244],
      [-87.364011, 30.998218],
      [-87.367842, 30.998292],
      [-87.425774, 30.99809],
      [-87.432292, 30.998205],
      [-87.449811, 30.998272],
      [-87.455705, 30.998318],
      [-87.458658, 30.998386],
      [-87.461638, 30.998202],
      [-87.461783, 30.998201],
      [-87.466827, 30.998178],
      [-87.466879, 30.998178],
      [-87.478706, 30.998213],
      [-87.479703, 30.998197],
      [-87.480243, 30.998202],
      [-87.548543, 30.997927],
      [-87.571281, 30.99787],
      [-87.598928, 30.997457],
      [-87.598927, 30.997454],
      [-87.615431, 30.997361],
      [-87.61589, 31.244458],
      [-87.427455, 31.260386],
      [-86.763961, 31.261293],
      [-86.772519, 31.202243],
      [-86.700282, 31.192217],
      [-86.688294, 30.995029],
      [-86.725379, 30.996872],
      [-86.727293, 30.996882],
      [-86.728392, 30.996739],
      [-86.785692, 30.996977],
      [-86.785918, 30.996978],
      [-86.830497, 30.997401],
      [-86.831934, 30.997378],
      [-86.872989, 30.997631],
      [-86.888135, 30.997577],
      [-87.027107, 30.999255],
      [-87.036366, 30.999348],
      [-87.039989, 30.999594],
      [-87.053737, 30.999131],
      [-87.064063, 30.999191],
      [-87.068633, 30.999143],
      [-87.162614, 30.999055],
      [-87.163084, 30.999051]]]},
   'id': '01053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01055',
    'STATE': '01',
    'COUNTY': '055',
    'NAME': 'Etowah',
    'LSAD': 'County',
    'CENSUSAREA': 534.991},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.843617, 34.200006],
      [-85.738975, 33.96846],
      [-85.96917, 33.914598],
      [-85.96917, 33.892898],
      [-85.98647, 33.893698],
      [-85.98637, 33.879198],
      [-85.99497, 33.879598],
      [-85.995169, 33.864897],
      [-86.021471, 33.866098],
      [-86.021271, 33.851498],
      [-86.048772, 33.852698],
      [-86.049072, 33.841598],
      [-86.065272, 33.842198],
      [-86.199164, 33.988918],
      [-86.325622, 33.940147],
      [-86.370152, 33.93977],
      [-86.332723, 33.986109],
      [-86.303516, 34.099073],
      [-86.206107, 34.17265],
      [-86.106086, 34.200756],
      [-85.843617, 34.200006]]]},
   'id': '01055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01057',
    'STATE': '01',
    'COUNTY': '057',
    'NAME': 'Fayette',
    'LSAD': 'County',
    'CENSUSAREA': 627.66},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.951785, 33.91993],
      [-87.635932, 33.915251],
      [-87.63604, 33.871999],
      [-87.531602, 33.867618],
      [-87.528338, 33.692049],
      [-87.423843, 33.689112],
      [-87.423701, 33.602096],
      [-87.631718, 33.609833],
      [-87.666661, 33.521667],
      [-87.840683, 33.524839],
      [-87.85856, 33.525326],
      [-87.946519, 33.524065],
      [-87.951785, 33.91993]]]},
   'id': '01057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01059',
    'STATE': '01',
    'COUNTY': '059',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 633.821},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.155305, 34.463087],
      [-88.139988, 34.581703],
      [-87.529667, 34.567081],
      [-87.529722, 34.304598],
      [-87.634725, 34.306997],
      [-88.173632, 34.321054],
      [-88.16591, 34.380926],
      [-88.165634, 34.383102],
      [-88.155305, 34.463087]]]},
   'id': '01059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01061',
    'STATE': '01',
    'COUNTY': '061',
    'NAME': 'Geneva',
    'LSAD': 'County',
    'CENSUSAREA': 574.408},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.497992, 30.996931],
      [-85.498272, 30.996928],
      [-86.035039, 30.99332],
      [-86.052462, 30.993247],
      [-86.056213, 30.993133],
      [-86.162886, 30.993682],
      [-86.168979, 30.993706],
      [-86.175204, 30.993798],
      [-86.180232, 30.994005],
      [-86.187246, 30.993992],
      [-86.193476, 31.192213],
      [-85.791402, 31.196349],
      [-85.710866, 31.195179],
      [-85.48576, 31.199886],
      [-85.488298, 30.997041],
      [-85.497992, 30.996931]]]},
   'id': '01061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01063',
    'STATE': '01',
    'COUNTY': '063',
    'NAME': 'Greene',
    'LSAD': 'County',
    'CENSUSAREA': 647.11},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.026971, 33.063602],
      [-87.837521, 33.153637],
      [-87.838047, 33.136864],
      [-87.832233, 33.017258],
      [-87.715709, 33.006824],
      [-87.870464, 32.762442],
      [-87.828542, 32.768903],
      [-87.796043, 32.715632],
      [-87.813401, 32.633875],
      [-87.736786, 32.58919],
      [-87.812559, 32.52456],
      [-87.823383, 32.520443],
      [-87.822317, 32.543748],
      [-87.845144, 32.546687],
      [-87.85342, 32.532086],
      [-87.897913, 32.600046],
      [-87.840858, 32.605036],
      [-87.928689, 32.632284],
      [-88.057333, 32.593441],
      [-88.109633, 32.770989],
      [-88.079338, 32.772948],
      [-88.207316, 32.924782],
      [-88.171852, 32.99586],
      [-88.026971, 33.063602]]]},
   'id': '01063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01065',
    'STATE': '01',
    'COUNTY': '065',
    'NAME': 'Hale',
    'LSAD': 'County',
    'CENSUSAREA': 643.943},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.4212, 32.874508],
      [-87.472174, 32.83062],
      [-87.473915, 32.655867],
      [-87.525198, 32.655713],
      [-87.524485, 32.482028],
      [-87.728744, 32.480918],
      [-87.812559, 32.52456],
      [-87.736786, 32.58919],
      [-87.813401, 32.633875],
      [-87.796043, 32.715632],
      [-87.828542, 32.768903],
      [-87.870464, 32.762442],
      [-87.715709, 33.006824],
      [-87.421936, 33.003379],
      [-87.420132, 32.902605],
      [-87.4212, 32.874508]]]},
   'id': '01065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01067',
    'STATE': '01',
    'COUNTY': '067',
    'NAME': 'Henry',
    'LSAD': 'County',
    'CENSUSAREA': 561.75},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.046859, 31.517451],
      [-85.068065, 31.427586],
      [-85.087651, 31.308677],
      [-85.179131, 31.307675],
      [-85.417434, 31.314973],
      [-85.416437, 31.619466],
      [-85.416038, 31.706664],
      [-85.216076, 31.702409],
      [-85.124501, 31.763081],
      [-85.11893, 31.732664],
      [-85.12223, 31.722764],
      [-85.12653, 31.716764],
      [-85.12553, 31.694965],
      [-85.087029, 31.640966],
      [-85.065236, 31.624351],
      [-85.059534, 31.621717],
      [-85.057473, 31.618624],
      [-85.041305, 31.540987],
      [-85.046859, 31.517451]]]},
   'id': '01067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01069',
    'STATE': '01',
    'COUNTY': '069',
    'NAME': 'Houston',
    'LSAD': 'County',
    'CENSUSAREA': 579.824},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.002368, 31.000682],
      [-85.024108, 31.000681],
      [-85.027512, 31.00067],
      [-85.030107, 31.000653],
      [-85.031155, 31.000647],
      [-85.052088, 31.000585],
      [-85.054802, 31.000585],
      [-85.057534, 31.000585],
      [-85.145835, 31.000695],
      [-85.152085, 31.000888],
      [-85.152218, 31.000834],
      [-85.154452, 31.000835],
      [-85.488298, 30.997041],
      [-85.48576, 31.199886],
      [-85.710866, 31.195179],
      [-85.659985, 31.270889],
      [-85.485854, 31.246096],
      [-85.417434, 31.314973],
      [-85.179131, 31.307675],
      [-85.087651, 31.308677],
      [-85.101561, 31.283362],
      [-85.111871, 31.258388],
      [-85.107516, 31.186451],
      [-85.100207, 31.16549],
      [-85.092106, 31.160293],
      [-85.083582, 31.15963],
      [-85.076628, 31.156927],
      [-85.035615, 31.108192],
      [-85.029736, 31.096163],
      [-85.022121, 31.07548],
      [-84.999428, 31.013843],
      [-85.002368, 31.000682]]]},
   'id': '01069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01071',
    'STATE': '01',
    'COUNTY': '071',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 1077.868},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.863935, 34.988379],
      [-85.828724, 34.988165],
      [-85.824411, 34.988142],
      [-85.605165, 34.984678],
      [-85.595191, 34.924331],
      [-85.595163, 34.924171],
      [-85.583145, 34.860371],
      [-85.785471, 34.624584],
      [-86.00384, 34.480031],
      [-86.057712, 34.475994],
      [-86.139846, 34.533296],
      [-86.148464, 34.599069],
      [-86.16753, 34.599264],
      [-86.172856, 34.599318],
      [-86.174103, 34.599336],
      [-86.175324, 34.599354],
      [-86.178649, 34.599392],
      [-86.179053, 34.599396],
      [-86.182976, 34.599438],
      [-86.18299, 34.599438],
      [-86.199778, 34.59962],
      [-86.218086, 34.599817],
      [-86.218962, 34.599827],
      [-86.218975, 34.599827],
      [-86.221192, 34.599851],
      [-86.224237, 34.599884],
      [-86.233777, 34.599987],
      [-86.235077, 34.600001],
      [-86.237028, 34.600023],
      [-86.245611, 34.600116],
      [-86.24568, 34.600116],
      [-86.249983, 34.6001],
      [-86.252434, 34.600125],
      [-86.254082, 34.600143],
      [-86.257783, 34.600122],
      [-86.266148, 34.600075],
      [-86.269123, 34.600059],
      [-86.275775, 34.600023],
      [-86.27814, 34.600009],
      [-86.279503, 34.600004],
      [-86.284617, 34.599974],
      [-86.300533, 34.599888],
      [-86.305591, 34.59986],
      [-86.311677, 34.599827],
      [-86.316026, 34.599802],
      [-86.316036, 34.599802],
      [-86.317146, 34.599796],
      [-86.318251, 34.59979],
      [-86.318265, 34.59979],
      [-86.326958, 34.599744],
      [-86.326906, 34.599573],
      [-86.326853, 34.599403],
      [-86.359034, 34.63261],
      [-86.311274, 34.991098],
      [-85.863935, 34.988379]]]},
   'id': '01071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01073',
    'STATE': '01',
    'COUNTY': '073',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 1111.276},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.023586, 33.246422],
      [-87.026846, 33.246459],
      [-87.065738, 33.246907],
      [-87.065754, 33.275937],
      [-87.074634, 33.276018],
      [-87.074602, 33.279682],
      [-87.087546, 33.279666],
      [-87.087497, 33.290675],
      [-87.126756, 33.290844],
      [-87.127142, 33.306013],
      [-87.162007, 33.306587],
      [-87.162175, 33.321012],
      [-87.179638, 33.321112],
      [-87.179754, 33.32801],
      [-87.180006, 33.342979],
      [-87.194841, 33.343069],
      [-87.330816, 33.491501],
      [-87.266923, 33.512929],
      [-87.185794, 33.555882],
      [-87.17943, 33.613794],
      [-87.057757, 33.656363],
      [-87.005965, 33.787237],
      [-86.953664, 33.815297],
      [-86.759144, 33.840617],
      [-86.577799, 33.765316],
      [-86.542758, 33.765173],
      [-86.516783, 33.545896],
      [-86.60451, 33.467053],
      [-86.674418, 33.466521],
      [-86.830597, 33.332015],
      [-87.023586, 33.246422]]]},
   'id': '01073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01075',
    'STATE': '01',
    'COUNTY': '075',
    'NAME': 'Lamar',
    'LSAD': 'County',
    'CENSUSAREA': 604.846},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.24839, 33.744908],
      [-88.226517, 33.911551],
      [-88.226517, 33.911665],
      [-88.226428, 33.912875],
      [-88.207229, 34.058333],
      [-87.98693, 34.052102],
      [-87.951785, 33.91993],
      [-87.946519, 33.524065],
      [-88.274619, 33.534008],
      [-88.27005, 33.570819],
      [-88.269532, 33.572894],
      [-88.269076, 33.576929],
      [-88.26816, 33.58504],
      [-88.267148, 33.591989],
      [-88.267005, 33.594229],
      [-88.256343, 33.682053],
      [-88.256131, 33.68286],
      [-88.254622, 33.69578],
      [-88.254445, 33.698779],
      [-88.24839, 33.744908]]]},
   'id': '01075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01077',
    'STATE': '01',
    'COUNTY': '077',
    'NAME': 'Lauderdale',
    'LSAD': 'County',
    'CENSUSAREA': 667.697},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.18245, 35.007712],
      [-87.984916, 35.006256],
      [-87.877969, 35.005468],
      [-87.877742, 35.005512],
      [-87.872626, 35.005571],
      [-87.853528, 35.005541],
      [-87.853411, 35.005576],
      [-87.851886, 35.005656],
      [-87.773586, 35.004946],
      [-87.767602, 35.004783],
      [-87.75889, 35.004711],
      [-87.709491, 35.004089],
      [-87.702321, 35.003945],
      [-87.700543, 35.003988],
      [-87.696834, 35.003852],
      [-87.671405, 35.003537],
      [-87.664123, 35.003523],
      [-87.606031, 35.003343],
      [-87.428613, 35.002795],
      [-87.421543, 35.002679],
      [-87.4174, 35.002669],
      [-87.391314, 35.002374],
      [-87.381071, 35.002118],
      [-87.359281, 35.001823],
      [-87.349251, 35.001662],
      [-87.299185, 35.000915],
      [-87.270014, 35.00039],
      [-87.230544, 34.999484],
      [-87.224053, 34.999327],
      [-87.216683, 34.999148],
      [-87.210759, 34.999024],
      [-87.214914, 34.816011],
      [-87.260676, 34.758626],
      [-87.42651, 34.800022],
      [-87.524363, 34.832384],
      [-87.835833, 34.741239],
      [-87.973222, 34.88255],
      [-88.097888, 34.892202],
      [-88.125038, 34.902227],
      [-88.200064, 34.995634],
      [-88.18245, 35.007712]]]},
   'id': '01077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01079',
    'STATE': '01',
    'COUNTY': '079',
    'NAME': 'Lawrence',
    'LSAD': 'County',
    'CENSUSAREA': 690.678},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.105073, 34.686037],
      [-87.105913, 34.587643],
      [-87.110111, 34.313799],
      [-87.109911, 34.299299],
      [-87.529722, 34.304598],
      [-87.529667, 34.567081],
      [-87.416484, 34.767544],
      [-87.42651, 34.800022],
      [-87.260676, 34.758626],
      [-87.105073, 34.686037]]]},
   'id': '01079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01081',
    'STATE': '01',
    'COUNTY': '081',
    'NAME': 'Lee',
    'LSAD': 'County',
    'CENSUSAREA': 607.536},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.080288, 32.603577],
      [-85.079935, 32.602889],
      [-85.069583, 32.58393],
      [-85.044606, 32.559499],
      [-85.022509, 32.542923],
      [-85.0071, 32.523868],
      [-85.001324, 32.512973],
      [-85.001052, 32.510477],
      [-85.00103, 32.510157],
      [-85.059294, 32.472909],
      [-85.333843, 32.468639],
      [-85.330143, 32.410842],
      [-85.434045, 32.40984],
      [-85.438575, 32.49709],
      [-85.489348, 32.496937],
      [-85.695854, 32.595933],
      [-85.696755, 32.697429],
      [-85.593151, 32.72853],
      [-85.285043, 32.730731],
      [-85.136776, 32.746512],
      [-85.137136, 32.745168],
      [-85.114737, 32.685634],
      [-85.10479, 32.642542],
      [-85.082454, 32.607022],
      [-85.080288, 32.603577]]]},
   'id': '01081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01083',
    'STATE': '01',
    'COUNTY': '083',
    'NAME': 'Limestone',
    'LSAD': 'County',
    'CENSUSAREA': 559.936},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.836306, 34.991764],
      [-86.820657, 34.991764],
      [-86.783648, 34.991925],
      [-86.783628, 34.991925],
      [-86.790056, 34.55079],
      [-86.942899, 34.598053],
      [-87.105073, 34.686037],
      [-87.260676, 34.758626],
      [-87.214914, 34.816011],
      [-87.210759, 34.999024],
      [-87.011174, 34.995162],
      [-87.000007, 34.995121],
      [-86.974412, 34.994513],
      [-86.972613, 34.99461],
      [-86.970236, 34.994546],
      [-86.96712, 34.9944],
      [-86.862147, 34.991956],
      [-86.849794, 34.991924],
      [-86.846466, 34.99186],
      [-86.83637, 34.991764],
      [-86.836306, 34.991764]]]},
   'id': '01083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01085',
    'STATE': '01',
    'COUNTY': '085',
    'NAME': 'Lowndes',
    'LSAD': 'County',
    'CENSUSAREA': 715.911},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.857583, 31.962167],
      [-86.856576, 32.048352],
      [-86.906956, 32.04797],
      [-86.908302, 32.225028],
      [-86.810313, 32.224747],
      [-86.864367, 32.274918],
      [-86.814912, 32.340803],
      [-86.717897, 32.402814],
      [-86.496774, 32.344437],
      [-86.408816, 32.240851],
      [-86.406276, 32.050731],
      [-86.448198, 31.964629],
      [-86.857583, 31.962167]]]},
   'id': '01085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01087',
    'STATE': '01',
    'COUNTY': '087',
    'NAME': 'Macon',
    'LSAD': 'County',
    'CENSUSAREA': 608.885},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.886148, 32.493053],
      [-85.797156, 32.494236],
      [-85.798585, 32.581089],
      [-85.695854, 32.595933],
      [-85.489348, 32.496937],
      [-85.438575, 32.49709],
      [-85.434045, 32.40984],
      [-85.433543, 32.234648],
      [-85.856218, 32.231975],
      [-85.919293, 32.274382],
      [-86.023012, 32.419978],
      [-85.89442, 32.447578],
      [-85.886148, 32.493053]]]},
   'id': '01087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01089',
    'STATE': '01',
    'COUNTY': '089',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 801.593},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.783628, 34.991925],
      [-86.677616, 34.99207],
      [-86.676726, 34.99207],
      [-86.67436, 34.992001],
      [-86.670853, 34.992],
      [-86.65961, 34.991792],
      [-86.641212, 34.99174],
      [-86.600039, 34.99124],
      [-86.588962, 34.991197],
      [-86.571217, 34.991011],
      [-86.555864, 34.990971],
      [-86.528485, 34.990677],
      [-86.467798, 34.990692],
      [-86.433927, 34.991085],
      [-86.397203, 34.99166],
      [-86.318761, 34.991147],
      [-86.311274, 34.991098],
      [-86.359034, 34.63261],
      [-86.326853, 34.599403],
      [-86.338181, 34.510103],
      [-86.423914, 34.479581],
      [-86.533445, 34.502795],
      [-86.550166, 34.545963],
      [-86.689353, 34.586425],
      [-86.790056, 34.55079],
      [-86.783628, 34.991925]]]},
   'id': '01089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01091',
    'STATE': '01',
    'COUNTY': '091',
    'NAME': 'Marengo',
    'LSAD': 'County',
    'CENSUSAREA': 976.882},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.667769, 31.991355],
      [-87.944233, 31.989872],
      [-88.07349, 31.990182],
      [-88.070615, 32.0617],
      [-88.007077, 32.185313],
      [-88.019145, 32.28524],
      [-87.930661, 32.310574],
      [-88.046335, 32.377087],
      [-88.031623, 32.43361],
      [-87.85342, 32.532086],
      [-87.845144, 32.546687],
      [-87.822317, 32.543748],
      [-87.823383, 32.520443],
      [-87.812559, 32.52456],
      [-87.728744, 32.480918],
      [-87.524485, 32.482028],
      [-87.52429, 32.307293],
      [-87.47308, 32.307614],
      [-87.472206, 32.264919],
      [-87.523405, 32.25483],
      [-87.521946, 32.132816],
      [-87.624005, 32.132345],
      [-87.622756, 32.005482],
      [-87.667769, 31.991355]]]},
   'id': '01091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01093',
    'STATE': '01',
    'COUNTY': '093',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 742.292},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.203597, 34.08653],
      [-88.176889, 34.293858],
      [-88.175867, 34.302171],
      [-88.173632, 34.321054],
      [-87.634725, 34.306997],
      [-87.636118, 34.002203],
      [-87.635932, 33.915251],
      [-87.951785, 33.91993],
      [-87.98693, 34.052102],
      [-88.207229, 34.058333],
      [-88.203597, 34.08653]]]},
   'id': '01093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01095',
    'STATE': '01',
    'COUNTY': '095',
    'NAME': 'Marshall',
    'LSAD': 'County',
    'CENSUSAREA': 565.842},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.550166, 34.545963],
      [-86.533445, 34.502795],
      [-86.423914, 34.479581],
      [-86.338181, 34.510103],
      [-86.326853, 34.599403],
      [-86.326906, 34.599573],
      [-86.326958, 34.599744],
      [-86.318265, 34.59979],
      [-86.318251, 34.59979],
      [-86.317146, 34.599796],
      [-86.316036, 34.599802],
      [-86.316026, 34.599802],
      [-86.311677, 34.599827],
      [-86.305591, 34.59986],
      [-86.300533, 34.599888],
      [-86.284617, 34.599974],
      [-86.279503, 34.600004],
      [-86.27814, 34.600009],
      [-86.275775, 34.600023],
      [-86.269123, 34.600059],
      [-86.266148, 34.600075],
      [-86.257783, 34.600122],
      [-86.254082, 34.600143],
      [-86.252434, 34.600125],
      [-86.249983, 34.6001],
      [-86.24568, 34.600116],
      [-86.245611, 34.600116],
      [-86.237028, 34.600023],
      [-86.235077, 34.600001],
      [-86.233777, 34.599987],
      [-86.224237, 34.599884],
      [-86.221192, 34.599851],
      [-86.218975, 34.599827],
      [-86.218962, 34.599827],
      [-86.218086, 34.599817],
      [-86.199778, 34.59962],
      [-86.18299, 34.599438],
      [-86.182976, 34.599438],
      [-86.179053, 34.599396],
      [-86.178649, 34.599392],
      [-86.175324, 34.599354],
      [-86.174103, 34.599336],
      [-86.172856, 34.599318],
      [-86.16753, 34.599264],
      [-86.148464, 34.599069],
      [-86.139846, 34.533296],
      [-86.057712, 34.475994],
      [-86.110362, 34.427797],
      [-86.106086, 34.200756],
      [-86.206107, 34.17265],
      [-86.303516, 34.099073],
      [-86.45302, 34.259317],
      [-86.581936, 34.304694],
      [-86.550166, 34.545963]]]},
   'id': '01095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01097',
    'STATE': '01',
    'COUNTY': '097',
    'NAME': 'Mobile',
    'LSAD': 'County',
    'CENSUSAREA': 1229.435},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-88.124658, 30.28364],
       [-88.086812, 30.259864],
       [-88.074854, 30.249119],
       [-88.075856, 30.246139],
       [-88.078786, 30.245039],
       [-88.109432, 30.242097],
       [-88.120151, 30.246149],
       [-88.137083, 30.249179],
       [-88.166569, 30.249255],
       [-88.20854, 30.244807],
       [-88.280571, 30.230274],
       [-88.304773, 30.228031],
       [-88.313323, 30.230024],
       [-88.310025, 30.233233],
       [-88.299705, 30.231812],
       [-88.280781, 30.233781],
       [-88.25837, 30.239595],
       [-88.224615, 30.245559],
       [-88.17335, 30.252418],
       [-88.158303, 30.252393],
       [-88.141143, 30.255024],
       [-88.130631, 30.262125],
       [-88.124722, 30.273541],
       [-88.124658, 30.28364]]],
     [[[-88.008396, 30.684956],
       [-88.012444, 30.68319],
       [-88.022076, 30.673873],
       [-88.026706, 30.66149],
       [-88.034588, 30.653715],
       [-88.044339, 30.652568],
       [-88.061998, 30.644891],
       [-88.059598, 30.619091],
       [-88.053998, 30.612491],
       [-88.064898, 30.588292],
       [-88.074898, 30.578892],
       [-88.085493, 30.563258],
       [-88.081617, 30.546317],
       [-88.082792, 30.528713],
       [-88.090734, 30.52357],
       [-88.100874, 30.50975],
       [-88.103768, 30.500903],
       [-88.102988, 30.493029],
       [-88.096867, 30.471053],
       [-88.100646, 30.46122],
       [-88.106437, 30.452738],
       [-88.10407, 30.4273],
       [-88.107274, 30.377246],
       [-88.115432, 30.35657],
       [-88.124611, 30.341623],
       [-88.128052, 30.338509],
       [-88.136173, 30.320729],
       [-88.155775, 30.327184],
       [-88.171967, 30.324679],
       [-88.191542, 30.317002],
       [-88.195664, 30.321242],
       [-88.198361, 30.338819],
       [-88.196353, 30.343586],
       [-88.188532, 30.345053],
       [-88.188527, 30.348124],
       [-88.200065, 30.362378],
       [-88.204495, 30.362102],
       [-88.260695, 30.382381],
       [-88.282635, 30.382876],
       [-88.290649, 30.370741],
       [-88.311608, 30.368908],
       [-88.316525, 30.369985],
       [-88.319599, 30.380334],
       [-88.332277, 30.38844],
       [-88.341345, 30.38947],
       [-88.364022, 30.388006],
       [-88.374671, 30.385608],
       [-88.395023, 30.369425],
       [-88.402283, 30.510852],
       [-88.403547, 30.5331],
       [-88.403931, 30.543359],
       [-88.404013, 30.54506],
       [-88.407484, 30.622736],
       [-88.407462, 30.631653],
       [-88.40807, 30.63697],
       [-88.409571, 30.668731],
       [-88.411339, 30.706334],
       [-88.41155, 30.712956],
       [-88.412209, 30.730395],
       [-88.41227, 30.731771],
       [-88.412462, 30.735598],
       [-88.425635, 30.998301],
       [-88.425729, 31.000183],
       [-88.425807, 31.001123],
       [-88.432007, 31.114298],
       [-88.329782, 31.143821],
       [-88.022649, 31.144267],
       [-87.972869, 31.162694],
       [-87.941152, 31.048161],
       [-87.981261, 30.886895],
       [-87.944546, 30.827046],
       [-88.026319, 30.753358],
       [-88.008396, 30.684956]]]]},
   'id': '01097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01099',
    'STATE': '01',
    'COUNTY': '099',
    'NAME': 'Monroe',
    'LSAD': 'County',
    'CENSUSAREA': 1025.675},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.905899, 31.753035],
      [-87.052284, 31.716761],
      [-87.135051, 31.642417],
      [-87.166581, 31.519561],
      [-87.427455, 31.260386],
      [-87.61589, 31.244458],
      [-87.765152, 31.297346],
      [-87.784796, 31.324672],
      [-87.665572, 31.423166],
      [-87.603137, 31.409556],
      [-87.565413, 31.553573],
      [-87.566841, 31.697115],
      [-87.516131, 31.697824],
      [-87.50093, 31.829251],
      [-86.906899, 31.830628],
      [-86.905899, 31.753035]]]},
   'id': '01099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01101',
    'STATE': '01',
    'COUNTY': '101',
    'NAME': 'Montgomery',
    'LSAD': 'County',
    'CENSUSAREA': 784.247},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.411172, 32.409937],
      [-86.237068, 32.49498],
      [-86.192284, 32.43613],
      [-86.023012, 32.419978],
      [-85.919293, 32.274382],
      [-85.999157, 32.250543],
      [-85.996853, 32.051049],
      [-85.995563, 31.967554],
      [-86.191379, 31.966453],
      [-86.302217, 31.965065],
      [-86.303616, 32.051664],
      [-86.406276, 32.050731],
      [-86.408816, 32.240851],
      [-86.496774, 32.344437],
      [-86.411172, 32.409937]]]},
   'id': '01101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01103',
    'STATE': '01',
    'COUNTY': '103',
    'NAME': 'Morgan',
    'LSAD': 'County',
    'CENSUSAREA': 579.337},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.110111, 34.313799],
      [-87.105913, 34.587643],
      [-87.105073, 34.686037],
      [-86.942899, 34.598053],
      [-86.790056, 34.55079],
      [-86.689353, 34.586425],
      [-86.550166, 34.545963],
      [-86.581936, 34.304694],
      [-87.092311, 34.312297],
      [-87.110111, 34.313799]]]},
   'id': '01103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01105',
    'STATE': '01',
    'COUNTY': '105',
    'NAME': 'Perry',
    'LSAD': 'County',
    'CENSUSAREA': 719.664},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.524485, 32.482028],
      [-87.525198, 32.655713],
      [-87.473915, 32.655867],
      [-87.472174, 32.83062],
      [-87.4212, 32.874508],
      [-87.319473, 32.875124],
      [-87.319184, 32.831522],
      [-87.019157, 32.837034],
      [-87.017762, 32.729532],
      [-87.116515, 32.487659],
      [-87.423153, 32.482965],
      [-87.421744, 32.308101],
      [-87.47308, 32.307614],
      [-87.52429, 32.307293],
      [-87.524485, 32.482028]]]},
   'id': '01105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01107',
    'STATE': '01',
    'COUNTY': '107',
    'NAME': 'Pickens',
    'LSAD': 'County',
    'CENSUSAREA': 881.408},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.291127, 33.399061],
      [-88.277421, 33.512436],
      [-88.276805, 33.516463],
      [-88.274619, 33.534008],
      [-87.946519, 33.524065],
      [-87.85856, 33.525326],
      [-87.840683, 33.524839],
      [-87.837521, 33.153637],
      [-88.026971, 33.063602],
      [-88.171852, 32.99586],
      [-88.340432, 32.991199],
      [-88.304514, 33.28832],
      [-88.291127, 33.399061]]]},
   'id': '01107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01109',
    'STATE': '01',
    'COUNTY': '109',
    'NAME': 'Pike',
    'LSAD': 'County',
    'CENSUSAREA': 672.094},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.748251, 31.618048],
      [-85.749941, 31.617914],
      [-85.789142, 31.617964],
      [-86.145895, 31.617741],
      [-86.148339, 31.790951],
      [-86.199378, 31.79045],
      [-86.191379, 31.966453],
      [-85.995563, 31.967554],
      [-85.996853, 32.051049],
      [-85.893652, 32.047351],
      [-85.88435, 31.967253],
      [-85.790048, 31.967254],
      [-85.791047, 31.880357],
      [-85.657668, 31.880275],
      [-85.66623, 31.772877],
      [-85.748251, 31.618048]]]},
   'id': '01109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01111',
    'STATE': '01',
    'COUNTY': '111',
    'NAME': 'Randolph',
    'LSAD': 'County',
    'CENSUSAREA': 580.55},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.643482, 33.495885],
      [-85.304439, 33.482884],
      [-85.293902, 33.428079],
      [-85.236509, 33.129562],
      [-85.232378, 33.108077],
      [-85.593177, 33.10734],
      [-85.653654, 33.106634],
      [-85.643482, 33.495885]]]},
   'id': '01111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01113',
    'STATE': '01',
    'COUNTY': '113',
    'NAME': 'Russell',
    'LSAD': 'County',
    'CENSUSAREA': 641.14},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.987278, 32.381623],
      [-84.987386, 32.381201],
      [-85.008096, 32.336677],
      [-85.007103, 32.328362],
      [-85.001874, 32.322015],
      [-84.93868, 32.300708],
      [-84.916611, 32.281177],
      [-84.909052, 32.26354],
      [-84.92165, 32.233306],
      [-84.923638, 32.231539],
      [-84.964828, 32.194952],
      [-84.995929, 32.184852],
      [-85.047865, 32.142033],
      [-85.056029, 32.063055],
      [-85.185067, 32.061708],
      [-85.257747, 32.148251],
      [-85.410241, 32.146651],
      [-85.427442, 32.146551],
      [-85.433543, 32.234648],
      [-85.434045, 32.40984],
      [-85.330143, 32.410842],
      [-85.333843, 32.468639],
      [-85.059294, 32.472909],
      [-85.00103, 32.510157],
      [-85.000779, 32.506548],
      [-84.998231, 32.469842],
      [-84.983831, 32.445643],
      [-84.979431, 32.412244],
      [-84.987278, 32.381623]]]},
   'id': '01113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01115',
    'STATE': '01',
    'COUNTY': '115',
    'NAME': 'St. Clair',
    'LSAD': 'County',
    'CENSUSAREA': 631.902},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.065272, 33.842198],
      [-86.066439, 33.841094],
      [-86.066972, 33.839198],
      [-86.043993, 33.763595],
      [-86.145562, 33.679098],
      [-86.235328, 33.494532],
      [-86.281999, 33.509895],
      [-86.378665, 33.390983],
      [-86.378222, 33.502411],
      [-86.481939, 33.502544],
      [-86.516783, 33.545896],
      [-86.542758, 33.765173],
      [-86.577799, 33.765316],
      [-86.577528, 33.801977],
      [-86.377532, 33.861706],
      [-86.325622, 33.940147],
      [-86.199164, 33.988918],
      [-86.065272, 33.842198]]]},
   'id': '01115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01117',
    'STATE': '01',
    'COUNTY': '117',
    'NAME': 'Shelby',
    'LSAD': 'County',
    'CENSUSAREA': 784.93},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.023586, 33.246422],
      [-86.830597, 33.332015],
      [-86.674418, 33.466521],
      [-86.60451, 33.467053],
      [-86.516783, 33.545896],
      [-86.481939, 33.502544],
      [-86.378222, 33.502411],
      [-86.378665, 33.390983],
      [-86.35734, 33.296917],
      [-86.503127, 33.179144],
      [-86.491029, 33.102944],
      [-86.517344, 33.020566],
      [-86.610003, 33.070003],
      [-86.881638, 33.071861],
      [-86.881182, 33.049901],
      [-87.025596, 33.165795],
      [-87.026846, 33.246459],
      [-87.023586, 33.246422]]]},
   'id': '01117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01119',
    'STATE': '01',
    'COUNTY': '119',
    'NAME': 'Sumter',
    'LSAD': 'County',
    'CENSUSAREA': 903.887},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.403789, 32.44977],
      [-88.403789, 32.449885],
      [-88.388739, 32.578116],
      [-88.383039, 32.626679],
      [-88.382985, 32.626954],
      [-88.347692, 32.929059],
      [-88.340432, 32.991199],
      [-88.171852, 32.99586],
      [-88.207316, 32.924782],
      [-88.079338, 32.772948],
      [-88.109633, 32.770989],
      [-88.057333, 32.593441],
      [-87.928689, 32.632284],
      [-87.840858, 32.605036],
      [-87.897913, 32.600046],
      [-87.85342, 32.532086],
      [-88.031623, 32.43361],
      [-88.046335, 32.377087],
      [-87.930661, 32.310574],
      [-88.421453, 32.30868],
      [-88.403789, 32.44977]]]},
   'id': '01119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01121',
    'STATE': '01',
    'COUNTY': '121',
    'NAME': 'Talladega',
    'LSAD': 'County',
    'CENSUSAREA': 736.775},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.17437, 33.104394],
      [-86.226271, 33.104115],
      [-86.491029, 33.102944],
      [-86.503127, 33.179144],
      [-86.35734, 33.296917],
      [-86.378665, 33.390983],
      [-86.281999, 33.509895],
      [-86.235328, 33.494532],
      [-86.145562, 33.679098],
      [-86.050669, 33.67459],
      [-85.994935, 33.586475],
      [-85.794559, 33.585565],
      [-85.796054, 33.55622],
      [-85.796852, 33.541849],
      [-85.85189, 33.498742],
      [-85.904909, 33.498655],
      [-85.923762, 33.396206],
      [-85.976525, 33.38187],
      [-85.980293, 33.29419],
      [-86.118198, 33.29632],
      [-86.120567, 33.194511],
      [-86.17283, 33.195681],
      [-86.17437, 33.104394]]]},
   'id': '01121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01123',
    'STATE': '01',
    'COUNTY': '123',
    'NAME': 'Tallapoosa',
    'LSAD': 'County',
    'CENSUSAREA': 716.521},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.886148, 32.493053],
      [-85.87986, 32.754528],
      [-86.007187, 32.754984],
      [-86.00917, 33.09026],
      [-85.974715, 33.105286],
      [-85.653654, 33.106634],
      [-85.593177, 33.10734],
      [-85.593151, 32.72853],
      [-85.696755, 32.697429],
      [-85.695854, 32.595933],
      [-85.798585, 32.581089],
      [-85.797156, 32.494236],
      [-85.886148, 32.493053]]]},
   'id': '01123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01125',
    'STATE': '01',
    'COUNTY': '125',
    'NAME': 'Tuscaloosa',
    'LSAD': 'County',
    'CENSUSAREA': 1321.755},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.266923, 33.512929],
      [-87.330816, 33.491501],
      [-87.194841, 33.343069],
      [-87.180006, 33.342979],
      [-87.179754, 33.32801],
      [-87.179638, 33.321112],
      [-87.162175, 33.321012],
      [-87.162007, 33.306587],
      [-87.127142, 33.306013],
      [-87.126756, 33.290844],
      [-87.087497, 33.290675],
      [-87.087546, 33.279666],
      [-87.074602, 33.279682],
      [-87.074634, 33.276018],
      [-87.065754, 33.275937],
      [-87.065738, 33.246907],
      [-87.199153, 33.196554],
      [-87.199317, 33.130657],
      [-87.281945, 33.13306],
      [-87.318539, 33.006179],
      [-87.421936, 33.003379],
      [-87.715709, 33.006824],
      [-87.832233, 33.017258],
      [-87.838047, 33.136864],
      [-87.837521, 33.153637],
      [-87.840683, 33.524839],
      [-87.666661, 33.521667],
      [-87.631718, 33.609833],
      [-87.423701, 33.602096],
      [-87.318532, 33.587393],
      [-87.266923, 33.512929]]]},
   'id': '01125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01127',
    'STATE': '01',
    'COUNTY': '127',
    'NAME': 'Walker',
    'LSAD': 'County',
    'CENSUSAREA': 791.192},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.423701, 33.602096],
      [-87.423843, 33.689112],
      [-87.528338, 33.692049],
      [-87.531602, 33.867618],
      [-87.63604, 33.871999],
      [-87.635932, 33.915251],
      [-87.636118, 34.002203],
      [-87.151036, 33.993225],
      [-87.091836, 33.890093],
      [-86.963358, 33.858221],
      [-86.96296, 33.844865],
      [-86.954305, 33.844862],
      [-86.953664, 33.815297],
      [-87.005965, 33.787237],
      [-87.057757, 33.656363],
      [-87.17943, 33.613794],
      [-87.185794, 33.555882],
      [-87.266923, 33.512929],
      [-87.318532, 33.587393],
      [-87.423701, 33.602096]]]},
   'id': '01127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01129',
    'STATE': '01',
    'COUNTY': '129',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 1080.207},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.432007, 31.114298],
      [-88.438104, 31.23006],
      [-88.438211, 31.231252],
      [-88.445182, 31.355855],
      [-88.445209, 31.355969],
      [-88.448686, 31.420888],
      [-88.44866, 31.421277],
      [-88.449446, 31.435837],
      [-88.459478, 31.621652],
      [-88.459722, 31.624002],
      [-88.464425, 31.697881],
      [-88.464428, 31.697952],
      [-88.088288, 31.699303],
      [-88.086946, 31.686181],
      [-88.080629, 31.67785],
      [-88.078711, 31.669618],
      [-88.072234, 31.5945],
      [-87.906143, 31.491752],
      [-87.908068, 31.323041],
      [-87.959619, 31.316206],
      [-87.946588, 31.19293],
      [-87.943748, 31.161341],
      [-87.972869, 31.162694],
      [-88.022649, 31.144267],
      [-88.329782, 31.143821],
      [-88.432007, 31.114298]]]},
   'id': '01129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01131',
    'STATE': '01',
    'COUNTY': '131',
    'NAME': 'Wilcox',
    'LSAD': 'County',
    'CENSUSAREA': 888.498},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.50093, 31.829251],
      [-87.620112, 31.827123],
      [-87.667488, 31.958459],
      [-87.667769, 31.991355],
      [-87.622756, 32.005482],
      [-87.624005, 32.132345],
      [-87.521946, 32.132816],
      [-87.523405, 32.25483],
      [-87.472206, 32.264919],
      [-87.262853, 32.147007],
      [-87.178071, 32.047514],
      [-86.906956, 32.04797],
      [-86.856576, 32.048352],
      [-86.857583, 31.962167],
      [-86.908939, 31.961673],
      [-86.906899, 31.830628],
      [-87.50093, 31.829251]]]},
   'id': '01131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US01133',
    'STATE': '01',
    'COUNTY': '133',
    'NAME': 'Winston',
    'LSAD': 'County',
    'CENSUSAREA': 612.979},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.634725, 34.306997],
      [-87.529722, 34.304598],
      [-87.109911, 34.299299],
      [-87.111992, 33.992385],
      [-87.151036, 33.993225],
      [-87.636118, 34.002203],
      [-87.634725, 34.306997]]]},
   'id': '01133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02013',
    'STATE': '02',
    'COUNTY': '013',
    'NAME': 'Aleutians East',
    'LSAD': 'Borough',
    'CENSUSAREA': 6981.943},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-162.255031, 54.978353],
       [-162.249682, 54.9759],
       [-162.235675, 54.962601],
       [-162.232962, 54.890984],
       [-162.236806, 54.88163],
       [-162.275316, 54.845565],
       [-162.282944, 54.841216],
       [-162.30058, 54.832594],
       [-162.321094, 54.827928],
       [-162.349315, 54.836049],
       [-162.41737, 54.877491],
       [-162.425244, 54.885021],
       [-162.437501, 54.927627],
       [-162.435473, 54.929249],
       [-162.337431, 54.981636],
       [-162.326811, 54.98533],
       [-162.266743, 54.982133],
       [-162.255031, 54.978353]]],
     [[[-159.324364, 54.928329],
       [-159.317681, 54.933707],
       [-159.278696, 54.948514],
       [-159.20567, 54.927438],
       [-159.202857, 54.9255],
       [-159.203228, 54.914842],
       [-159.212627, 54.896066],
       [-159.236066, 54.87648],
       [-159.272354, 54.864204],
       [-159.305864, 54.863698],
       [-159.309681, 54.865813],
       [-159.327873, 54.884749],
       [-159.320732, 54.897269],
       [-159.313528, 54.903388],
       [-159.31206, 54.909601],
       [-159.312733, 54.918686],
       [-159.324364, 54.928329]]],
     [[[-160.0179, 55.15613],
       [-160.047358, 55.180879],
       [-160.061469, 55.200378],
       [-160.052941, 55.203035],
       [-160.025257, 55.203914],
       [-160.002155, 55.19448],
       [-159.994027, 55.185247],
       [-159.983499, 55.180379],
       [-159.95435, 55.189291],
       [-159.93124, 55.22006],
       [-159.889174, 55.287138],
       [-159.87969, 55.290183],
       [-159.870591, 55.284889],
       [-159.848619, 55.267548],
       [-159.843859, 55.249367],
       [-159.844622, 55.243828],
       [-159.855302, 55.230378],
       [-159.860991, 55.227884],
       [-159.866624, 55.231202],
       [-159.886523, 55.229149],
       [-159.895326, 55.217872],
       [-159.905365, 55.164689],
       [-159.901569, 55.156858],
       [-159.884997, 55.145598],
       [-159.860891, 55.149337],
       [-159.859568, 55.164912],
       [-159.861308, 55.171748],
       [-159.860786, 55.177086],
       [-159.846264, 55.180834],
       [-159.816419, 55.178051],
       [-159.82371, 55.14413],
       [-159.83089, 55.126467],
       [-159.855444, 55.100758],
       [-159.86858, 55.094888],
       [-159.886109, 55.102558],
       [-159.886476, 55.107087],
       [-159.906609, 55.112544],
       [-159.947575, 55.105215],
       [-159.951281, 55.100644],
       [-159.94541, 55.087939],
       [-159.951127, 55.066642],
       [-160.052093, 55.005777],
       [-160.080659, 54.994425],
       [-160.115775, 54.985078],
       [-160.183466, 54.91568],
       [-160.181636, 54.902992],
       [-160.200831, 54.875282],
       [-160.226967, 54.864075],
       [-160.254765, 54.895974],
       [-160.250814, 54.929816],
       [-160.244253, 54.933532],
       [-160.223411, 54.939124],
       [-160.177607, 54.981446],
       [-160.132168, 55.013743],
       [-160.106837, 55.027002],
       [-160.082168, 55.033578],
       [-160.077872, 55.0376],
       [-160.087574, 55.049967],
       [-160.094288, 55.052996],
       [-160.133416, 55.043947],
       [-160.174366, 55.052577],
       [-160.191392, 55.108574],
       [-160.187261, 55.118376],
       [-160.109864, 55.160777],
       [-160.077308, 55.146495],
       [-160.059599, 55.133663],
       [-160.052545, 55.121716],
       [-160.05282, 55.119373],
       [-160.057033, 55.118488],
       [-160.057797, 55.115353],
       [-160.055642, 55.11158],
       [-160.03033, 55.116109],
       [-160.01222, 55.122946],
       [-160.00517, 55.129378],
       [-160.004129, 55.134482],
       [-160.0179, 55.15613]]],
     [[[-159.455311, 55.061452],
       [-159.448473, 55.064343],
       [-159.381841, 55.064032],
       [-159.345276, 55.059397],
       [-159.33847, 55.046683],
       [-159.328791, 54.980598],
       [-159.330164, 54.976378],
       [-159.33177, 54.974598],
       [-159.426615, 54.942266],
       [-159.447982, 54.941374],
       [-159.457995, 54.94573],
       [-159.459551, 54.948652],
       [-159.451251, 54.975285],
       [-159.440057, 54.988502],
       [-159.416786, 55.000296],
       [-159.417987, 55.022013],
       [-159.455434, 55.035809],
       [-159.455311, 55.061452]]],
     [[[-159.533457, 55.184761],
       [-159.504325, 55.176822],
       [-159.499502, 55.173991],
       [-159.493398, 55.155055],
       [-159.494772, 55.13605],
       [-159.503592, 55.131373],
       [-159.509361, 55.130206],
       [-159.530302, 55.106194],
       [-159.53363, 55.083987],
       [-159.524444, 55.077358],
       [-159.4842, 55.057695],
       [-159.48498, 55.05405],
       [-159.489589, 55.049229],
       [-159.509674, 55.041408],
       [-159.517824, 55.044735],
       [-159.535465, 55.058735],
       [-159.572365, 55.060122],
       [-159.597824, 55.047],
       [-159.635226, 55.037294],
       [-159.638905, 55.038745],
       [-159.644029, 55.042597],
       [-159.649062, 55.049532],
       [-159.650859, 55.06579],
       [-159.63541, 55.116654],
       [-159.616961, 55.127666],
       [-159.586075, 55.157652],
       [-159.573144, 55.187562],
       [-159.521096, 55.253393],
       [-159.519196, 55.253693],
       [-159.503196, 55.234993],
       [-159.50527, 55.222269],
       [-159.51235, 55.208353],
       [-159.533457, 55.184761]]],
     [[[-161.718614, 55.154166],
       [-161.697097, 55.137133],
       [-161.678389, 55.131747],
       [-161.663618, 55.13026],
       [-161.651563, 55.130916],
       [-161.608634, 55.116906],
       [-161.576643, 55.103831],
       [-161.570523, 55.100493],
       [-161.549901, 55.082564],
       [-161.548924, 55.080115],
       [-161.550357, 55.065734],
       [-161.557315, 55.061193],
       [-161.565036, 55.058874],
       [-161.582584, 55.058224],
       [-161.591069, 55.060818],
       [-161.606359, 55.070264],
       [-161.606482, 55.074208],
       [-161.598303, 55.081341],
       [-161.596951, 55.086584],
       [-161.602514, 55.098267],
       [-161.615867, 55.104388],
       [-161.632391, 55.104896],
       [-161.654918, 55.103244],
       [-161.674539, 55.095912],
       [-161.678537, 55.092829],
       [-161.678171, 55.087741],
       [-161.690346, 55.0785],
       [-161.737922, 55.054054],
       [-161.764169, 55.059509],
       [-161.791606, 55.077307],
       [-161.814984, 55.098639],
       [-161.816482, 55.111319],
       [-161.819869, 55.113965],
       [-161.851152, 55.126378],
       [-161.862504, 55.127598],
       [-161.886278, 55.126933],
       [-161.897846, 55.135768],
       [-161.900685, 55.142139],
       [-161.888936, 55.160724],
       [-161.850057, 55.17526],
       [-161.82784, 55.178473],
       [-161.73781, 55.161935],
       [-161.718614, 55.154166]]],
     [[[-160.506927, 55.32773],
       [-160.528864, 55.343501],
       [-160.534943, 55.343537],
       [-160.564427, 55.332504],
       [-160.57969, 55.314292],
       [-160.580668, 55.307196],
       [-160.580088, 55.302503],
       [-160.565929, 55.273137],
       [-160.550759, 55.264302],
       [-160.527617, 55.256374],
       [-160.486174, 55.193617],
       [-160.486511, 55.181951],
       [-160.496306, 55.166399],
       [-160.525226, 55.129871],
       [-160.655577, 55.160261],
       [-160.675871, 55.173622],
       [-160.688372, 55.195588],
       [-160.690293, 55.210474],
       [-160.756587, 55.195143],
       [-160.767393, 55.185399],
       [-160.765229, 55.176716],
       [-160.794198, 55.134399],
       [-160.806009, 55.12567],
       [-160.821381, 55.117851],
       [-160.824468, 55.120153],
       [-160.815862, 55.141556],
       [-160.807468, 55.155579],
       [-160.807558, 55.168161],
       [-160.819487, 55.187457],
       [-160.841917, 55.20444],
       [-160.841221, 55.293957],
       [-160.856621, 55.318488],
       [-160.840251, 55.339777],
       [-160.797147, 55.381521],
       [-160.7778, 55.388639],
       [-160.710298, 55.403075],
       [-160.687442, 55.402198],
       [-160.665927, 55.399025],
       [-160.649234, 55.38878],
       [-160.646214, 55.383142],
       [-160.646156, 55.357689],
       [-160.651011, 55.34365],
       [-160.614256, 55.348019],
       [-160.572716, 55.388978],
       [-160.567384, 55.390078],
       [-160.545227, 55.387911],
       [-160.517513, 55.379378],
       [-160.522063, 55.374369],
       [-160.522399, 55.370371],
       [-160.522307, 55.364367],
       [-160.518955, 55.361552],
       [-160.425658, 55.338883],
       [-160.408614, 55.341677],
       [-160.40335, 55.346299],
       [-160.361758, 55.36323],
       [-160.344369, 55.362962],
       [-160.333692, 55.360139],
       [-160.326463, 55.353189],
       [-160.317665, 55.338533],
       [-160.30655, 55.303275],
       [-160.330722, 55.261045],
       [-160.341217, 55.251799],
       [-160.372603, 55.25991],
       [-160.378887, 55.266692],
       [-160.380472, 55.272803],
       [-160.390421, 55.286576],
       [-160.441896, 55.298264],
       [-160.449799, 55.297081],
       [-160.457765, 55.291893],
       [-160.468262, 55.288925],
       [-160.475493, 55.28923],
       [-160.481536, 55.291779],
       [-160.518148, 55.309102],
       [-160.526945, 55.319044],
       [-160.506927, 55.32773]]],
     [[[-160.21178, 55.455862],
       [-160.137032, 55.450709],
       [-160.141834, 55.387154],
       [-160.142505, 55.383491],
       [-160.147993, 55.377576],
       [-160.154038, 55.377518],
       [-160.20361, 55.391739],
       [-160.27997, 55.395905],
       [-160.308921, 55.393174],
       [-160.321132, 55.393677],
       [-160.339858, 55.409692],
       [-160.349526, 55.420477],
       [-160.347609, 55.426187],
       [-160.323237, 55.444633],
       [-160.266834, 55.462789],
       [-160.260565, 55.463674],
       [-160.227504, 55.46034],
       [-160.21178, 55.455862]]],
     [[[-165.790523, 54.171758],
       [-165.747893, 54.161297],
       [-165.742613, 54.158352],
       [-165.732602, 54.148121],
       [-165.714198, 54.120815],
       [-165.667323, 54.132123],
       [-165.661379, 54.130935],
       [-165.655573, 54.1191],
       [-165.671477, 54.096235],
       [-165.767173, 54.065935],
       [-165.810747, 54.074764],
       [-165.875129, 54.03642],
       [-165.896308, 54.055714],
       [-165.897261, 54.060634],
       [-165.901649, 54.06287],
       [-165.916235, 54.065708],
       [-165.930242, 54.066554],
       [-165.984415, 54.061722],
       [-166.019861, 54.051441],
       [-166.027733, 54.045917],
       [-166.046438, 54.044186],
       [-166.098255, 54.103538],
       [-166.112242, 54.122528],
       [-166.101402, 54.144148],
       [-166.082028, 54.175184],
       [-166.002465, 54.213629],
       [-165.9832, 54.221175],
       [-165.94463, 54.220855],
       [-165.873076, 54.216455],
       [-165.868192, 54.214884],
       [-165.86514, 54.21216],
       [-165.865872, 54.200014],
       [-165.871973, 54.189783],
       [-165.880456, 54.183648],
       [-165.868076, 54.168731],
       [-165.863518, 54.166162],
       [-165.837274, 54.161028],
       [-165.832421, 54.161333],
       [-165.825159, 54.164499],
       [-165.797147, 54.183246],
       [-165.793781, 54.183433],
       [-165.792569, 54.181605],
       [-165.790523, 54.171758]]],
     [[[-165.271048, 54.095665],
       [-165.267012, 54.095467],
       [-165.234364, 54.065423],
       [-165.235149, 54.062767],
       [-165.24583, 54.05611],
       [-165.324415, 54.063907],
       [-165.336836, 54.070126],
       [-165.365768, 54.073317],
       [-165.458179, 54.066313],
       [-165.482747, 54.072218],
       [-165.483373, 54.075036],
       [-165.468221, 54.079641],
       [-165.438972, 54.084136],
       [-165.322268, 54.094634],
       [-165.271048, 54.095665]]],
     [[[-164.976199, 54.134595],
       [-164.937766, 54.136682],
       [-164.921307, 54.128569],
       [-164.919689, 54.11608],
       [-164.921464, 54.111083],
       [-164.953165, 54.078056],
       [-164.960581, 54.076026],
       [-165.044322, 54.066629],
       [-165.203413, 54.087752],
       [-165.212264, 54.090158],
       [-165.220871, 54.101574],
       [-165.198746, 54.116474],
       [-165.140978, 54.131079],
       [-165.088486, 54.128005],
       [-165.067428, 54.123174],
       [-165.050155, 54.121708],
       [-165.023065, 54.121919],
       [-165.00791, 54.134934],
       [-164.976199, 54.134595]]],
     [[[-165.523466, 54.299895],
       [-165.502775, 54.299469],
       [-165.478452, 54.295333],
       [-165.47775, 54.283707],
       [-165.479981, 54.281838],
       [-165.5137, 54.274086],
       [-165.557581, 54.254138],
       [-165.558835, 54.250763],
       [-165.55795, 54.246826],
       [-165.553251, 54.239601],
       [-165.512782, 54.212929],
       [-165.496279, 54.210938],
       [-165.478816, 54.21331],
       [-165.405377, 54.212837],
       [-165.391441, 54.204253],
       [-165.383719, 54.196731],
       [-165.399985, 54.177741],
       [-165.412925, 54.179221],
       [-165.422356, 54.182799],
       [-165.47619, 54.182701],
       [-165.481317, 54.179962],
       [-165.536004, 54.129606],
       [-165.549217, 54.112196],
       [-165.565422, 54.108122],
       [-165.575645, 54.108618],
       [-165.613214, 54.120908],
       [-165.629725, 54.132558],
       [-165.637081, 54.199436],
       [-165.621854, 54.208105],
       [-165.593656, 54.218375],
       [-165.585782, 54.223067],
       [-165.579801, 54.229575],
       [-165.587157, 54.238166],
       [-165.595732, 54.242713],
       [-165.612082, 54.246537],
       [-165.615629, 54.244834],
       [-165.625609, 54.233756],
       [-165.640013, 54.229673],
       [-165.669383, 54.229036],
       [-165.681458, 54.236914],
       [-165.685823, 54.243406],
       [-165.684114, 54.249907],
       [-165.675447, 54.264639],
       [-165.636383, 54.297567],
       [-165.62555, 54.298964],
       [-165.61557, 54.297445],
       [-165.605225, 54.294219],
       [-165.586509, 54.284361],
       [-165.523466, 54.299895]]],
     [[[-162.801865, 54.48944],
       [-162.79629, 54.492254],
       [-162.728415, 54.475354],
       [-162.588883, 54.450064],
       [-162.556667, 54.424621],
       [-162.552718, 54.416113],
       [-162.551618, 54.392217],
       [-162.562726, 54.38284],
       [-162.611891, 54.368077],
       [-162.722797, 54.40034],
       [-162.760396, 54.373254],
       [-162.759472, 54.371116],
       [-162.781239, 54.375085],
       [-162.86005, 54.425452],
       [-162.827621, 54.490859],
       [-162.801865, 54.48944]]],
     [[[-158.893211, 56.805788],
       [-158.891034, 56.75422],
       [-159.028594, 56.754058],
       [-159.028589, 56.669419],
       [-159.275496, 56.671762],
       [-159.275491, 56.580921],
       [-159.592657, 56.580917],
       [-159.59341, 56.494524],
       [-159.899424, 56.491981],
       [-159.903652, 56.322594],
       [-159.809651, 56.321694],
       [-159.805267, 55.982595],
       [-159.867858, 55.982594],
       [-159.868099, 55.888481],
       [-159.564669, 55.888484],
       [-159.564413, 55.633045],
       [-159.61777, 55.595798],
       [-159.696713, 55.573306],
       [-159.729333, 55.56965],
       [-159.733899, 55.569985],
       [-159.744495, 55.600018],
       [-159.743282, 55.603624],
       [-159.735196, 55.610933],
       [-159.72415, 55.614549],
       [-159.673432, 55.61735],
       [-159.667511, 55.614825],
       [-159.639619, 55.617915],
       [-159.626772, 55.629412],
       [-159.635866, 55.644398],
       [-159.644656, 55.652469],
       [-159.679201, 55.655895],
       [-159.680635, 55.68134],
       [-159.676761, 55.737357],
       [-159.673191, 55.750961],
       [-159.627482, 55.803248],
       [-159.624884, 55.804694],
       [-159.602148, 55.805004],
       [-159.607973, 55.8129],
       [-159.643739, 55.830424],
       [-159.712816, 55.846392],
       [-159.81107, 55.85657],
       [-159.838981, 55.852412],
       [-159.853255, 55.847162],
       [-159.858456, 55.841793],
       [-159.85075, 55.824076],
       [-159.847359, 55.80253],
       [-159.862484, 55.787629],
       [-159.875994, 55.784608],
       [-159.892319, 55.785096],
       [-159.937089, 55.803306],
       [-160.010322, 55.797087],
       [-160.026282, 55.792295],
       [-160.048711, 55.772061],
       [-160.052525, 55.76643],
       [-160.051945, 55.760594],
       [-160.049417, 55.757588],
       [-160.058443, 55.721734],
       [-160.130445, 55.681419],
       [-160.185712, 55.658644],
       [-160.279827, 55.641384],
       [-160.325419, 55.644207],
       [-160.353494, 55.649731],
       [-160.410823, 55.66538],
       [-160.416452, 55.665302],
       [-160.421853, 55.662701],
       [-160.429727, 55.658046],
       [-160.433602, 55.648975],
       [-160.433022, 55.639979],
       [-160.392587, 55.602771],
       [-160.435859, 55.573692],
       [-160.448277, 55.559049],
       [-160.464301, 55.533243],
       [-160.465186, 55.527361],
       [-160.459815, 55.514986],
       [-160.462745, 55.506654],
       [-160.481633, 55.489068],
       [-160.501346, 55.478518],
       [-160.521335, 55.47442],
       [-160.536654, 55.474938],
       [-160.544224, 55.502351],
       [-160.554173, 55.522965],
       [-160.580083, 55.564385],
       [-160.595771, 55.57554],
       [-160.615305, 55.575516],
       [-160.638371, 55.557426],
       [-160.652775, 55.548668],
       [-160.666966, 55.544417],
       [-160.706883, 55.556066],
       [-160.737095, 55.555448],
       [-160.75104, 55.552907],
       [-160.766237, 55.547559],
       [-160.77295, 55.538998],
       [-160.771433, 55.52943],
       [-160.73215, 55.523596],
       [-160.660117, 55.518475],
       [-160.654117, 55.512596],
       [-160.647464, 55.500862],
       [-160.646304, 55.492851],
       [-160.651523, 55.474174],
       [-160.666917, 55.459776],
       [-160.781401, 55.45178],
       [-160.795988, 55.454946],
       [-160.836725, 55.473135],
       [-160.843407, 55.489782],
       [-160.836023, 55.497259],
       [-160.821773, 55.506216],
       [-160.82081, 55.507974],
       [-160.828273, 55.516111],
       [-160.849145, 55.523916],
       [-160.86538, 55.526968],
       [-160.909625, 55.52414],
       [-160.922934, 55.5193],
       [-160.944265, 55.507825],
       [-160.976551, 55.472736],
       [-160.979298, 55.466274],
       [-160.977376, 55.461185],
       [-160.982717, 55.454326],
       [-160.997335, 55.440265],
       [-161.013662, 55.431002],
       [-161.231535, 55.357452],
       [-161.280675, 55.354038],
       [-161.325325, 55.359855],
       [-161.317545, 55.362758],
       [-161.311989, 55.372836],
       [-161.314949, 55.379231],
       [-161.34608, 55.385782],
       [-161.364577, 55.384194],
       [-161.445196, 55.368103],
       [-161.460392, 55.35907],
       [-161.486114, 55.359322],
       [-161.507657, 55.362786],
       [-161.514211, 55.385254],
       [-161.509306, 55.390626],
       [-161.496123, 55.396967],
       [-161.484588, 55.417994],
       [-161.478303, 55.4406],
       [-161.471468, 55.478588],
       [-161.477114, 55.485195],
       [-161.469271, 55.49683],
       [-161.376102, 55.569794],
       [-161.367405, 55.579484],
       [-161.355686, 55.606378],
       [-161.35767, 55.612603],
       [-161.363378, 55.618478],
       [-161.392613, 55.628221],
       [-161.416235, 55.632324],
       [-161.482064, 55.633979],
       [-161.526162, 55.630498],
       [-161.587047, 55.62006],
       [-161.602825, 55.613811],
       [-161.612926, 55.606158],
       [-161.69886, 55.5194],
       [-161.700069, 55.51439],
       [-161.696719, 55.423307],
       [-161.688357, 55.41638],
       [-161.686495, 55.408041],
       [-161.720096, 55.37669],
       [-161.827543, 55.287872],
       [-161.833891, 55.2844],
       [-161.845473, 55.281249],
       [-161.853418, 55.277634],
       [-161.863339, 55.266989],
       [-161.875606, 55.249921],
       [-161.879542, 55.240804],
       [-161.875759, 55.232592],
       [-161.875238, 55.227224],
       [-161.878076, 55.223599],
       [-161.903407, 55.204941],
       [-161.919519, 55.208209],
       [-161.957455, 55.227999],
       [-161.978788, 55.236131],
       [-162.029636, 55.239492],
       [-162.041236, 55.236806],
       [-162.045694, 55.232775],
       [-162.046242, 55.225605],
       [-162.001711, 55.169236],
       [-161.966974, 55.154831],
       [-161.949882, 55.126686],
       [-161.956595, 55.112174],
       [-161.960866, 55.106734],
       [-162.053281, 55.074212],
       [-162.11874, 55.102911],
       [-162.131878, 55.122776],
       [-162.119033, 55.141116],
       [-162.126369, 55.153408],
       [-162.141084, 55.157339],
       [-162.177427, 55.154403],
       [-162.218192, 55.118903],
       [-162.224047, 55.108658],
       [-162.223528, 55.102211],
       [-162.2068, 55.082391],
       [-162.190348, 55.066981],
       [-162.189247, 55.06026],
       [-162.219326, 55.028975],
       [-162.247946, 55.020439],
       [-162.2535, 55.020454],
       [-162.267754, 55.021553],
       [-162.280512, 55.026207],
       [-162.292511, 55.033429],
       [-162.299619, 55.040152],
       [-162.300378, 55.042927],
       [-162.361969, 55.042679],
       [-162.41351, 55.03656],
       [-162.471364, 55.051932],
       [-162.489735, 55.064849],
       [-162.512104, 55.086227],
       [-162.521688, 55.104011],
       [-162.520986, 55.115417],
       [-162.506887, 55.118927],
       [-162.460958, 55.12584],
       [-162.453451, 55.123948],
       [-162.442556, 55.118226],
       [-162.437368, 55.112122],
       [-162.424796, 55.104813],
       [-162.4168, 55.104096],
       [-162.410574, 55.105614],
       [-162.406191, 55.120498],
       [-162.445182, 55.151521],
       [-162.48098, 55.161271],
       [-162.49447, 55.183915],
       [-162.49792, 55.199052],
       [-162.499019, 55.21377],
       [-162.510435, 55.250177],
       [-162.513121, 55.252374],
       [-162.584872, 55.298386],
       [-162.626101, 55.304085],
       [-162.649173, 55.299118],
       [-162.66196, 55.294295],
       [-162.682405, 55.27645],
       [-162.702851, 55.252775],
       [-162.714607, 55.231611],
       [-162.718077, 55.219911],
       [-162.711128, 55.211267],
       [-162.692309, 55.197313],
       [-162.668346, 55.193445],
       [-162.644734, 55.197115],
       [-162.638791, 55.19477],
       [-162.614497, 55.174735],
       [-162.579765, 55.136939],
       [-162.582908, 55.13024],
       [-162.585533, 55.1286],
       [-162.595603, 55.124846],
       [-162.604454, 55.126028],
       [-162.618918, 55.097096],
       [-162.599812, 55.054806],
       [-162.569292, 55.015874],
       [-162.569289, 54.97124],
       [-162.587967, 54.97201],
       [-162.615159, 54.987841],
       [-162.646472, 54.997163],
       [-162.688131, 54.996126],
       [-162.707083, 54.991159],
       [-162.716177, 54.986679],
       [-162.720404, 54.980223],
       [-162.707203, 54.972023],
       [-162.705096, 54.96601],
       [-162.708453, 54.95848],
       [-162.770983, 54.932736],
       [-162.834245, 54.926851],
       [-162.845475, 54.926989],
       [-162.881639, 54.934785],
       [-162.913684, 54.950273],
       [-162.970632, 55.001039],
       [-162.965872, 55.017374],
       [-162.958975, 55.020151],
       [-162.957826, 55.031826],
       [-162.964897, 55.042201],
       [-163.00155, 55.080043],
       [-163.051631, 55.103267],
       [-163.071468, 55.110477],
       [-163.079006, 55.111652],
       [-163.111507, 55.109705],
       [-163.165036, 55.099214],
       [-163.188428, 55.090903],
       [-163.213009, 55.066742],
       [-163.225092, 55.049683],
       [-163.226313, 55.042694],
       [-163.219018, 55.030281],
       [-163.213281, 55.026138],
       [-163.189447, 55.016678],
       [-163.17483, 55.0131],
       [-163.148615, 55.014023],
       [-163.067008, 54.979302],
       [-163.050467, 54.969071],
       [-163.036062, 54.942544],
       [-163.065602, 54.926172],
       [-163.14958, 54.885906],
       [-163.214398, 54.847487],
       [-163.299809, 54.829232],
       [-163.352997, 54.810174],
       [-163.373207, 54.800841],
       [-163.372806, 54.790936],
       [-163.342655, 54.765104],
       [-163.322849, 54.75028],
       [-163.228391, 54.753513],
       [-163.219765, 54.755072],
       [-163.188853, 54.773717],
       [-163.184295, 54.774912],
       [-163.144089, 54.761499],
       [-163.107558, 54.732752],
       [-163.057228, 54.688101],
       [-163.05097, 54.672263],
       [-163.059085, 54.661072],
       [-163.096744, 54.661597],
       [-163.125738, 54.66818],
       [-163.140925, 54.694829],
       [-163.185401, 54.700398],
       [-163.194952, 54.699025],
       [-163.208775, 54.693136],
       [-163.280633, 54.695367],
       [-163.317996, 54.719938],
       [-163.327457, 54.743414],
       [-163.331516, 54.747518],
       [-163.344791, 54.751211],
       [-163.364626, 54.749464],
       [-163.380618, 54.746176],
       [-163.39197, 54.74198],
       [-163.423067, 54.720426],
       [-163.428377, 54.714819],
       [-163.425477, 54.710081],
       [-163.439361, 54.655928],
       [-163.472016, 54.656468],
       [-163.488861, 54.65511],
       [-163.572383, 54.623211],
       [-163.581481, 54.616863],
       [-163.585967, 54.611644],
       [-163.670838, 54.627825],
       [-163.747316, 54.635011],
       [-163.80359, 54.636498],
       [-163.861206, 54.632911],
       [-163.952391, 54.630461],
       [-163.966307, 54.631681],
       [-164.084894, 54.620131],
       [-164.179617, 54.599188],
       [-164.23247, 54.585494],
       [-164.257585, 54.572722],
       [-164.331404, 54.530431],
       [-164.337538, 54.524259],
       [-164.341474, 54.495266],
       [-164.336042, 54.484509],
       [-164.33653, 54.480977],
       [-164.352704, 54.465023],
       [-164.41682, 54.431713],
       [-164.456554, 54.419856],
       [-164.499034, 54.414225],
       [-164.51997, 54.414652],
       [-164.582778, 54.405702],
       [-164.601607, 54.402451],
       [-164.640457, 54.391166],
       [-164.743977, 54.394216],
       [-164.789357, 54.402012],
       [-164.844931, 54.417583],
       [-164.876075, 54.443495],
       [-164.877373, 54.449908],
       [-164.904077, 54.499195],
       [-164.910059, 54.507542],
       [-164.936122, 54.521253],
       [-164.944636, 54.532903],
       [-164.949781, 54.575697],
       [-164.948789, 54.579877],
       [-164.932187, 54.598745],
       [-164.91876, 54.605306],
       [-164.831936, 54.629028],
       [-164.761347, 54.640634],
       [-164.741815, 54.645441],
       [-164.727654, 54.650957],
       [-164.709465, 54.661518],
       [-164.629661, 54.756031],
       [-164.576896, 54.824564],
       [-164.561546, 54.850835],
       [-164.56405, 54.875539],
       [-164.550256, 54.888785],
       [-164.48678, 54.922441],
       [-164.43528, 54.933126],
       [-164.427303, 54.932849],
       [-164.373441, 54.915349],
       [-164.361631, 54.907391],
       [-164.35333, 54.898327],
       [-164.343534, 54.894139],
       [-164.295033, 54.902122],
       [-164.20707, 54.927578],
       [-164.204897, 54.93124],
       [-164.164342, 54.953532],
       [-164.119196, 54.969416],
       [-164.109333, 54.963999],
       [-164.086798, 54.963396],
       [-164.061164, 54.964708],
       [-164.030708, 54.969818],
       [-163.994179, 54.983315],
       [-163.96473, 54.997337],
       [-163.930369, 55.017646],
       [-163.909222, 55.032089],
       [-163.894695, 55.039115],
       [-163.884869, 55.039909],
       [-163.872144, 55.037399],
       [-163.85426, 55.037796],
       [-163.815779, 55.044625],
       [-163.790733, 55.052583],
       [-163.774093, 55.05578],
       [-163.740737, 55.048266],
       [-163.646834, 55.044467],
       [-163.568159, 55.049145],
       [-163.532962, 55.048881],
       [-163.527109, 55.040871],
       [-163.534638, 55.025305],
       [-163.530087, 55.01666],
       [-163.4615, 54.982511],
       [-163.442854, 54.969875],
       [-163.429548, 54.954759],
       [-163.418042, 54.938499],
       [-163.398294, 54.902371],
       [-163.399292, 54.894012],
       [-163.408027, 54.88458],
       [-163.415872, 54.859652],
       [-163.414691, 54.85609],
       [-163.410594, 54.854576],
       [-163.391397, 54.855331],
       [-163.334234, 54.872948],
       [-163.318885, 54.88012],
       [-163.319161, 54.899026],
       [-163.319956, 54.903085],
       [-163.336739, 54.91749],
       [-163.344402, 54.919333],
       [-163.34773, 54.925093],
       [-163.343735, 54.950416],
       [-163.338395, 54.956191],
       [-163.323106, 54.959929],
       [-163.314592, 54.958862],
       [-163.290908, 54.945977],
       [-163.279586, 54.944849],
       [-163.2399, 54.954617],
       [-163.237414, 54.959292],
       [-163.240008, 54.962885],
       [-163.293205, 55.006865],
       [-163.297876, 55.057619],
       [-163.310694, 55.105612],
       [-163.314069, 55.105146],
       [-163.318731, 55.110811],
       [-163.319873, 55.119622],
       [-163.314652, 55.126312],
       [-163.268767, 55.145465],
       [-163.200867, 55.166057],
       [-163.157532, 55.17551],
       [-163.105011, 55.183979],
       [-163.081634, 55.180409],
       [-163.080719, 55.176861],
       [-163.070494, 55.174114],
       [-163.032256, 55.172147],
       [-162.957182, 55.171271],
       [-162.882292, 55.183251],
       [-162.86152, 55.198339],
       [-162.84014, 55.224043],
       [-162.843172, 55.242564],
       [-162.851839, 55.247317],
       [-162.8566, 55.248721],
       [-162.869478, 55.248086],
       [-162.880892, 55.239564],
       [-162.89402, 55.243046],
       [-162.900454, 55.246416],
       [-162.901644, 55.247652],
       [-162.900027, 55.252466],
       [-162.888118, 55.270424],
       [-162.881779, 55.273776],
       [-162.750371, 55.307623],
       [-162.731816, 55.307829],
       [-162.704747, 55.320296],
       [-162.680487, 55.337004],
       [-162.64991, 55.364151],
       [-162.619883, 55.40867],
       [-162.580524, 55.446514],
       [-162.575826, 55.446833],
       [-162.533216, 55.467625],
       [-162.504041, 55.482556],
       [-162.483687, 55.495237],
       [-162.403581, 55.557465],
       [-162.326436, 55.613918],
       [-162.286002, 55.649288],
       [-162.246972, 55.680013],
       [-162.193078, 55.702178],
       [-162.147059, 55.718415],
       [-162.090664, 55.753427],
       [-162.079678, 55.7634],
       [-161.972624, 55.800526],
       [-161.898956, 55.833464],
       [-161.85843, 55.865402],
       [-161.816225, 55.888993],
       [-161.807833, 55.891954],
       [-161.773409, 55.89731],
       [-161.712283, 55.904232],
       [-161.640007, 55.919503],
       [-161.585604, 55.937324],
       [-161.450442, 55.954485],
       [-161.380557, 55.965618],
       [-161.290777, 55.98313],
       [-161.280307, 55.979323],
       [-161.27833, 55.974912],
       [-161.262763, 55.958734],
       [-161.230444, 55.947467],
       [-161.211273, 55.951712],
       [-161.096617, 55.954752],
       [-161.076383, 55.942079],
       [-161.049162, 55.945407],
       [-161.027739, 55.954554],
       [-161.023376, 55.959468],
       [-160.898682, 55.999014],
       [-160.873229, 56.001448],
       [-160.86325, 55.996237],
       [-160.814205, 55.953834],
       [-160.812893, 55.950858],
       [-160.814113, 55.930633],
       [-160.818201, 55.910749],
       [-160.835077, 55.915747],
       [-160.849665, 55.916227],
       [-160.923856, 55.900574],
       [-160.95156, 55.852772],
       [-160.9464, 55.834881],
       [-160.940845, 55.822529],
       [-160.930591, 55.814358],
       [-160.806014, 55.738241],
       [-160.765228, 55.757174],
       [-160.730726, 55.747664],
       [-160.668102, 55.723556],
       [-160.661205, 55.723427],
       [-160.65556, 55.730041],
       [-160.655468, 55.739868],
       [-160.663037, 55.745491],
       [-160.675794, 55.751411],
       [-160.695227, 55.755075],
       [-160.751236, 55.779364],
       [-160.757705, 55.785841],
       [-160.769155, 55.858268],
       [-160.734182, 55.870995],
       [-160.697591, 55.862396],
       [-160.639088, 55.8583],
       [-160.564014, 55.863719],
       [-160.550343, 55.867549],
       [-160.532582, 55.869891],
       [-160.508433, 55.869379],
       [-160.494678, 55.864193],
       [-160.477892, 55.841099],
       [-160.479355, 55.822361],
       [-160.438735, 55.789608],
       [-160.385878, 55.796445],
       [-160.342876, 55.778166],
       [-160.293924, 55.765556],
       [-160.277382, 55.765861],
       [-160.264568, 55.775723],
       [-160.26893, 55.784278],
       [-160.293498, 55.801788],
       [-160.315655, 55.814544],
       [-160.317826, 55.818983],
       [-160.272533, 55.831673],
       [-160.273176, 55.856881],
       [-160.325637, 55.867858],
       [-160.380573, 55.889456],
       [-160.420735, 55.90862],
       [-160.486594, 55.924168],
       [-160.535759, 55.939617],
       [-160.533685, 55.95995],
       [-160.527094, 55.973011],
       [-160.526362, 55.982433],
       [-160.529292, 55.986103],
       [-160.534541, 55.989498],
       [-160.559597, 55.996838],
       [-160.567604, 55.99167],
       [-160.570895, 55.988929],
       [-160.574397, 55.986552],
       [-160.576655, 55.985416],
       [-160.58084, 55.984079],
       [-160.583491, 55.986468],
       [-160.568356, 56.004062],
       [-160.488708, 56.077214],
       [-160.482208, 56.085234],
       [-160.451417, 56.125564],
       [-160.411381, 56.194138],
       [-160.396338, 56.231775],
       [-160.383094, 56.251352],
       [-160.357156, 56.279582],
       [-160.340249, 56.291271],
       [-160.315896, 56.302227],
       [-160.274604, 56.317151],
       [-160.222878, 56.346868],
       [-160.208383, 56.358022],
       [-160.196329, 56.37255],
       [-160.146252, 56.400176],
       [-160.082592, 56.411094],
       [-160.001477, 56.442201],
       [-159.976758, 56.453951],
       [-159.938337, 56.474192],
       [-159.828049, 56.543935],
       [-159.815477, 56.548941],
       [-159.636156, 56.59739],
       [-159.534961, 56.626529],
       [-159.43938, 56.641332],
       [-159.369434, 56.657073],
       [-159.324421, 56.670356],
       [-159.264871, 56.703136],
       [-159.279894, 56.715667],
       [-159.263113, 56.723321],
       [-159.156455, 56.763324],
       [-159.106652, 56.781126],
       [-159.093468, 56.783704],
       [-159.038354, 56.806006],
       [-159.018304, 56.815094],
       [-158.957471, 56.851184],
       [-158.955338, 56.849762],
       [-158.953543, 56.843418],
       [-158.933589, 56.827905],
       [-158.91073, 56.814797],
       [-158.893212, 56.805788],
       [-158.893211, 56.805788]]]]},
   'id': '02013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02016',
    'STATE': '02',
    'COUNTY': '016',
    'NAME': 'Aleutians West',
    'LSAD': 'CA',
    'CENSUSAREA': 4390.276},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-179.069176, 51.262874],
       [-179.07232, 51.250963],
       [-179.097619, 51.226135],
       [-179.126856, 51.219862],
       [-179.136196, 51.229216],
       [-179.14734, 51.276781],
       [-179.137239, 51.286006],
       [-179.113495, 51.300801],
       [-179.094665, 51.301229],
       [-179.075466, 51.284619],
       [-179.069176, 51.262874]]],
     [[[-178.954338, 51.339247],
       [-178.95446, 51.332731],
       [-178.965171, 51.322682],
       [-178.979179, 51.31438],
       [-178.987236, 51.311038],
       [-178.990684, 51.311648],
       [-178.992094, 51.381311],
       [-178.977782, 51.398929],
       [-178.964323, 51.402492],
       [-178.926874, 51.38364],
       [-178.914207, 51.363992],
       [-178.908883, 51.340582],
       [-178.954338, 51.339247]]],
     [[[178.785825, 51.633434],
       [178.804128, 51.635034],
       [178.864937, 51.623133],
       [178.90391, 51.614914],
       [178.919136, 51.605546],
       [178.917608, 51.594949],
       [178.918827, 51.588337],
       [178.920826, 51.586137],
       [179.002896, 51.552486],
       [179.076803, 51.498518],
       [179.101442, 51.485497],
       [179.143656, 51.469442],
       [179.164531, 51.464635],
       [179.178081, 51.464812],
       [179.191082, 51.462935],
       [179.218031, 51.43894],
       [179.226883, 51.423941],
       [179.23027, 51.413419],
       [179.236253, 51.409606],
       [179.263934, 51.405838],
       [179.33498, 51.404933],
       [179.386221, 51.404401],
       [179.400809, 51.400557],
       [179.462765, 51.376176],
       [179.467581, 51.371629],
       [179.450191, 51.365142],
       [179.399469, 51.359433],
       [179.389855, 51.361004],
       [179.384679, 51.36421],
       [179.366788, 51.371837],
       [179.261618, 51.357688],
       [179.220471, 51.376667],
       [179.218185, 51.387377],
       [179.2065, 51.393284],
       [179.097477, 51.44058],
       [179.060354, 51.454875],
       [179.034532, 51.47853],
       [179.013516, 51.49728],
       [178.969019, 51.531237],
       [178.951626, 51.541963],
       [178.843631, 51.578642],
       [178.831825, 51.580534],
       [178.795194, 51.575429],
       [178.785061, 51.571866],
       [178.767787, 51.576123],
       [178.706047, 51.593182],
       [178.634021, 51.623981],
       [178.631609, 51.625782],
       [178.625536, 51.637303],
       [178.645511, 51.657634],
       [178.664013, 51.661935],
       [178.675528, 51.659064],
       [178.681998, 51.649946],
       [178.689903, 51.644422],
       [178.738019, 51.632734],
       [178.785825, 51.633434]]],
     [[[-176.762478, 51.867878],
       [-176.797799, 51.908512],
       [-176.810433, 51.927089],
       [-176.789558, 51.957211],
       [-176.774023, 51.965895],
       [-176.736549, 51.969808],
       [-176.72078, 51.969518],
       [-176.698771, 51.964454],
       [-176.63051, 51.970352],
       [-176.627155, 51.978294],
       [-176.603598, 51.997056],
       [-176.589955, 52.002741],
       [-176.579975, 52.003238],
       [-176.560565, 51.996732],
       [-176.554398, 51.99066],
       [-176.544867, 51.927245],
       [-176.554661, 51.909834],
       [-176.558376, 51.908725],
       [-176.566275, 51.914702],
       [-176.568916, 51.9213],
       [-176.565559, 51.925862],
       [-176.569683, 51.951324],
       [-176.575635, 51.952641],
       [-176.578931, 51.951328],
       [-176.582927, 51.947964],
       [-176.616095, 51.903013],
       [-176.620015, 51.89563],
       [-176.623452, 51.883205],
       [-176.625463, 51.859824],
       [-176.576381, 51.842275],
       [-176.543309, 51.838624],
       [-176.517599, 51.839557],
       [-176.507989, 51.84597],
       [-176.398062, 51.867842],
       [-176.311573, 51.872463],
       [-176.290728, 51.872136],
       [-176.287188, 51.870313],
       [-176.281694, 51.863919],
       [-176.26649, 51.817716],
       [-176.268243, 51.785498],
       [-176.273792, 51.772019],
       [-176.289921, 51.741678],
       [-176.343756, 51.73152],
       [-176.474132, 51.747208],
       [-176.497054, 51.761426],
       [-176.509655, 51.763326],
       [-176.51933, 51.758482],
       [-176.582933, 51.691822],
       [-176.608482, 51.693349],
       [-176.70266, 51.685404],
       [-176.713062, 51.68333],
       [-176.735912, 51.662154],
       [-176.751817, 51.635017],
       [-176.801675, 51.613488],
       [-176.809, 51.616235],
       [-176.823682, 51.634011],
       [-176.826252, 51.640932],
       [-176.814437, 51.66025],
       [-176.837514, 51.682745],
       [-176.863062, 51.684921],
       [-176.903184, 51.635648],
       [-176.930952, 51.59247],
       [-176.938917, 51.590982],
       [-176.954147, 51.592568],
       [-176.984331, 51.602135],
       [-176.987383, 51.606872],
       [-176.991322, 51.629052],
       [-176.984489, 51.657411],
       [-176.976249, 51.6664],
       [-176.950128, 51.686719],
       [-176.930872, 51.697195],
       [-176.906884, 51.696639],
       [-176.896966, 51.700424],
       [-176.873924, 51.724071],
       [-176.870997, 51.72941],
       [-176.8707, 51.731969],
       [-176.882018, 51.766628],
       [-176.90503, 51.771532],
       [-176.918065, 51.788003],
       [-176.917088, 51.797016],
       [-176.911016, 51.807597],
       [-176.904302, 51.811772],
       [-176.856205, 51.818366],
       [-176.790163, 51.817217],
       [-176.762478, 51.867878]]],
     [[[-177.800647, 51.778294],
       [-177.796308, 51.770831],
       [-177.813886, 51.75428],
       [-177.842267, 51.73248],
       [-177.842419, 51.722645],
       [-177.838054, 51.717198],
       [-177.827524, 51.712086],
       [-177.826997, 51.705972],
       [-177.841411, 51.68956],
       [-177.856332, 51.681015],
       [-177.86796, 51.679374],
       [-177.876811, 51.681411],
       [-177.887768, 51.689483],
       [-177.899416, 51.692557],
       [-177.902693, 51.691581],
       [-177.918806, 51.67439],
       [-177.928907, 51.655368],
       [-177.929023, 51.65052],
       [-177.92564, 51.642481],
       [-177.915445, 51.630684],
       [-177.903083, 51.606497],
       [-177.906072, 51.59767],
       [-177.909185, 51.596671],
       [-177.930123, 51.601499],
       [-177.944957, 51.611539],
       [-177.950665, 51.620001],
       [-177.953024, 51.638175],
       [-177.957443, 51.647149],
       [-177.963852, 51.650231],
       [-178.069823, 51.670676],
       [-178.086304, 51.663618],
       [-178.109378, 51.670461],
       [-178.117864, 51.677831],
       [-178.104285, 51.701539],
       [-178.021818, 51.706906],
       [-177.962426, 51.719772],
       [-177.956443, 51.722862],
       [-177.947777, 51.740381],
       [-177.946649, 51.752681],
       [-177.950283, 51.765682],
       [-177.956998, 51.772541],
       [-177.965031, 51.778162],
       [-177.995272, 51.781535],
       [-178.039344, 51.778925],
       [-178.059335, 51.786829],
       [-178.08064, 51.798739],
       [-178.086074, 51.808047],
       [-178.172666, 51.839985],
       [-178.215124, 51.857801],
       [-178.224129, 51.864881],
       [-178.227822, 51.873526],
       [-178.224618, 51.880675],
       [-178.220742, 51.884841],
       [-178.19709, 51.905464],
       [-178.175023, 51.911584],
       [-178.145326, 51.917216],
       [-178.124786, 51.920093],
       [-178.090632, 51.919399],
       [-178.070548, 51.917408],
       [-178.061147, 51.912539],
       [-178.002345, 51.909968],
       [-177.963723, 51.917919],
       [-177.952094, 51.915348],
       [-177.913269, 51.879748],
       [-177.924315, 51.857522],
       [-177.921569, 51.853883],
       [-177.859763, 51.826944],
       [-177.852285, 51.826045],
       [-177.759641, 51.831195],
       [-177.691714, 51.843975],
       [-177.615311, 51.85508],
       [-177.614511, 51.853033],
       [-177.625008, 51.837529],
       [-177.649208, 51.820727],
       [-177.685555, 51.812745],
       [-177.692118, 51.813897],
       [-177.735909, 51.807991],
       [-177.797719, 51.793297],
       [-177.800647, 51.778294]]],
     [[[-177.360408, 51.727533],
       [-177.39076, 51.733525],
       [-177.417678, 51.730875],
       [-177.444717, 51.725419],
       [-177.463577, 51.713943],
       [-177.490005, 51.705106],
       [-177.540393, 51.698755],
       [-177.570973, 51.69822],
       [-177.608055, 51.705184],
       [-177.616753, 51.703978],
       [-177.631523, 51.696844],
       [-177.640524, 51.672084],
       [-177.635883, 51.659541],
       [-177.651386, 51.653604],
       [-177.670951, 51.66398],
       [-177.707802, 51.703268],
       [-177.705261, 51.70724],
       [-177.697662, 51.713123],
       [-177.639983, 51.736061],
       [-177.597498, 51.726464],
       [-177.555197, 51.721125],
       [-177.536977, 51.72147],
       [-177.515591, 51.724978],
       [-177.497974, 51.738624],
       [-177.4612, 51.750718],
       [-177.281479, 51.784075],
       [-177.238175, 51.79852],
       [-177.21193, 51.812331],
       [-177.205675, 51.820639],
       [-177.200825, 51.844605],
       [-177.19912, 51.883142],
       [-177.199764, 51.924816],
       [-177.197506, 51.931339],
       [-177.191399, 51.938001],
       [-177.181271, 51.943167],
       [-177.154842, 51.944381],
       [-177.099266, 51.936119],
       [-177.054768, 51.908944],
       [-177.04509, 51.898605],
       [-177.08101, 51.855497],
       [-177.120377, 51.839687],
       [-177.128617, 51.833835],
       [-177.136977, 51.814493],
       [-177.13096, 51.762772],
       [-177.120581, 51.739815],
       [-177.122808, 51.729355],
       [-177.145675, 51.707294],
       [-177.261631, 51.680846],
       [-177.275121, 51.68051],
       [-177.296369, 51.684245],
       [-177.316501, 51.690353],
       [-177.317888, 51.693447],
       [-177.317939, 51.696866],
       [-177.316353, 51.700811],
       [-177.322977, 51.711416],
       [-177.342784, 51.721395],
       [-177.360408, 51.727533]]],
     [[[-178.792409, 51.746071],
       [-178.808157, 51.747078],
       [-178.815757, 51.749176],
       [-178.873024, 51.782623],
       [-178.870118, 51.795261],
       [-178.858248, 51.820966],
       [-178.828645, 51.83615],
       [-178.819459, 51.839575],
       [-178.811249, 51.839018],
       [-178.788541, 51.832602],
       [-178.767695, 51.823179],
       [-178.748283, 51.809942],
       [-178.733355, 51.783947],
       [-178.750414, 51.757752],
       [-178.776661, 51.748612],
       [-178.792409, 51.746071]]],
     [[[178.380741, 51.763907],
       [178.367465, 51.772758],
       [178.36368, 51.773948],
       [178.339082, 51.771529],
       [178.335664, 51.769926],
       [178.318757, 51.772322],
       [178.308563, 51.775701],
       [178.304892, 51.777434],
       [178.246209, 51.817078],
       [178.236931, 51.828209],
       [178.305568, 51.821748],
       [178.310298, 51.819993],
       [178.319389, 51.815737],
       [178.33219, 51.809037],
       [178.335631, 51.807031],
       [178.372348, 51.774146],
       [178.380741, 51.763907]]],
     [[[-175.971562, 51.888631],
       [-175.957546, 51.893455],
       [-175.953251, 51.881376],
       [-175.954287, 51.868381],
       [-175.963041, 51.846253],
       [-175.983742, 51.852352],
       [-176.047892, 51.846309],
       [-176.10107, 51.810609],
       [-176.123965, 51.802745],
       [-176.139622, 51.802386],
       [-176.183142, 51.807099],
       [-176.216957, 51.812714],
       [-176.235544, 51.823157],
       [-176.236246, 51.825965],
       [-176.217544, 51.874627],
       [-176.206069, 51.883089],
       [-176.173871, 51.882449],
       [-176.169751, 51.880138],
       [-176.168775, 51.87733],
       [-176.161052, 51.869685],
       [-176.140908, 51.859562],
       [-176.099137, 51.855533],
       [-176.080442, 51.858567],
       [-176.072225, 51.867938],
       [-176.073431, 51.870312],
       [-176.078865, 51.874778],
       [-176.115489, 51.887015],
       [-176.111452, 51.889748],
       [-176.065288, 51.902986],
       [-176.020182, 51.911373],
       [-175.99265, 51.912655],
       [-175.984993, 51.908445],
       [-175.971562, 51.888631]]],
     [[[177.601645, 52.016377],
       [177.577226, 52.00497],
       [177.572068, 52.001812],
       [177.538223, 51.978897],
       [177.532729, 51.97007],
       [177.539627, 51.959418],
       [177.543534, 51.956175],
       [177.571796, 51.95159],
       [177.579823, 51.950836],
       [177.607535, 51.95472],
       [177.611553, 51.950829],
       [177.610618, 51.936713],
       [177.606529, 51.925069],
       [177.601005, 51.922254],
       [177.560513, 51.916364],
       [177.484313, 51.923413],
       [177.409536, 51.930821],
       [177.373934, 51.91976],
       [177.348816, 51.904469],
       [177.326781, 51.873636],
       [177.327179, 51.871049],
       [177.334229, 51.866769],
       [177.334017, 51.844444],
       [177.321687, 51.828543],
       [177.311768, 51.825971],
       [177.303314, 51.829458],
       [177.294035, 51.837301],
       [177.296018, 51.839866],
       [177.293424, 51.84561],
       [177.27337, 51.857123],
       [177.235523, 51.87326],
       [177.212422, 51.876431],
       [177.203996, 51.880531],
       [177.200423, 51.894746],
       [177.203323, 51.896562],
       [177.233904, 51.909624],
       [177.272695, 51.920054],
       [177.291312, 51.91943],
       [177.341518, 51.955016],
       [177.345577, 51.963005],
       [177.413484, 51.979724],
       [177.483712, 51.984877],
       [177.497441, 51.993328],
       [177.503441, 52.008829],
       [177.505747, 52.016374],
       [177.505319, 52.038768],
       [177.545604, 52.101091],
       [177.563396, 52.121959],
       [177.602673, 52.13732],
       [177.661607, 52.112746],
       [177.675952, 52.092167],
       [177.667256, 52.076274],
       [177.659451, 52.069439],
       [177.653614, 52.070323],
       [177.641864, 52.068316],
       [177.632555, 52.064844],
       [177.609087, 52.028518],
       [177.601645, 52.016377]]],
     [[[179.758993, 51.946595],
       [179.751525, 51.923933],
       [179.743012, 51.911749],
       [179.734772, 51.907606],
       [179.649484, 51.87367],
       [179.639077, 51.871931],
       [179.614364, 51.871772],
       [179.521868, 51.896765],
       [179.484634, 51.921268],
       [179.475569, 51.937456],
       [179.482464, 51.982834],
       [179.486565, 51.983959],
       [179.515025, 51.983751],
       [179.526743, 51.981164],
       [179.539223, 51.985178],
       [179.571049, 52.011111],
       [179.582857, 52.016841],
       [179.622283, 52.024975],
       [179.647641, 52.026259],
       [179.663327, 52.022941],
       [179.704433, 52.004877],
       [179.773922, 51.970693],
       [179.77847, 51.962217],
       [179.777158, 51.9587],
       [179.767251, 51.947572],
       [179.758993, 51.946595]]],
     [[[178.446964, 51.978222],
       [178.463385, 51.987849],
       [178.478586, 51.987549],
       [178.552612, 51.973968],
       [178.570619, 51.968064],
       [178.591597, 51.952652],
       [178.590245, 51.945457],
       [178.567447, 51.925939],
       [178.539395, 51.903246],
       [178.518861, 51.899759],
       [178.502493, 51.899644],
       [178.484831, 51.909898],
       [178.468045, 51.931635],
       [178.454664, 51.960501],
       [178.446964, 51.978222]]],
     [[[-175.680144, 51.96897],
       [-175.67264, 51.972471],
       [-175.669707, 51.972166],
       [-175.655056, 51.966651],
       [-175.652493, 51.964813],
       [-175.653194, 51.961669],
       [-175.717436, 51.933695],
       [-175.730011, 51.933817],
       [-175.747438, 51.9462],
       [-175.747836, 51.950655],
       [-175.742618, 51.966632],
       [-175.735477, 51.973331],
       [-175.726245, 51.975969],
       [-175.680144, 51.96897]]],
     [[[-176.018089, 52.020099],
       [-176.044001, 52.009331],
       [-176.032156, 51.993667],
       [-176.027546, 51.99163],
       [-176.021839, 51.984848],
       [-176.022663, 51.980621],
       [-176.027667, 51.975112],
       [-176.057085, 51.967825],
       [-176.079181, 51.968884],
       [-176.180356, 52.000426],
       [-176.185086, 52.005705],
       [-176.201935, 52.040212],
       [-176.211855, 52.065533],
       [-176.205324, 52.076246],
       [-176.173155, 52.102314],
       [-176.143914, 52.116097],
       [-176.058103, 52.106467],
       [-175.988653, 52.035509],
       [-175.999044, 52.025385],
       [-176.018089, 52.020099]]],
     [[[178.1176, 52.048612],
       [178.119144, 52.051659],
       [178.141695, 52.051034],
       [178.175781, 52.036777],
       [178.179962, 52.033247],
       [178.190963, 52.003546],
       [178.174473, 51.991684],
       [178.132547, 51.986982],
       [178.105874, 51.998357],
       [178.10273, 52.003927],
       [178.09461, 52.033294],
       [178.107266, 52.045744],
       [178.1176, 52.048612]]],
     [[[-174.301818, 52.278949],
       [-174.323471, 52.28399],
       [-174.346089, 52.285036],
       [-174.349404, 52.281336],
       [-174.368754, 52.280405],
       [-174.408277, 52.289872],
       [-174.451554, 52.305557],
       [-174.455979, 52.31369],
       [-174.45366, 52.319367],
       [-174.443132, 52.325654],
       [-174.432846, 52.328004],
       [-174.384199, 52.321139],
       [-174.367047, 52.314105],
       [-174.358624, 52.31419],
       [-174.340679, 52.322284],
       [-174.331065, 52.328465],
       [-174.3177, 52.344869],
       [-174.320813, 52.355726],
       [-174.330494, 52.366439],
       [-174.329818, 52.373548],
       [-174.324935, 52.378095],
       [-174.185347, 52.417788],
       [-174.155774, 52.416041],
       [-174.068248, 52.390331],
       [-174.016822, 52.348537],
       [-173.989415, 52.325275],
       [-173.985203, 52.3176],
       [-173.986421, 52.298565],
       [-173.987917, 52.295345],
       [-174.036222, 52.245011],
       [-174.060451, 52.225326],
       [-174.084042, 52.223677],
       [-174.106533, 52.228392],
       [-174.177679, 52.233638],
       [-174.182857, 52.232762],
       [-174.198624, 52.219244],
       [-174.200389, 52.211861],
       [-174.196836, 52.195856],
       [-174.1901, 52.19032],
       [-174.175044, 52.181835],
       [-174.135217, 52.168514],
       [-174.090169, 52.139119],
       [-174.082814, 52.132069],
       [-174.080677, 52.128026],
       [-174.0891, 52.107251],
       [-174.09447, 52.104274],
       [-174.102161, 52.104534],
       [-174.109089, 52.113117],
       [-174.11437, 52.117107],
       [-174.142262, 52.125452],
       [-174.206353, 52.116554],
       [-174.218469, 52.10488],
       [-174.302947, 52.111325],
       [-174.334424, 52.115198],
       [-174.348463, 52.109245],
       [-174.365667, 52.097238],
       [-174.382661, 52.081658],
       [-174.411255, 52.048757],
       [-174.45276, 52.061047],
       [-174.507816, 52.054955],
       [-174.508822, 52.048623],
       [-174.556278, 52.036733],
       [-174.580676, 52.040453],
       [-174.593635, 52.045247],
       [-174.615943, 52.032665],
       [-174.71461, 52.009863],
       [-174.736592, 52.007308],
       [-174.783189, 52.032293],
       [-174.885554, 52.043001],
       [-174.967907, 52.037203],
       [-175.000792, 52.028354],
       [-175.014748, 52.020584],
       [-175.014807, 52.007],
       [-175.09551, 52.000797],
       [-175.104889, 52.003548],
       [-175.155673, 52.011512],
       [-175.27485, 52.018619],
       [-175.292821, 52.01879],
       [-175.300639, 52.01497],
       [-175.302683, 52.011499],
       [-175.323322, 52.007488],
       [-175.341624, 52.021588],
       [-175.32707, 52.027032],
       [-175.1959, 52.051407],
       [-175.156744, 52.057642],
       [-175.132635, 52.059223],
       [-175.117115, 52.054499],
       [-175.11768, 52.053234],
       [-175.113721, 52.046308],
       [-175.092867, 52.034794],
       [-175.044344, 52.057519],
       [-174.995237, 52.061417],
       [-174.992309, 52.058603],
       [-174.980497, 52.061471],
       [-174.937497, 52.078334],
       [-174.922299, 52.09158],
       [-174.927549, 52.101415],
       [-174.920042, 52.109274],
       [-174.905409, 52.116509],
       [-174.866725, 52.103172],
       [-174.839715, 52.091338],
       [-174.786809, 52.091324],
       [-174.656294, 52.107962],
       [-174.604871, 52.122124],
       [-174.568402, 52.138426],
       [-174.55708, 52.153637],
       [-174.55467, 52.160405],
       [-174.527081, 52.17472],
       [-174.49688, 52.179151],
       [-174.465189, 52.180711],
       [-174.455707, 52.176802],
       [-174.424054, 52.169053],
       [-174.41529, 52.169376],
       [-174.404588, 52.18133],
       [-174.405464, 52.18356],
       [-174.457804, 52.202831],
       [-174.462962, 52.213031],
       [-174.453746, 52.218823],
       [-174.400139, 52.219053],
       [-174.360631, 52.212994],
       [-174.328599, 52.211647],
       [-174.299044, 52.21467],
       [-174.249848, 52.243694],
       [-174.255832, 52.274152],
       [-174.301818, 52.278949]]],
     [[[-173.602446, 52.153773],
       [-173.59056, 52.145393],
       [-173.514171, 52.108348],
       [-173.49702, 52.103641],
       [-173.467877, 52.116423],
       [-173.375229, 52.108228],
       [-173.375595, 52.106343],
       [-173.372574, 52.10275],
       [-173.357498, 52.096129],
       [-173.238295, 52.100443],
       [-173.173206, 52.109136],
       [-173.124504, 52.10942],
       [-173.119255, 52.107628],
       [-173.107373, 52.09928],
       [-173.06643, 52.09633],
       [-173.019588, 52.097881],
       [-172.958523, 52.093648],
       [-172.960751, 52.087018],
       [-173.033166, 52.074611],
       [-173.04754, 52.073329],
       [-173.107933, 52.078828],
       [-173.206837, 52.063532],
       [-173.313705, 52.058701],
       [-173.424178, 52.046298],
       [-173.511915, 52.031278],
       [-173.548385, 52.029308],
       [-173.612014, 52.051148],
       [-173.718, 52.063069],
       [-173.799574, 52.05365],
       [-173.816999, 52.048538],
       [-173.820692, 52.043312],
       [-173.831555, 52.040763],
       [-173.901075, 52.049435],
       [-173.937239, 52.057513],
       [-173.935561, 52.064731],
       [-173.97133, 52.099428],
       [-173.992274, 52.10059],
       [-174.001866, 52.097641],
       [-174.011338, 52.098862],
       [-174.035082, 52.112952],
       [-174.04675, 52.122403],
       [-174.052296, 52.1304],
       [-174.048451, 52.132911],
       [-174.036854, 52.135878],
       [-173.984245, 52.127855],
       [-173.890733, 52.12547],
       [-173.830906, 52.11045],
       [-173.824087, 52.105892],
       [-173.818277, 52.105363],
       [-173.802339, 52.10639],
       [-173.721266, 52.130207],
       [-173.654404, 52.146192],
       [-173.624771, 52.152213],
       [-173.602446, 52.153773]]],
     [[[177.355215, 52.071396],
       [177.332629, 52.075209],
       [177.321366, 52.080428],
       [177.30519, 52.090324],
       [177.2906, 52.10215],
       [177.283488, 52.114159],
       [177.28016, 52.127579],
       [177.281807, 52.135126],
       [177.288827, 52.14419],
       [177.306009, 52.156108],
       [177.329296, 52.166669],
       [177.340528, 52.170323],
       [177.367356, 52.175299],
       [177.383655, 52.174276],
       [177.408835, 52.167632],
       [177.425775, 52.157203],
       [177.437924, 52.146873],
       [177.445983, 52.13513],
       [177.446563, 52.114453],
       [177.443023, 52.105259],
       [177.435577, 52.097011],
       [177.428801, 52.091738],
       [177.402034, 52.079668],
       [177.386805, 52.075196],
       [177.355215, 52.071396]]],
     [[[-172.633153, 52.266215],
       [-172.620261, 52.298751],
       [-172.574154, 52.345323],
       [-172.568051, 52.34942],
       [-172.47461, 52.383763],
       [-172.448182, 52.391439],
       [-172.405243, 52.389442],
       [-172.326444, 52.366472],
       [-172.311427, 52.356456],
       [-172.302393, 52.342357],
       [-172.301445, 52.329951],
       [-172.313133, 52.320697],
       [-172.414419, 52.27674],
       [-172.528095, 52.254336],
       [-172.608935, 52.253014],
       [-172.616839, 52.255317],
       [-172.633153, 52.266215]]],
     [[[175.911286, 52.334831],
       [175.90277, 52.336823],
       [175.890684, 52.344514],
       [175.873317, 52.361138],
       [175.874353, 52.371004],
       [175.906734, 52.375651],
       [175.95056, 52.368357],
       [175.966521, 52.359728],
       [175.94418, 52.336437],
       [175.911286, 52.334831]]],
     [[[173.587554, 52.476785],
       [173.623883, 52.506948],
       [173.680586, 52.512878],
       [173.73627, 52.512422],
       [173.769503, 52.512072],
       [173.772799, 52.509905],
       [173.772402, 52.506877],
       [173.754979, 52.496127],
       [173.739385, 52.493257],
       [173.707741, 52.477377],
       [173.695719, 52.458935],
       [173.691601, 52.445935],
       [173.69386, 52.438694],
       [173.702252, 52.434804],
       [173.704299, 52.432192],
       [173.712323, 52.421033],
       [173.719161, 52.397703],
       [173.725696, 52.356579],
       [173.651293, 52.35637],
       [173.644793, 52.357598],
       [173.640825, 52.359428],
       [173.606767, 52.378249],
       [173.595397, 52.391893],
       [173.588794, 52.400973],
       [173.559891, 52.401165],
       [173.543778, 52.392666],
       [173.512162, 52.385035],
       [173.483843, 52.383485],
       [173.465442, 52.384621],
       [173.455586, 52.389656],
       [173.3955, 52.402647],
       [173.385704, 52.404072],
       [173.356927, 52.403873],
       [173.356103, 52.405563],
       [173.380058, 52.431843],
       [173.440111, 52.453664],
       [173.445696, 52.455031],
       [173.467698, 52.444473],
       [173.476243, 52.441909],
       [173.501022, 52.440926],
       [173.525161, 52.448137],
       [173.530105, 52.449968],
       [173.550002, 52.467067],
       [173.549605, 52.469989],
       [173.545302, 52.476],
       [173.555739, 52.479472],
       [173.587554, 52.476785]]],
     [[[-171.294554, 52.451105],
       [-171.299348, 52.448716],
       [-171.30417, 52.449952],
       [-171.313083, 52.472932],
       [-171.312658, 52.493502],
       [-171.3075, 52.501514],
       [-171.291387, 52.514813],
       [-171.277165, 52.522634],
       [-171.252053, 52.529954],
       [-171.196013, 52.500106],
       [-171.194639, 52.498039],
       [-171.208919, 52.469023],
       [-171.214565, 52.4633],
       [-171.236843, 52.450527],
       [-171.252316, 52.449466],
       [-171.294554, 52.451105]]],
     [[[-170.841936, 52.558171],
       [-170.833364, 52.599985],
       [-170.820641, 52.633091],
       [-170.817943, 52.636275],
       [-170.727717, 52.679978],
       [-170.671545, 52.698082],
       [-170.633753, 52.697469],
       [-170.579913, 52.682029],
       [-170.562734, 52.674785],
       [-170.559523, 52.667907],
       [-170.557324, 52.652105],
       [-170.56361, 52.640706],
       [-170.603862, 52.601732],
       [-170.635419, 52.595711],
       [-170.659041, 52.593811],
       [-170.665266, 52.59526],
       [-170.668075, 52.600677],
       [-170.674453, 52.603385],
       [-170.683854, 52.602485],
       [-170.696488, 52.598364],
       [-170.735824, 52.580823],
       [-170.767378, 52.558254],
       [-170.777143, 52.546664],
       [-170.788495, 52.54024],
       [-170.841936, 52.558171]]],
     [[[174.069186, 52.734888],
       [174.092073, 52.74206],
       [174.09665, 52.743485],
       [174.13315, 52.733786],
       [174.145326, 52.72855],
       [174.155764, 52.715375],
       [174.159252, 52.707387],
       [174.158146, 52.706059],
       [174.109409, 52.70856],
       [174.071842, 52.718295],
       [174.066195, 52.731042],
       [174.069186, 52.734888]]],
     [[[-170.170683, 52.784918],
       [-170.128714, 52.787425],
       [-170.061868, 52.773525],
       [-170.053443, 52.769076],
       [-170.052922, 52.758745],
       [-170.055363, 52.745887],
       [-170.070287, 52.724301],
       [-170.077734, 52.720416],
       [-170.114087, 52.716172],
       [-170.170646, 52.717359],
       [-170.184564, 52.721937],
       [-170.185684, 52.723007],
       [-170.170683, 52.784918]]],
     [[[174.004827, 52.719857],
       [173.9726, 52.729423],
       [173.96088, 52.738136],
       [173.952793, 52.747885],
       [173.954075, 52.75141],
       [173.983432, 52.749053],
       [174.003651, 52.744283],
       [174.021702, 52.730286],
       [174.004827, 52.719857]]],
     [[[173.932926, 52.746649],
       [173.930912, 52.750227],
       [173.925271, 52.752433],
       [173.894753, 52.75078],
       [173.875585, 52.761898],
       [173.861653, 52.773579],
       [173.867436, 52.775128],
       [173.881412, 52.775028],
       [173.897452, 52.77178],
       [173.931553, 52.758574],
       [173.940037, 52.75186],
       [173.932926, 52.746649]]],
     [[[172.763366, 52.823656],
       [172.76739, 52.848372],
       [172.766693, 52.862669],
       [172.754236, 52.87749],
       [172.640372, 52.925441],
       [172.585075, 52.921327],
       [172.5487, 52.914322],
       [172.512996, 52.905181],
       [172.469022, 52.911337],
       [172.461667, 52.92716],
       [172.629077, 53.001324],
       [172.643266, 53.004979],
       [172.746566, 53.01075],
       [173.107249, 52.993228],
       [173.121988, 52.990352],
       [173.13151, 52.987521],
       [173.159648, 52.974163],
       [173.172406, 52.960545],
       [173.211752, 52.939489],
       [173.235265, 52.943628],
       [173.251326, 52.944362],
       [173.295399, 52.926987],
       [173.421682, 52.845477],
       [173.42767, 52.830763],
       [173.423819, 52.828799],
       [173.413016, 52.827891],
       [173.302331, 52.823286],
       [173.284417, 52.827933],
       [173.22907, 52.856156],
       [173.224051, 52.856403],
       [173.204948, 52.848911],
       [173.187952, 52.8315],
       [173.173543, 52.804378],
       [173.166899, 52.795229],
       [173.142678, 52.786254],
       [173.134521, 52.784357],
       [173.11856, 52.78444],
       [172.998472, 52.796979],
       [172.903628, 52.761667],
       [172.809387, 52.78929],
       [172.763366, 52.823656]]],
     [[[-169.943521, 52.861099],
       [-169.905631, 52.85324],
       [-169.860214, 52.858377],
       [-169.818139, 52.878446],
       [-169.773504, 52.89445],
       [-169.749177, 52.893269],
       [-169.704736, 52.886272],
       [-169.666512, 52.864349],
       [-169.683482, 52.826618],
       [-169.704105, 52.793938],
       [-169.750136, 52.790576],
       [-169.838232, 52.81728],
       [-169.879866, 52.816088],
       [-169.886671, 52.808563],
       [-169.897078, 52.802131],
       [-169.927446, 52.792675],
       [-169.951498, 52.788615],
       [-169.962883, 52.789882],
       [-169.995422, 52.804676],
       [-170.012487, 52.831161],
       [-170.004218, 52.846743],
       [-169.990149, 52.856266],
       [-169.975345, 52.858884],
       [-169.943521, 52.861099]]],
     [[[-168.211705, 53.256184],
       [-168.226915, 53.254822],
       [-168.270744, 53.242811],
       [-168.296229, 53.227235],
       [-168.312376, 53.215231],
       [-168.341678, 53.185911],
       [-168.344468, 53.155215],
       [-168.37315, 53.128891],
       [-168.392379, 53.123609],
       [-168.412522, 53.110683],
       [-168.433734, 53.093934],
       [-168.442859, 53.085562],
       [-168.451161, 53.075131],
       [-168.457103, 53.055839],
       [-168.49749, 53.035403],
       [-168.527404, 53.028588],
       [-168.546059, 53.02958],
       [-168.553195, 53.033296],
       [-168.578895, 53.029915],
       [-168.587808, 53.027175],
       [-168.613964, 53.008776],
       [-168.625257, 52.998214],
       [-168.688468, 52.9664],
       [-168.741851, 52.951442],
       [-168.808854, 52.926102],
       [-168.907003, 52.884006],
       [-169.041338, 52.839348],
       [-169.102465, 52.824349],
       [-169.054243, 52.863266],
       [-169.038767, 52.869662],
       [-168.992403, 52.87344],
       [-168.97171, 52.878028],
       [-168.958983, 52.886048],
       [-168.861078, 52.968046],
       [-168.785236, 53.045038],
       [-168.763689, 53.070961],
       [-168.759691, 53.081461],
       [-168.768544, 53.093684],
       [-168.776176, 53.097766],
       [-168.789424, 53.10097],
       [-168.80203, 53.108226],
       [-168.804901, 53.120015],
       [-168.799469, 53.143794],
       [-168.792327, 53.15572],
       [-168.788756, 53.160749],
       [-168.763331, 53.182812],
       [-168.617143, 53.260985],
       [-168.539398, 53.25167],
       [-168.524991, 53.252311],
       [-168.501365, 53.25734],
       [-168.490957, 53.264009],
       [-168.445083, 53.26533],
       [-168.412851, 53.257859],
       [-168.366519, 53.252024],
       [-168.361758, 53.252253],
       [-168.343994, 53.26215],
       [-168.365388, 53.309105],
       [-168.371218, 53.316575],
       [-168.375674, 53.318291],
       [-168.406531, 53.346393],
       [-168.386886, 53.431496],
       [-168.342127, 53.475992],
       [-168.315847, 53.481729],
       [-168.295793, 53.489062],
       [-168.239572, 53.518491],
       [-168.238321, 53.521902],
       [-168.200443, 53.534079],
       [-168.14462, 53.545342],
       [-168.004624, 53.566053],
       [-167.981038, 53.561714],
       [-167.962723, 53.554069],
       [-167.960861, 53.55255],
       [-167.965714, 53.54344],
       [-167.965038, 53.538913],
       [-167.938981, 53.526907],
       [-167.901871, 53.520508],
       [-167.888901, 53.519691],
       [-167.816998, 53.517947],
       [-167.796866, 53.521113],
       [-167.791026, 53.521076],
       [-167.789164, 53.519329],
       [-167.786387, 53.513896],
       [-167.784099, 53.501048],
       [-167.788066, 53.492411],
       [-167.808117, 53.473861],
       [-167.843611, 53.453893],
       [-167.853225, 53.445469],
       [-167.858337, 53.43791],
       [-167.856837, 53.428609],
       [-167.851698, 53.421236],
       [-167.8448, 53.417497],
       [-167.83952, 53.410325],
       [-167.839887, 53.394432],
       [-167.842328, 53.386489],
       [-167.852217, 53.378294],
       [-167.872879, 53.36736],
       [-167.878128, 53.366902],
       [-167.959096, 53.341788],
       [-167.988487, 53.329578],
       [-168.009301, 53.317263],
       [-168.03976, 53.304276],
       [-168.158943, 53.26771],
       [-168.211705, 53.256184]]],
     [[[-169.996712, 52.891475],
       [-169.999094, 52.884034],
       [-170.002368, 52.880239],
       [-170.015514, 52.87026],
       [-170.050274, 52.857433],
       [-170.095331, 52.870851],
       [-170.113189, 52.891078],
       [-170.112853, 52.902043],
       [-170.092221, 52.919387],
       [-170.083985, 52.92364],
       [-170.04656, 52.923853],
       [-170.020493, 52.917171],
       [-170.002071, 52.910043],
       [-169.995982, 52.902378],
       [-169.996712, 52.891475]]],
     [[[-169.721744, 52.947117],
       [-169.741096, 52.951512],
       [-169.758008, 52.967246],
       [-169.760725, 52.971556],
       [-169.76274, 52.97805],
       [-169.745743, 53.02147],
       [-169.742538, 53.024072],
       [-169.698128, 53.033779],
       [-169.680033, 53.035075],
       [-169.66493, 53.023973],
       [-169.663576, 53.021258],
       [-169.666078, 52.997068],
       [-169.698274, 52.958267],
       [-169.721744, 52.947117]]],
     [[[-166.728918, 54.003111],
       [-166.67664, 54.017419],
       [-166.644627, 54.014495],
       [-166.636936, 54.012],
       [-166.619754, 54.001264],
       [-166.599947, 53.983695],
       [-166.587393, 53.959831],
       [-166.605438, 53.955354],
       [-166.621979, 53.953744],
       [-166.646786, 53.923785],
       [-166.640466, 53.912519],
       [-166.619003, 53.893514],
       [-166.597182, 53.88399],
       [-166.57509, 53.879236],
       [-166.560546, 53.878775],
       [-166.487847, 53.895448],
       [-166.443699, 53.909727],
       [-166.436526, 53.916151],
       [-166.435153, 53.920415],
       [-166.437083, 53.955644],
       [-166.373689, 54.01003],
       [-166.36746, 54.008903],
       [-166.357117, 54.002343],
       [-166.354614, 53.999039],
       [-166.354341, 53.995515],
       [-166.359925, 53.977136],
       [-166.319895, 53.960126],
       [-166.279407, 53.982532],
       [-166.264519, 53.97755],
       [-166.210964, 53.933557],
       [-166.208767, 53.92911],
       [-166.211207, 53.912334],
       [-166.236513, 53.881343],
       [-166.250935, 53.876851],
       [-166.320004, 53.869527],
       [-166.351999, 53.858532],
       [-166.389196, 53.832343],
       [-166.404896, 53.809345],
       [-166.434846, 53.798012],
       [-166.547438, 53.749404],
       [-166.552078, 53.728498],
       [-166.540531, 53.715926],
       [-166.469112, 53.735935],
       [-166.460324, 53.745838],
       [-166.420471, 53.762088],
       [-166.336768, 53.78709],
       [-166.303201, 53.791538],
       [-166.212603, 53.817127],
       [-166.214312, 53.82043],
       [-166.21233, 53.827769],
       [-166.198751, 53.8361],
       [-166.119922, 53.855048],
       [-166.113037, 53.853716],
       [-166.097565, 53.84399],
       [-166.094147, 53.8392],
       [-166.111317, 53.776856],
       [-166.166703, 53.733402],
       [-166.19906, 53.727328],
       [-166.262974, 53.70371],
       [-166.265182, 53.698248],
       [-166.274896, 53.687253],
       [-166.283267, 53.684219],
       [-166.444909, 53.640646],
       [-166.467583, 53.646574],
       [-166.532639, 53.630533],
       [-166.553983, 53.623448],
       [-166.581011, 53.530449],
       [-166.656234, 53.487119],
       [-166.662276, 53.485349],
       [-166.667921, 53.486027],
       [-166.712475, 53.498445],
       [-166.735039, 53.50664],
       [-166.743054, 53.51482],
       [-166.772655, 53.496371],
       [-166.789062, 53.4531],
       [-166.863119, 53.443878],
       [-166.878087, 53.429884],
       [-166.922674, 53.441136],
       [-166.959082, 53.455753],
       [-166.994329, 53.429201],
       [-167.036104, 53.449289],
       [-167.04821, 53.448844],
       [-167.050025, 53.433067],
       [-167.075386, 53.424979],
       [-167.112008, 53.416775],
       [-167.124277, 53.425534],
       [-167.134134, 53.426448],
       [-167.201432, 53.3979],
       [-167.291831, 53.364102],
       [-167.302982, 53.336911],
       [-167.308126, 53.33433],
       [-167.348653, 53.333262],
       [-167.386984, 53.340671],
       [-167.442804, 53.321015],
       [-167.466304, 53.295888],
       [-167.488215, 53.269121],
       [-167.51547, 53.267876],
       [-167.530884, 53.275659],
       [-167.539247, 53.277864],
       [-167.58918, 53.288698],
       [-167.598428, 53.288048],
       [-167.609903, 53.2853],
       [-167.622173, 53.250362],
       [-167.644179, 53.250842],
       [-167.798984, 53.284757],
       [-167.83509, 53.29962],
       [-167.851511, 53.308668],
       [-167.852333, 53.315599],
       [-167.790928, 53.33552],
       [-167.710446, 53.381326],
       [-167.694484, 53.388034],
       [-167.653113, 53.392276],
       [-167.622089, 53.385329],
       [-167.488252, 53.420001],
       [-167.474457, 53.431782],
       [-167.473328, 53.438001],
       [-167.457366, 53.442793],
       [-167.393985, 53.439752],
       [-167.373527, 53.432776],
       [-167.355624, 53.424498],
       [-167.332792, 53.433107],
       [-167.319143, 53.451317],
       [-167.30129, 53.466006],
       [-167.278827, 53.478565],
       [-167.267902, 53.478115],
       [-167.226182, 53.468692],
       [-167.217606, 53.465389],
       [-167.199966, 53.463039],
       [-167.193801, 53.467007],
       [-167.15852, 53.503747],
       [-167.102305, 53.515077],
       [-167.105816, 53.540507],
       [-167.131239, 53.547267],
       [-167.135695, 53.551227],
       [-167.16164, 53.605909],
       [-167.163196, 53.613813],
       [-167.159808, 53.617308],
       [-167.14043, 53.626968],
       [-167.107836, 53.633056],
       [-167.091377, 53.633438],
       [-167.084579, 53.626502],
       [-167.070082, 53.619857],
       [-167.062187, 53.620058],
       [-167.009635, 53.635344],
       [-167.008671, 53.64204],
       [-167.017863, 53.648607],
       [-167.030011, 53.653559],
       [-167.071823, 53.66556],
       [-167.067674, 53.687267],
       [-167.057695, 53.698864],
       [-167.041245, 53.707929],
       [-167.022385, 53.715467],
       [-166.999282, 53.71852],
       [-166.923324, 53.719719],
       [-166.894976, 53.717746],
       [-166.859022, 53.674439],
       [-166.861769, 53.659234],
       [-166.832725, 53.657376],
       [-166.805874, 53.665733],
       [-166.779991, 53.719126],
       [-166.787318, 53.734577],
       [-166.856491, 53.747301],
       [-166.942766, 53.769562],
       [-166.960681, 53.776841],
       [-166.975635, 53.775254],
       [-166.983294, 53.771348],
       [-166.992846, 53.762604],
       [-167.005778, 53.755446],
       [-167.016863, 53.754936],
       [-167.024981, 53.757241],
       [-167.075859, 53.786272],
       [-167.141966, 53.826932],
       [-167.140992, 53.866774],
       [-167.058168, 53.929778],
       [-167.031252, 53.945204],
       [-166.930452, 53.976091],
       [-166.879488, 53.988716],
       [-166.818635, 53.993198],
       [-166.751681, 54.01605],
       [-166.746095, 54.016936],
       [-166.742587, 54.015501],
       [-166.728918, 54.003111]]],
     [[[-169.553937, 56.608682],
       [-169.528659, 56.612181],
       [-169.507415, 56.610702],
       [-169.473138, 56.601741],
       [-169.47155, 56.598864],
       [-169.490133, 56.583482],
       [-169.568984, 56.540935],
       [-169.582624, 56.536939],
       [-169.640735, 56.542162],
       [-169.650135, 56.54423],
       [-169.657736, 56.547319],
       [-169.667749, 56.554535],
       [-169.672818, 56.560866],
       [-169.671324, 56.567328],
       [-169.675327, 56.578414],
       [-169.683639, 56.58334],
       [-169.75575, 56.591922],
       [-169.785692, 56.613245],
       [-169.789659, 56.618217],
       [-169.763506, 56.620739],
       [-169.679305, 56.611593],
       [-169.611548, 56.606924],
       [-169.553937, 56.608682]]],
     [[[-170.286318, 57.128169],
       [-170.290793, 57.145052],
       [-170.303963, 57.15491],
       [-170.32484, 57.156769],
       [-170.359817, 57.156118],
       [-170.421867, 57.161202],
       [-170.423548, 57.169327],
       [-170.42041, 57.19176],
       [-170.418919, 57.192844],
       [-170.402772, 57.201933],
       [-170.390121, 57.206248],
       [-170.33188, 57.217488],
       [-170.311707, 57.219122],
       [-170.291916, 57.212056],
       [-170.267664, 57.210649],
       [-170.239557, 57.214658],
       [-170.161647, 57.229656],
       [-170.150813, 57.223168],
       [-170.170848, 57.1811],
       [-170.286318, 57.128169]]]]},
   'id': '02016'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02020',
    'STATE': '02',
    'COUNTY': '020',
    'NAME': 'Anchorage',
    'LSAD': 'Muny',
    'CENSUSAREA': 1704.683},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-149.736395, 60.994692],
      [-149.739692, 61.016961],
      [-149.751943, 61.024072],
      [-149.784393, 61.038147],
      [-149.785126, 61.040798],
      [-149.805816, 61.058641],
      [-149.831922, 61.076197],
      [-149.857168, 61.07902],
      [-149.915666, 61.101428],
      [-149.9601, 61.115346],
      [-150.039304, 61.144291],
      [-150.065646, 61.151079],
      [-150.075451, 61.156269],
      [-150.068004, 61.166132],
      [-150.009941, 61.203637],
      [-149.987002, 61.222753],
      [-149.986576, 61.228323],
      [-149.897888, 61.267043],
      [-149.792423, 61.388896],
      [-149.359442, 61.483938],
      [-149.237556, 61.483144],
      [-149.187447, 61.425285],
      [-148.460007, 61.426972],
      [-148.479587, 61.165059],
      [-148.473461, 60.85063],
      [-148.746023, 60.84614],
      [-148.745578, 60.733881],
      [-149.042881, 60.734797],
      [-149.038568, 60.849342],
      [-149.188571, 60.905486],
      [-149.373299, 60.907624],
      [-149.736395, 60.994692]]]},
   'id': '02020'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02050',
    'STATE': '02',
    'COUNTY': '050',
    'NAME': 'Bethel',
    'LSAD': 'CA',
    'CENSUSAREA': 40570.004},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-173.116905, 60.516005],
       [-173.098092, 60.533367],
       [-173.098094, 60.573993],
       [-173.041847, 60.611497],
       [-172.999659, 60.611498],
       [-172.97153, 60.605249],
       [-172.915274, 60.527122],
       [-172.915273, 60.514621],
       [-172.895349, 60.49975],
       [-172.715261, 60.429864],
       [-172.706472, 60.425179],
       [-172.480536, 60.400184],
       [-172.352622, 60.381435],
       [-172.341399, 60.373145],
       [-172.333051, 60.364359],
       [-172.269754, 60.333887],
       [-172.254821, 60.334082],
       [-172.254821, 60.326466],
       [-172.291289, 60.321193],
       [-172.435476, 60.332653],
       [-172.491531, 60.334874],
       [-172.505544, 60.330428],
       [-172.519558, 60.323758],
       [-172.547585, 60.317088],
       [-172.589625, 60.314863],
       [-172.612982, 60.319309],
       [-172.622325, 60.330424],
       [-172.757794, 60.374881],
       [-172.811529, 60.406621],
       [-172.951477, 60.478649],
       [-172.959056, 60.479695],
       [-172.966515, 60.478167],
       [-172.990296, 60.478702],
       [-173.119005, 60.500067],
       [-173.120769, 60.51301],
       [-173.116905, 60.516005]]],
     [[[-165.721389, 60.16962],
       [-165.723168, 60.156603],
       [-165.71912, 60.153521],
       [-165.702411, 60.151285],
       [-165.697273, 60.153592],
       [-165.683507, 60.154221],
       [-165.675374, 60.14936],
       [-165.667863, 60.114676],
       [-165.671567, 60.096877],
       [-165.680612, 60.089962],
       [-165.684585, 60.055237],
       [-165.649318, 59.991837],
       [-165.588873, 59.966005],
       [-165.539367, 59.965175],
       [-165.534482, 59.951276],
       [-165.543456, 59.930376],
       [-165.550405, 59.920007],
       [-165.575815, 59.904672],
       [-165.695981, 59.893513],
       [-165.712875, 59.895364],
       [-165.717549, 59.899137],
       [-165.722458, 59.899813],
       [-165.751851, 59.899947],
       [-165.905471, 59.871937],
       [-166.010201, 59.847061],
       [-166.060952, 59.820508],
       [-166.072465, 59.805462],
       [-166.058096, 59.78711],
       [-166.042089, 59.776212],
       [-166.032277, 59.773729],
       [-166.030813, 59.7706],
       [-166.036947, 59.757859],
       [-166.062854, 59.748586],
       [-166.157071, 59.748886],
       [-166.18092, 59.763728],
       [-166.176669, 59.766495],
       [-166.17482, 59.770681],
       [-166.184234, 59.779432],
       [-166.203293, 59.791676],
       [-166.251528, 59.809807],
       [-166.381986, 59.849087],
       [-166.40729, 59.854604],
       [-166.439746, 59.857816],
       [-166.512223, 59.849939],
       [-166.583297, 59.848705],
       [-166.616849, 59.850711],
       [-166.621473, 59.856438],
       [-166.648076, 59.8711],
       [-166.6782, 59.881248],
       [-166.716563, 59.889011],
       [-166.764183, 59.892061],
       [-166.801634, 59.916321],
       [-166.86653, 59.949544],
       [-166.89233, 59.960507],
       [-166.995748, 59.993495],
       [-167.067602, 59.992295],
       [-167.111785, 59.989349],
       [-167.124867, 59.9917],
       [-167.133258, 59.994695],
       [-167.22021, 60.040133],
       [-167.247627, 60.058862],
       [-167.281357, 60.063892],
       [-167.310664, 60.064874],
       [-167.339109, 60.070159],
       [-167.342702, 60.072395],
       [-167.342885, 60.074979],
       [-167.33405, 60.088609],
       [-167.33386, 60.094065],
       [-167.343303, 60.123181],
       [-167.347866, 60.13114],
       [-167.362783, 60.147556],
       [-167.423053, 60.195072],
       [-167.421489, 60.205431],
       [-167.369927, 60.225496],
       [-167.312616, 60.238454],
       [-167.20194, 60.237822],
       [-167.105975, 60.232895],
       [-167.081935, 60.225765],
       [-167.04582, 60.219088],
       [-166.93797, 60.20587],
       [-166.909802, 60.206513],
       [-166.847438, 60.213592],
       [-166.812484, 60.22778],
       [-166.803469, 60.242802],
       [-166.809546, 60.259658],
       [-166.826169, 60.268644],
       [-166.834966, 60.271406],
       [-166.832877, 60.275449],
       [-166.814979, 60.286283],
       [-166.762522, 60.309837],
       [-166.738323, 60.314301],
       [-166.662112, 60.322993],
       [-166.608896, 60.32125],
       [-166.578305, 60.32185],
       [-166.569828, 60.325955],
       [-166.562081, 60.359022],
       [-166.493543, 60.392389],
       [-166.41457, 60.37187],
       [-166.408546, 60.365899],
       [-166.387184, 60.359671],
       [-166.366596, 60.358227],
       [-166.310655, 60.377611],
       [-166.200019, 60.393404],
       [-166.174906, 60.401003],
       [-166.171187, 60.428854],
       [-166.163203, 60.432641],
       [-166.135704, 60.42451],
       [-166.124379, 60.414253],
       [-166.124231, 60.409953],
       [-166.134927, 60.400129],
       [-166.123805, 60.378116],
       [-166.084791, 60.325288],
       [-166.012169, 60.317691],
       [-165.987336, 60.317833],
       [-165.927956, 60.321592],
       [-165.92464, 60.325249],
       [-165.923572, 60.330503],
       [-165.920794, 60.335398],
       [-165.916828, 60.338002],
       [-165.883458, 60.343902],
       [-165.786573, 60.326821],
       [-165.71451, 60.310496],
       [-165.697326, 60.297238],
       [-165.685751, 60.277564],
       [-165.686143, 60.267811],
       [-165.698339, 60.210676],
       [-165.708863, 60.189125],
       [-165.721389, 60.16962]]],
     [[[-160.534142, 61.947257],
       [-159.265098, 61.945564],
       [-159.26095, 62.032026],
       [-158.531113, 62.031708],
       [-158.532398, 62.118595],
       [-157.51702, 62.123543],
       [-157.074237, 62.129913],
       [-157.073592, 62.029567],
       [-155.107471, 62.029371],
       [-153.735846, 62.02937],
       [-153.740629, 62.121565],
       [-153.395401, 62.124776],
       [-153.39432, 62.209115],
       [-153.070317, 62.208517],
       [-153.067697, 62.295211],
       [-153.001262, 62.295331],
       [-153.001288, 62.106276],
       [-153.002181, 61.425686],
       [-153.469729, 61.428123],
       [-153.475316, 61.136887],
       [-153.430404, 61.13574],
       [-153.436195, 60.908538],
       [-154.422064, 60.906969],
       [-155.9611, 60.907602],
       [-157.168288, 60.912221],
       [-157.169511, 61.00017],
       [-157.522531, 61.000515],
       [-157.521885, 60.911337],
       [-157.700869, 60.911315],
       [-157.697905, 60.823585],
       [-157.880745, 60.824769],
       [-157.883552, 60.903711],
       [-158.944656, 60.903462],
       [-158.948931, 60.823175],
       [-159.014091, 60.823452],
       [-159.01592, 60.731938],
       [-159.182993, 60.731079],
       [-159.185163, 60.644578],
       [-159.367249, 60.644339],
       [-159.369629, 60.47113],
       [-159.432729, 60.471029],
       [-159.437007, 60.387176],
       [-159.613611, 60.3878],
       [-159.613392, 60.214585],
       [-159.78454, 60.213265],
       [-159.78689, 60.128139],
       [-159.850294, 60.128439],
       [-159.855289, 59.963691],
       [-160.015226, 59.958912],
       [-160.019425, 59.786831],
       [-160.248182, 59.784524],
       [-160.250662, 59.611298],
       [-160.42445, 59.611507],
       [-160.424977, 59.43591],
       [-160.481711, 59.436228],
       [-160.480547, 59.352217],
       [-160.650795, 59.349182],
       [-160.650275, 59.26223],
       [-160.820877, 59.261519],
       [-160.819137, 59.084859],
       [-160.875869, 59.084046],
       [-160.874299, 59.003658],
       [-161.034851, 59.003419],
       [-161.03452, 58.843894],
       [-161.094249, 58.821979],
       [-161.18338, 58.789276],
       [-161.337982, 58.742912],
       [-161.345396, 58.73545],
       [-161.372711, 58.707958],
       [-161.372314, 58.666172],
       [-161.521347, 58.633141],
       [-161.550537, 58.61116],
       [-161.62645, 58.602581],
       [-161.682907, 58.564671],
       [-161.751999, 58.551842],
       [-161.766296, 58.599224],
       [-161.871216, 58.637478],
       [-162.066269, 58.6208],
       [-162.171722, 58.648441],
       [-161.994644, 58.688828],
       [-161.939163, 58.655613],
       [-161.877213, 58.666138],
       [-161.859055, 58.708637],
       [-161.769501, 58.774937],
       [-161.756622, 58.826477],
       [-161.783981, 58.969421],
       [-161.828171, 59.062702],
       [-161.981964, 59.150997],
       [-162.048584, 59.254177],
       [-162.018982, 59.292278],
       [-161.942993, 59.263828],
       [-161.956528, 59.361771],
       [-161.904053, 59.387341],
       [-161.837936, 59.423836],
       [-161.828125, 59.428188],
       [-161.790375, 59.468197],
       [-161.738312, 59.46701],
       [-161.70253, 59.490906],
       [-161.75798, 59.557152],
       [-161.854752, 59.646214],
       [-161.911163, 59.741741],
       [-162.017059, 59.829426],
       [-162.092361, 59.881104],
       [-162.100708, 59.944675],
       [-162.10856, 59.953861],
       [-162.121072, 59.965241],
       [-162.143049, 59.967506],
       [-162.171759, 59.984163],
       [-162.190616, 60.00203],
       [-162.207225, 60.021834],
       [-162.228371, 60.056313],
       [-162.234642, 60.077333],
       [-162.234043, 60.091345],
       [-162.231426, 60.095297],
       [-162.220054, 60.101078],
       [-162.202141, 60.11645],
       [-162.186148, 60.149605],
       [-162.188441, 60.156509],
       [-162.216366, 60.17419],
       [-162.239267, 60.1801],
       [-162.252564, 60.178623],
       [-162.258105, 60.172713],
       [-162.257318, 60.163353],
       [-162.258328, 60.157939],
       [-162.287089, 60.122173],
       [-162.29385, 60.11658],
       [-162.30109, 60.112146],
       [-162.316922, 60.10759],
       [-162.321481, 60.10797],
       [-162.360185, 60.14736],
       [-162.371131, 60.169019],
       [-162.37187, 60.173451],
       [-162.371032, 60.178616],
       [-162.40227, 60.186425],
       [-162.426344, 60.185331],
       [-162.445727, 60.176448],
       [-162.447904, 60.17048],
       [-162.463026, 60.15302],
       [-162.476214, 60.145536],
       [-162.484234, 60.137964],
       [-162.492346, 60.121804],
       [-162.494327, 60.110675],
       [-162.481175, 60.087544],
       [-162.476759, 60.04769],
       [-162.503647, 59.99923],
       [-162.530118, 59.99011],
       [-162.585518, 59.97723],
       [-162.622569, 59.971809],
       [-162.644231, 59.972954],
       [-162.682717, 59.979432],
       [-162.738592, 59.976321],
       [-162.740059, 59.968797],
       [-162.748554, 59.962664],
       [-162.760007, 59.958013],
       [-162.828585, 59.939142],
       [-162.90726, 59.923682],
       [-162.974977, 59.906443],
       [-163.033128, 59.884135],
       [-163.109595, 59.861633],
       [-163.172633, 59.845058],
       [-163.349027, 59.81989],
       [-163.38767, 59.81588],
       [-163.559148, 59.801391],
       [-163.662607, 59.79571],
       [-163.704795, 59.794805],
       [-163.772229, 59.795624],
       [-163.930798, 59.803853],
       [-164.079837, 59.828034],
       [-164.115117, 59.836688],
       [-164.133393, 59.845612],
       [-164.160319, 59.864679],
       [-164.201811, 59.916119],
       [-164.208475, 59.934461],
       [-164.209843, 59.942874],
       [-164.208306, 59.949046],
       [-164.198545, 59.955109],
       [-164.178705, 59.96181],
       [-164.161024, 59.964076],
       [-164.12543, 59.964626],
       [-164.11508, 59.973166],
       [-164.13181, 59.991177],
       [-164.1916, 60.024496],
       [-164.302968, 60.054233],
       [-164.336111, 60.055527],
       [-164.385471, 60.07719],
       [-164.461194, 60.137824],
       [-164.498556, 60.170546],
       [-164.493861, 60.177397],
       [-164.494317, 60.184833],
       [-164.505677, 60.194304],
       [-164.517647, 60.199493],
       [-164.541699, 60.205279],
       [-164.558343, 60.207042],
       [-164.59607, 60.222874],
       [-164.619501, 60.234938],
       [-164.634362, 60.24298],
       [-164.646332, 60.253303],
       [-164.651996, 60.262745],
       [-164.653098, 60.267902],
       [-164.698889, 60.296298],
       [-164.72657, 60.291475],
       [-164.777233, 60.293833],
       [-164.850355, 60.303615],
       [-164.899296, 60.316787],
       [-164.962678, 60.33966],
       [-165.005576, 60.359812],
       [-165.057585, 60.386287],
       [-165.129403, 60.433707],
       [-165.132893, 60.438867],
       [-165.124792, 60.449191],
       [-165.120728, 60.451196],
       [-165.069693, 60.460893],
       [-165.04907, 60.461516],
       [-165.015155, 60.471414],
       [-164.99787, 60.480459],
       [-164.961439, 60.508391],
       [-164.956788, 60.527837],
       [-164.960843, 60.533845],
       [-164.965488, 60.536701],
       [-164.97128, 60.539558],
       [-164.986952, 60.542406],
       [-165.05744, 60.544631],
       [-165.190449, 60.498001],
       [-165.244442, 60.496298],
       [-165.362975, 60.506866],
       [-165.377559, 60.513164],
       [-165.405071, 60.53465],
       [-165.420349, 60.550692],
       [-165.419788, 60.552418],
       [-165.415193, 60.55816],
       [-165.381052, 60.577987],
       [-165.367676, 60.581158],
       [-165.346721, 60.580603],
       [-165.312937, 60.576313],
       [-165.289651, 60.575755],
       [-165.268717, 60.579488],
       [-165.178617, 60.623927],
       [-165.170458, 60.629091],
       [-165.147184, 60.65116],
       [-165.063148, 60.688645],
       [-165.052642, 60.690068],
       [-165.0433, 60.687468],
       [-165.027535, 60.686008],
       [-164.991665, 60.69884],
       [-164.97125, 60.711434],
       [-164.966591, 60.717438],
       [-164.96541, 60.724306],
       [-164.971839, 60.72973],
       [-165.010452, 60.744789],
       [-165.023904, 60.753128],
       [-165.032074, 60.760022],
       [-165.040843, 60.77266],
       [-165.042584, 60.78443],
       [-165.037889, 60.78901],
       [-165.032615, 60.786704],
       [-165.020309, 60.785539],
       [-164.977663, 60.79036],
       [-164.944914, 60.800379],
       [-164.92418, 60.809331],
       [-164.939313, 60.823463],
       [-165.009703, 60.81506],
       [-165.02143, 60.815086],
       [-165.02962, 60.826001],
       [-165.030183, 60.83805],
       [-165.003679, 60.87558],
       [-164.945958, 60.92106],
       [-164.939496, 60.924774],
       [-164.925994, 60.925063],
       [-164.917542, 60.928144],
       [-164.903903, 60.942213],
       [-164.921256, 60.946509],
       [-164.940065, 60.945369],
       [-165.007096, 60.922058],
       [-165.03204, 60.903986],
       [-165.016941, 60.891071],
       [-165.080907, 60.860224],
       [-165.132488, 60.850145],
       [-165.176774, 60.847149],
       [-165.177531, 60.858865],
       [-165.22348, 60.89645],
       [-165.216942, 60.914322],
       [-165.157111, 60.917363],
       [-164.797619, 60.982487],
       [-164.616585, 60.979049],
       [-164.529911, 60.940796],
       [-164.234986, 60.988241],
       [-164.154702, 61.022625],
       [-164.211781, 61.082262],
       [-164.201874, 61.151613],
       [-164.121482, 61.127],
       [-163.94742, 61.205621],
       [-163.99276, 61.371763],
       [-163.541623, 61.349559],
       [-163.531412, 61.401454],
       [-163.431258, 61.484107],
       [-163.171354, 61.449071],
       [-163.061999, 61.479931],
       [-162.847199, 61.498736],
       [-162.75398, 61.542666],
       [-162.505761, 61.556426],
       [-162.476189, 61.503959],
       [-162.328294, 61.518376],
       [-162.013438, 61.477057],
       [-161.885286, 61.48281],
       [-161.697058, 61.530087],
       [-161.449611, 61.568838],
       [-161.126812, 61.59954],
       [-160.953961, 61.685669],
       [-160.775244, 61.738527],
       [-160.597733, 61.760156],
       [-160.35014, 61.819071],
       [-160.18666, 61.831693],
       [-160.469477, 61.869348],
       [-160.534142, 61.947257]]]]},
   'id': '02050'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02060',
    'STATE': '02',
    'COUNTY': '060',
    'NAME': 'Bristol Bay',
    'LSAD': 'Borough',
    'CENSUSAREA': 503.843},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-156.985833, 58.888654],
      [-156.318135, 58.894948],
      [-156.317671, 58.60961],
      [-157.267437, 58.609794],
      [-157.251462, 58.620786],
      [-157.178834, 58.66044],
      [-157.077914, 58.708103],
      [-157.061928, 58.726102],
      [-157.008226, 58.817139],
      [-157.003401, 58.836822],
      [-157.003607, 58.839306],
      [-157.010984, 58.8484],
      [-157.016088, 58.86349],
      [-157.012392, 58.875889],
      [-156.985833, 58.888654]]]},
   'id': '02060'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02068',
    'STATE': '02',
    'COUNTY': '068',
    'NAME': 'Denali',
    'LSAD': 'Borough',
    'CENSUSAREA': 12751.411},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-153.001339, 62.72744],
      [-152.434247, 63.169794],
      [-152.434625, 63.305936],
      [-152.812007, 63.351232],
      [-152.85343, 63.65171],
      [-152.241918, 63.656679],
      [-152.233557, 63.823684],
      [-152.055519, 63.823679],
      [-152.047377, 64.000576],
      [-151.825058, 64.005365],
      [-151.790558, 64.08229],
      [-151.579286, 64.08538],
      [-151.525111, 64.032465],
      [-151.301289, 64.009971],
      [-151.136195, 64.133084],
      [-150.749736, 64.365138],
      [-149.667993, 64.357813],
      [-149.119968, 64.358796],
      [-149.120704, 64.343615],
      [-147.995157, 64.341691],
      [-147.761557, 64.257854],
      [-147.003185, 64.258928],
      [-146.972014, 63.911791],
      [-146.975489, 63.479746],
      [-148.032727, 63.469757],
      [-148.035867, 63.330788],
      [-149.506984, 63.332164],
      [-151.387904, 62.910327],
      [-151.888963, 62.795348],
      [-151.893149, 62.722992],
      [-153.001339, 62.72744]]]},
   'id': '02068'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02070',
    'STATE': '02',
    'COUNTY': '070',
    'NAME': 'Dillingham',
    'LSAD': 'CA',
    'CENSUSAREA': 18568.778},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-155.9611, 60.907602],
      [-155.953624, 60.106238],
      [-155.95585, 59.677305],
      [-156.12205, 59.675185],
      [-156.123307, 59.588205],
      [-156.464798, 59.589388],
      [-156.464896, 59.502988],
      [-156.634489, 59.503988],
      [-156.635005, 59.415108],
      [-156.731184, 59.41617],
      [-156.729373, 59.328803],
      [-157.073256, 59.331538],
      [-157.074194, 59.244404],
      [-157.244151, 59.246208],
      [-157.158008, 58.860227],
      [-157.116866, 58.867533],
      [-157.189554, 58.847724],
      [-157.200998, 58.845012],
      [-157.21571, 58.841526],
      [-157.241396, 58.837558],
      [-157.259663, 58.835665],
      [-157.275451, 58.836136],
      [-157.353132, 58.817729],
      [-157.429531, 58.791071],
      [-157.484062, 58.785962],
      [-157.532654, 58.772638],
      [-157.537543, 58.768542],
      [-157.542326, 58.760962],
      [-157.550603, 58.754514],
      [-157.696472, 58.729975],
      [-157.721786, 58.723212],
      [-157.753583, 58.711924],
      [-157.799597, 58.69559],
      [-157.855396, 58.678277],
      [-158.001016, 58.642893],
      [-158.036593, 58.634248],
      [-158.101646, 58.62109],
      [-158.140307, 58.61502],
      [-158.190283, 58.61371],
      [-158.213861, 58.615828],
      [-158.232276, 58.619902],
      [-158.273036, 58.63347],
      [-158.297189, 58.643147],
      [-158.327038, 58.659835],
      [-158.332093, 58.665313],
      [-158.33286, 58.669274],
      [-158.330216, 58.675043],
      [-158.332394, 58.686814],
      [-158.343545, 58.713634],
      [-158.351481, 58.727693],
      [-158.376873, 58.748043],
      [-158.400475, 58.761182],
      [-158.423828, 58.769847],
      [-158.45521, 58.776972],
      [-158.512547, 58.78311],
      [-158.538516, 58.788394],
      [-158.550626, 58.792915],
      [-158.564833, 58.802715],
      [-158.566397, 58.807137],
      [-158.56587, 58.815429],
      [-158.559499, 58.841819],
      [-158.559132, 58.860776],
      [-158.565718, 58.875828],
      [-158.598645, 58.90123],
      [-158.619684, 58.911048],
      [-158.717436, 58.872462],
      [-158.729581, 58.871218],
      [-158.745305, 58.874098],
      [-158.767748, 58.864264],
      [-158.789632, 58.814257],
      [-158.790786, 58.808424],
      [-158.790378, 58.804712],
      [-158.782365, 58.791157],
      [-158.774626, 58.778593],
      [-158.7698, 58.774141],
      [-158.771246, 58.765109],
      [-158.784886, 58.747739],
      [-158.800959, 58.732842],
      [-158.812116, 58.727845],
      [-158.827105, 58.724495],
      [-158.848225, 58.722736],
      [-158.861207, 58.69558],
      [-158.827852, 58.626432],
      [-158.769131, 58.54865],
      [-158.721173, 58.497971],
      [-158.704052, 58.482759],
      [-158.795316, 58.408032],
      [-158.830598, 58.397095],
      [-158.880927, 58.39067],
      [-158.896067, 58.390065],
      [-158.944154, 58.396885],
      [-159.046105, 58.417466],
      [-159.063346, 58.423139],
      [-159.080496, 58.444256],
      [-159.187347, 58.555609],
      [-159.24229, 58.619067],
      [-159.357625, 58.73452],
      [-159.390664, 58.762362],
      [-159.450831, 58.797736],
      [-159.501768, 58.824304],
      [-159.532347, 58.833609],
      [-159.556355, 58.837414],
      [-159.580287, 58.840691],
      [-159.643549, 58.845063],
      [-159.601899, 58.884671],
      [-159.589811, 58.890359],
      [-159.586966, 58.900314],
      [-159.594788, 58.912402],
      [-159.60261, 58.920935],
      [-159.61612, 58.931601],
      [-159.64243, 58.938712],
      [-159.657362, 58.938712],
      [-159.691493, 58.931601],
      [-159.712114, 58.929468],
      [-159.723491, 58.932312],
      [-159.732932, 58.930739],
      [-159.753754, 58.855724],
      [-159.808777, 58.861542],
      [-159.792923, 58.823971],
      [-159.806305, 58.805595],
      [-159.908386, 58.779903],
      [-159.995667, 58.848301],
      [-159.985352, 58.870464],
      [-160.054047, 58.887001],
      [-160.093109, 58.860798],
      [-160.150528, 58.866062],
      [-160.15448, 58.916874],
      [-160.232788, 58.901127],
      [-160.286346, 58.945007],
      [-160.322922, 58.953953],
      [-160.256592, 58.99448],
      [-160.31778, 59.070477],
      [-160.476578, 59.026047],
      [-160.641785, 58.964489],
      [-160.753067, 58.910431],
      [-160.835358, 58.823494],
      [-160.855194, 58.882523],
      [-160.999741, 58.856655],
      [-161.03452, 58.843894],
      [-161.034851, 59.003419],
      [-160.874299, 59.003658],
      [-160.875869, 59.084046],
      [-160.819137, 59.084859],
      [-160.820877, 59.261519],
      [-160.650275, 59.26223],
      [-160.650795, 59.349182],
      [-160.480547, 59.352217],
      [-160.481711, 59.436228],
      [-160.424977, 59.43591],
      [-160.42445, 59.611507],
      [-160.250662, 59.611298],
      [-160.248182, 59.784524],
      [-160.019425, 59.786831],
      [-160.015226, 59.958912],
      [-159.855289, 59.963691],
      [-159.850294, 60.128439],
      [-159.78689, 60.128139],
      [-159.78454, 60.213265],
      [-159.613392, 60.214585],
      [-159.613611, 60.3878],
      [-159.437007, 60.387176],
      [-159.432729, 60.471029],
      [-159.369629, 60.47113],
      [-159.367249, 60.644339],
      [-159.185163, 60.644578],
      [-159.182993, 60.731079],
      [-159.01592, 60.731938],
      [-159.014091, 60.823452],
      [-158.948931, 60.823175],
      [-158.944656, 60.903462],
      [-157.883552, 60.903711],
      [-157.880745, 60.824769],
      [-157.697905, 60.823585],
      [-157.700869, 60.911315],
      [-157.521885, 60.911337],
      [-157.522531, 61.000515],
      [-157.169511, 61.00017],
      [-157.168288, 60.912221],
      [-155.9611, 60.907602]]]},
   'id': '02070'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02090',
    'STATE': '02',
    'COUNTY': '090',
    'NAME': 'Fairbanks North Star',
    'LSAD': 'Borough',
    'CENSUSAREA': 7338.209},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-147.995157, 64.341691],
      [-148.229784, 64.436621],
      [-148.242175, 64.483426],
      [-148.380509, 64.520562],
      [-148.441058, 64.577791],
      [-148.65237, 64.591053],
      [-148.642697, 64.865694],
      [-148.663844, 65.211355],
      [-147.550245, 65.211023],
      [-147.334764, 65.273291],
      [-147.017089, 65.290432],
      [-146.919725, 65.27297],
      [-146.568819, 65.344746],
      [-146.490362, 65.386878],
      [-146.192406, 65.454475],
      [-146.119758, 65.405823],
      [-145.994261, 65.406031],
      [-146.13753, 65.309851],
      [-146.078123, 65.245244],
      [-145.873843, 65.214026],
      [-145.615545, 65.14407],
      [-145.749681, 65.098233],
      [-145.646437, 65.033682],
      [-145.41748, 65.084836],
      [-145.209906, 65.072978],
      [-144.891387, 65.137197],
      [-144.445443, 65.062319],
      [-144.24719, 65.118774],
      [-143.977969, 65.119043],
      [-143.884795, 65.090281],
      [-144.105524, 65.015542],
      [-143.992045, 64.977011],
      [-144.120089, 64.798317],
      [-144.061159, 64.683442],
      [-144.04653, 64.666771],
      [-146.227064, 64.363752],
      [-146.35735, 64.278453],
      [-147.003185, 64.258928],
      [-147.761557, 64.257854],
      [-147.995157, 64.341691]]]},
   'id': '02090'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02100',
    'STATE': '02',
    'COUNTY': '100',
    'NAME': 'Haines',
    'LSAD': 'Borough',
    'CENSUSAREA': 2318.6},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-135.219128, 58.974972],
      [-135.175756, 58.973868],
      [-135.180116, 58.997871],
      [-135.208585, 59.076824],
      [-135.238267, 59.130134],
      [-135.283964, 59.192532],
      [-135.368331, 59.263275],
      [-135.430331, 59.3272],
      [-135.436438, 59.315791],
      [-135.444526, 59.277689],
      [-135.429601, 59.242722],
      [-135.403687, 59.222767],
      [-135.36406, 59.211403],
      [-135.342254, 59.177825],
      [-135.329458, 59.1527],
      [-135.377826, 59.099262],
      [-135.382354, 59.060749],
      [-135.382641, 59.033366],
      [-135.339375, 59.017667],
      [-135.326711, 59.011469],
      [-135.322604, 59.007812],
      [-135.297293, 58.95986],
      [-135.298627, 58.919262],
      [-135.305907, 58.90134],
      [-135.322622, 58.900661],
      [-135.339948, 58.888955],
      [-135.284657, 58.818114],
      [-135.274203, 58.813122],
      [-135.248985, 58.790878],
      [-135.2432, 58.783112],
      [-135.233878, 58.735487],
      [-135.142322, 58.61637],
      [-135.135843, 58.588225],
      [-135.137516, 58.577835],
      [-135.142161, 58.577107],
      [-135.145521, 58.578332],
      [-135.153827, 58.586626],
      [-135.159062, 58.595525],
      [-135.186357, 58.59777],
      [-135.190544, 58.592417],
      [-135.189368, 58.576244],
      [-135.165861, 58.546605],
      [-135.132273, 58.496536],
      [-135.088983, 58.423022],
      [-135.058071, 58.349447],
      [-135.049062, 58.309295],
      [-135.053488, 58.290498],
      [-135.056552, 58.288699],
      [-135.060452, 58.290338],
      [-135.069775, 58.302694],
      [-135.095814, 58.297233],
      [-135.10121, 58.292607],
      [-135.1077, 58.265034],
      [-135.099106, 58.245096],
      [-135.056227, 58.189884],
      [-135.073269, 58.190575],
      [-135.087872, 58.200073],
      [-135.112868, 58.201553],
      [-135.159055, 58.210178],
      [-135.220281, 58.235584],
      [-135.227736, 58.2369],
      [-135.246709, 58.236368],
      [-135.277198, 58.233634],
      [-135.2877, 58.234933],
      [-135.306507, 58.242916],
      [-135.344868, 58.270795],
      [-135.39826, 58.327689],
      [-135.408059, 58.342999],
      [-135.433061, 58.399899],
      [-135.447381, 58.399891],
      [-135.496814, 58.498602],
      [-135.318523, 58.500523],
      [-135.413387, 58.584665],
      [-135.401945, 58.616146],
      [-135.52815, 58.655985],
      [-135.548348, 58.698345],
      [-135.757086, 58.742314],
      [-135.682038, 58.85819],
      [-135.522232, 58.8894],
      [-135.604265, 58.909481],
      [-135.585301, 58.986033],
      [-135.688248, 59.016726],
      [-135.701868, 59.104076],
      [-135.892056, 59.172783],
      [-136.053534, 59.177538],
      [-136.122285, 59.207775],
      [-136.36885, 59.232652],
      [-136.486609, 59.261108],
      [-136.466815, 59.284252],
      [-136.472941, 59.421683],
      [-136.365825, 59.448008],
      [-136.358141, 59.449799],
      [-136.301846, 59.464128],
      [-136.234229, 59.524731],
      [-136.23734, 59.558734],
      [-136.225748, 59.604573],
      [-136.190352, 59.639854],
      [-136.005158, 59.65816],
      [-135.854166, 59.691846],
      [-135.72246, 59.729526],
      [-135.37582, 59.340621],
      [-135.029245, 59.345364],
      [-135.00518, 59.357217],
      [-134.992117, 59.330695],
      [-134.961972, 59.280376],
      [-134.766204, 59.23143],
      [-134.681924, 59.190843],
      [-134.566689, 59.128278],
      [-134.481241, 59.128071],
      [-134.389798, 59.032673],
      [-134.383637, 59.001867],
      [-134.369945, 58.971745],
      [-134.363773, 58.963891],
      [-135.17576, 58.973867],
      [-135.219128, 58.974972]]]},
   'id': '02100'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02105',
    'STATE': '02',
    'COUNTY': '105',
    'NAME': 'Hoonah-Angoon',
    'LSAD': 'CA',
    'CENSUSAREA': 7524.915},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-134.713987, 58.220748],
       [-134.77272, 58.164862],
       [-134.76194, 58.07809],
       [-134.672702, 58.027243],
       [-134.553923, 58.053616],
       [-134.531804, 58.096726],
       [-134.177467, 58.15964],
       [-134.166332, 58.132558],
       [-134.167257, 58.128577],
       [-134.174352, 58.125284],
       [-134.192724, 58.107685],
       [-134.18937, 58.083444],
       [-134.183983, 58.077295],
       [-134.169743, 58.066845],
       [-134.138231, 58.047103],
       [-134.098652, 58.018748],
       [-134.091885, 58.010777],
       [-134.087461, 58.001685],
       [-134.087572, 57.996475],
       [-134.101549, 57.988716],
       [-134.101125, 57.98407],
       [-134.089575, 57.974357],
       [-134.068949, 57.961083],
       [-134.016873, 57.930006],
       [-133.999948, 57.91481],
       [-133.99634, 57.904167],
       [-133.995977, 57.895632],
       [-133.963791, 57.854628],
       [-133.934735, 57.837626],
       [-133.904874, 57.807406],
       [-133.902695, 57.797797],
       [-133.903854, 57.794818],
       [-133.908085, 57.79167],
       [-133.90989, 57.780628],
       [-133.896846, 57.685524],
       [-133.868134, 57.660137],
       [-133.837424, 57.638486],
       [-133.832895, 57.635733],
       [-133.821673, 57.633887],
       [-133.817662, 57.629764],
       [-133.808285, 57.609604],
       [-133.806003, 57.583457],
       [-133.807133, 57.57877],
       [-133.81164, 57.572365],
       [-133.8176, 57.568353],
       [-133.840838, 57.576865],
       [-133.859635, 57.605325],
       [-133.85801, 57.61694],
       [-133.863112, 57.623701],
       [-133.911329, 57.663562],
       [-133.962582, 57.689887],
       [-133.970087, 57.695342],
       [-133.994964, 57.719821],
       [-134.010728, 57.759392],
       [-134.013144, 57.789393],
       [-134.03082, 57.818646],
       [-134.061833, 57.829808],
       [-134.098628, 57.85055],
       [-134.121337, 57.871236],
       [-134.11921, 57.872917],
       [-134.121904, 57.88252],
       [-134.126105, 57.89026],
       [-134.132146, 57.896189],
       [-134.151127, 57.903209],
       [-134.176606, 57.909725],
       [-134.202353, 57.90633],
       [-134.206874, 57.895901],
       [-134.16312, 57.848669],
       [-134.112948, 57.809263],
       [-134.105408, 57.795974],
       [-134.099782, 57.780261],
       [-134.100899, 57.776779],
       [-134.146342, 57.760258],
       [-134.1277, 57.739216],
       [-134.116097, 57.727582],
       [-134.020169, 57.656734],
       [-134.013367, 57.655898],
       [-133.993974, 57.649095],
       [-133.958454, 57.629537],
       [-133.935976, 57.614414],
       [-133.934361, 57.601765],
       [-133.945156, 57.569841],
       [-133.943417, 57.561555],
       [-133.933216, 57.54445],
       [-133.920557, 57.530088],
       [-133.901074, 57.517219],
       [-133.886269, 57.504999],
       [-133.857368, 57.463964],
       [-133.927539, 57.46957],
       [-133.925527, 57.45665],
       [-133.870327, 57.381298],
       [-133.866931, 57.367869],
       [-133.867279, 57.36206],
       [-133.870657, 57.358287],
       [-133.962897, 57.305425],
       [-133.968495, 57.303937],
       [-133.983501, 57.302838],
       [-134.008394, 57.317522],
       [-134.034563, 57.327638],
       [-134.055618, 57.330194],
       [-134.094891, 57.326401],
       [-134.100587, 57.321738],
       [-134.084374, 57.303963],
       [-134.080495, 57.297678],
       [-134.110315, 57.249948],
       [-134.15539, 57.208003],
       [-134.193629, 57.184879],
       [-134.29276, 57.137049],
       [-134.302721, 57.136562],
       [-134.349602, 57.124638],
       [-134.378359, 57.115016],
       [-134.370797, 57.099924],
       [-134.386052, 57.087392],
       [-134.481167, 57.046006],
       [-134.484288, 57.036481],
       [-134.497718, 57.031194],
       [-134.565687, 57.023737],
       [-134.601407, 57.033812],
       [-134.634565, 57.109863],
       [-134.646773, 57.226327],
       [-134.640169, 57.239852],
       [-134.605032, 57.273],
       [-134.570954, 57.294624],
       [-134.517279, 57.314567],
       [-134.543385, 57.337414],
       [-134.559794, 57.336138],
       [-134.574114, 57.341172],
       [-134.575492, 57.343694],
       [-134.578511, 57.400291],
       [-134.55554, 57.407428],
       [-134.527594, 57.405331],
       [-134.525997, 57.397845],
       [-134.527759, 57.39394],
       [-134.527873, 57.389874],
       [-134.486023, 57.372492],
       [-134.47724, 57.374401],
       [-134.464032, 57.392184],
       [-134.544853, 57.457872],
       [-134.607557, 57.513042],
       [-134.598452, 57.522395],
       [-134.595981, 57.534107],
       [-134.611177, 57.563137],
       [-134.665337, 57.605701],
       [-134.674438, 57.614409],
       [-134.695428, 57.685335],
       [-134.700518, 57.695966],
       [-134.704859, 57.701457],
       [-134.720351, 57.707052],
       [-134.731798, 57.721921],
       [-134.728792, 57.75664],
       [-134.709024, 57.780498],
       [-134.705869, 57.828929],
       [-134.727077, 57.877098],
       [-134.737475, 57.89079],
       [-134.746108, 57.898529],
       [-134.758833, 57.980212],
       [-134.76529, 57.993762],
       [-134.777022, 58.004679],
       [-134.796804, 58.058855],
       [-134.783772, 58.082292],
       [-134.784927, 58.096793],
       [-134.820663, 58.141465],
       [-134.857221, 58.176288],
       [-134.864299, 58.180489],
       [-134.877918, 58.181535],
       [-134.885857, 58.184031],
       [-134.899665, 58.19432],
       [-134.914857, 58.214932],
       [-134.948327, 58.281316],
       [-134.969189, 58.367542],
       [-134.960502, 58.403758],
       [-134.955902, 58.410297],
       [-134.897292, 58.37689],
       [-134.806116, 58.321284],
       [-134.803831, 58.316567],
       [-134.802388, 58.30107],
       [-134.779354, 58.281279],
       [-134.760052, 58.275251],
       [-134.729861, 58.273512],
       [-134.724463, 58.268277],
       [-134.713987, 58.220748]]],
     [[[-132.367984, 57.348685],
       [-132.487307, 57.354227],
       [-132.64459, 57.426343],
       [-132.986359, 57.330823],
       [-133.029298, 57.235539],
       [-133.126997, 57.186322],
       [-133.299692, 57.237727],
       [-133.517194, 57.177775],
       [-133.517197, 57.177776],
       [-133.544817, 57.24257],
       [-133.542565, 57.250682],
       [-133.522837, 57.27858],
       [-133.489738, 57.305192],
       [-133.47589, 57.307982],
       [-133.455936, 57.30397],
       [-133.444958, 57.297729],
       [-133.442436, 57.289978],
       [-133.425948, 57.285995],
       [-133.371591, 57.286713],
       [-133.307565, 57.290052],
       [-133.287052, 57.30292],
       [-133.274829, 57.330625],
       [-133.28351, 57.333119],
       [-133.34207, 57.336798],
       [-133.35472, 57.333253],
       [-133.403868, 57.342685],
       [-133.442682, 57.352845],
       [-133.453783, 57.35624],
       [-133.468267, 57.364217],
       [-133.472039, 57.368651],
       [-133.475998, 57.380394],
       [-133.472454, 57.388446],
       [-133.461179, 57.394577],
       [-133.503115, 57.453528],
       [-133.52514, 57.490344],
       [-133.52583, 57.501777],
       [-133.516749, 57.543911],
       [-133.510806, 57.548139],
       [-133.496365, 57.548772],
       [-133.488197, 57.551387],
       [-133.478086, 57.56173],
       [-133.481221, 57.57147],
       [-133.505982, 57.578459],
       [-133.528313, 57.573944],
       [-133.531905, 57.569466],
       [-133.53786, 57.567292],
       [-133.565478, 57.563095],
       [-133.578948, 57.565094],
       [-133.62076, 57.578919],
       [-133.66439, 57.611707],
       [-133.676449, 57.625192],
       [-133.680963, 57.648265],
       [-133.65855, 57.707924],
       [-133.65453, 57.713689],
       [-133.582212, 57.715095],
       [-133.543928, 57.696454],
       [-133.530957, 57.686914],
       [-133.522243, 57.683663],
       [-133.489677, 57.677141],
       [-133.441215, 57.672013],
       [-133.40498, 57.663783],
       [-133.234598, 57.608749],
       [-133.188864, 57.589071],
       [-133.179062, 57.587147],
       [-133.162464, 57.599796],
       [-133.174032, 57.610062],
       [-133.251126, 57.649966],
       [-133.278209, 57.661859],
       [-133.291062, 57.665358],
       [-133.322532, 57.66583],
       [-133.485403, 57.738677],
       [-133.545031, 57.76797],
       [-133.559889, 57.777457],
       [-133.556097, 57.78883],
       [-133.569787, 57.859365],
       [-133.602032, 57.860394],
       [-133.56921, 57.88535],
       [-133.176444, 58.150151],
       [-133.076421, 57.999762],
       [-132.869318, 57.842941],
       [-132.756813, 57.705093],
       [-132.658124, 57.619486],
       [-132.559178, 57.503927],
       [-132.367984, 57.348685]]],
     [[[-135.587961, 57.89732],
       [-135.899839, 58.001387],
       [-135.906742, 58.001266],
       [-136.026713, 57.835869],
       [-136.370705, 57.831668],
       [-136.372377, 57.832587],
       [-136.391157, 57.832653],
       [-136.458829, 57.853901],
       [-136.474424, 57.871648],
       [-136.484259, 57.89646],
       [-136.534201, 57.913938],
       [-136.557651, 57.912135],
       [-136.572045, 57.918469],
       [-136.573288, 57.926844],
       [-136.563223, 58.035052],
       [-136.559999, 58.063358],
       [-136.556247, 58.077019],
       [-136.538708, 58.093482],
       [-136.500119, 58.104787],
       [-136.475811, 58.101294],
       [-136.469272, 58.096868],
       [-136.420449, 58.131857],
       [-136.375338, 58.208714],
       [-136.387114, 58.252414],
       [-136.377329, 58.268328],
       [-136.311596, 58.270388],
       [-136.287765, 58.267373],
       [-136.286263, 58.259741],
       [-136.289842, 58.249086],
       [-136.283886, 58.223685],
       [-136.277477, 58.208856],
       [-136.235246, 58.154416],
       [-136.190155, 58.161301],
       [-136.190382, 58.164473],
       [-136.194557, 58.171811],
       [-136.199498, 58.172086],
       [-136.203642, 58.174416],
       [-136.199854, 58.180871],
       [-136.162108, 58.218724],
       [-136.139007, 58.224393],
       [-136.03616, 58.21921],
       [-136.03303, 58.205462],
       [-135.976386, 58.202029],
       [-135.966119, 58.211386],
       [-135.914178, 58.244073],
       [-135.823562, 58.282975],
       [-135.801133, 58.287716],
       [-135.78338, 58.286709],
       [-135.764372, 58.266276],
       [-135.7351, 58.240213],
       [-135.712398, 58.231892],
       [-135.630521, 58.222933],
       [-135.589198, 58.213677],
       [-135.522646, 58.185909],
       [-135.504671, 58.174914],
       [-135.497911, 58.168882],
       [-135.524668, 58.12075],
       [-135.540712, 58.10175],
       [-135.58682, 58.08167],
       [-135.651368, 58.036484],
       [-135.63849, 57.994508],
       [-135.621582, 57.984623],
       [-135.593287, 57.989636],
       [-135.581753, 57.997568],
       [-135.564307, 58.015007],
       [-135.567817, 58.02342],
       [-135.565443, 58.04112],
       [-135.563434, 58.043491],
       [-135.544529, 58.06088],
       [-135.496739, 58.086212],
       [-135.451444, 58.134348],
       [-135.420107, 58.144202],
       [-135.411777, 58.145473],
       [-135.397518, 58.144155],
       [-135.275797, 58.097024],
       [-135.260951, 58.097323],
       [-135.108896, 58.08827],
       [-135.084832, 58.080869],
       [-135.082981, 58.074737],
       [-135.0707, 58.061242],
       [-134.977183, 58.049943],
       [-134.967723, 58.047625],
       [-134.950844, 58.036993],
       [-134.935005, 58.021639],
       [-134.912854, 57.979287],
       [-134.921104, 57.935298],
       [-134.926395, 57.921919],
       [-135.004952, 57.884338],
       [-135.140674, 57.926114],
       [-135.173712, 57.919399],
       [-135.16522, 57.901524],
       [-135.146717, 57.891656],
       [-135.131957, 57.885241],
       [-135.06572, 57.869451],
       [-134.991819, 57.835436],
       [-134.954547, 57.815785],
       [-134.949436, 57.805027],
       [-135.02337, 57.780537],
       [-135.19896, 57.775092],
       [-135.225158, 57.777783],
       [-135.313776, 57.805739],
       [-135.343991, 57.821444],
       [-135.389894, 57.850991],
       [-135.418517, 57.860506],
       [-135.514151, 57.885371],
       [-135.552802, 57.902711],
       [-135.581326, 57.903056],
       [-135.587961, 57.89732]]],
     [[[-135.447381, 58.399891],
       [-135.461296, 58.399884],
       [-135.466083, 58.394328],
       [-135.512402, 58.385759],
       [-135.521358, 58.391449],
       [-135.556066, 58.40774],
       [-135.622105, 58.428186],
       [-135.630425, 58.42858],
       [-135.728054, 58.397067],
       [-135.826079, 58.390246],
       [-135.90731, 58.380839],
       [-135.917917, 58.381237],
       [-135.921134, 58.385772],
       [-135.920299, 58.389084],
       [-135.897255, 58.416132],
       [-135.897169, 58.450001],
       [-135.916112, 58.463858],
       [-135.923268, 58.462919],
       [-135.934547, 58.451953],
       [-135.939926, 58.4516],
       [-135.987564, 58.46442],
       [-135.997418, 58.470375],
       [-135.99953, 58.480281],
       [-135.990948, 58.487315],
       [-135.968087, 58.494669],
       [-135.955625, 58.492765],
       [-135.945121, 58.494836],
       [-135.906941, 58.50581],
       [-135.893152, 58.513929],
       [-135.895088, 58.534077],
       [-135.914003, 58.540583],
       [-135.928572, 58.572925],
       [-135.912187, 58.6188],
       [-136.012226, 58.712247],
       [-136.015761, 58.7226],
       [-136.008929, 58.73191],
       [-136.011669, 58.743276],
       [-136.046172, 58.781796],
       [-136.082937, 58.808383],
       [-136.089603, 58.815729],
       [-136.077276, 58.824983],
       [-136.045279, 58.836074],
       [-136.050351, 58.913433],
       [-136.060728, 58.92758],
       [-136.120307, 58.968418],
       [-136.145306, 58.976705],
       [-136.162725, 58.977261],
       [-136.163648, 58.973204],
       [-136.160293, 58.961999],
       [-136.1503, 58.947111],
       [-136.124491, 58.924542],
       [-136.106997, 58.864441],
       [-136.150772, 58.757266],
       [-136.161943, 58.752171],
       [-136.21366, 58.751153],
       [-136.247343, 58.752935],
       [-136.397322, 58.813019],
       [-136.431055, 58.818416],
       [-136.474735, 58.830788],
       [-136.493716, 58.838963],
       [-136.528161, 58.928484],
       [-136.52652, 58.954523],
       [-136.544899, 58.967314],
       [-136.559836, 58.963414],
       [-136.572163, 58.957292],
       [-136.575516, 58.9466],
       [-136.575541, 58.928941],
       [-136.586289, 58.909364],
       [-136.630497, 58.890256],
       [-136.670412, 58.893224],
       [-136.676898, 58.894973],
       [-136.6946, 58.904081],
       [-136.704848, 58.914395],
       [-136.724994, 58.923514],
       [-136.750422, 58.930439],
       [-136.782908, 58.936659],
       [-136.78871, 58.936318],
       [-136.802832, 58.923118],
       [-136.840986, 58.919742],
       [-136.860014, 58.931997],
       [-136.857823, 58.942868],
       [-136.877826, 58.962392],
       [-136.91853, 58.947217],
       [-136.915995, 58.938384],
       [-136.932352, 58.916252],
       [-136.934841, 58.916345],
       [-136.933458, 58.908558],
       [-136.928643, 58.900131],
       [-136.868184, 58.885243],
       [-136.76793, 58.870608],
       [-136.744507, 58.876626],
       [-136.676388, 58.856348],
       [-136.612807, 58.846227],
       [-136.58343, 58.838826],
       [-136.538029, 58.819777],
       [-136.463258, 58.781607],
       [-136.356786, 58.692581],
       [-136.354222, 58.684304],
       [-136.372775, 58.66741],
       [-136.396076, 58.654421],
       [-136.409876, 58.64925],
       [-136.422309, 58.647412],
       [-136.449827, 58.637816],
       [-136.482395, 58.616739],
       [-136.459436, 58.60788],
       [-136.383327, 58.629987],
       [-136.342827, 58.64503],
       [-136.331366, 58.663545],
       [-136.317193, 58.671231],
       [-136.246368, 58.663185],
       [-136.232481, 58.677144],
       [-136.223308, 58.675028],
       [-136.213659, 58.665054],
       [-136.194207, 58.581731],
       [-136.181596, 58.535019],
       [-136.170498, 58.527323],
       [-136.100303, 58.500673],
       [-136.103925, 58.478001],
       [-136.083551, 58.447115],
       [-136.062165, 58.435795],
       [-136.053028, 58.417375],
       [-136.041818, 58.380161],
       [-136.092646, 58.34899],
       [-136.11193, 58.34253],
       [-136.265906, 58.314499],
       [-136.276769, 58.313894],
       [-136.288255, 58.316144],
       [-136.296281, 58.318447],
       [-136.304158, 58.32345],
       [-136.305121, 58.328691],
       [-136.303092, 58.336277],
       [-136.298718, 58.342941],
       [-136.290055, 58.351447],
       [-136.281631, 58.35309],
       [-136.273929, 58.363409],
       [-136.282604, 58.367261],
       [-136.288867, 58.369649],
       [-136.336728, 58.37757],
       [-136.382035, 58.362694],
       [-136.365148, 58.346663],
       [-136.360416, 58.344077],
       [-136.357115, 58.328838],
       [-136.370979, 58.301643],
       [-136.376464, 58.298625],
       [-136.389964, 58.29707],
       [-136.47202, 58.306356],
       [-136.532824, 58.334072],
       [-136.550003, 58.340371],
       [-136.593029, 58.349793],
       [-136.6135, 58.347889],
       [-136.630425, 58.340607],
       [-136.638634, 58.328458],
       [-136.626345, 58.32059],
       [-136.576799, 58.277951],
       [-136.569831, 58.2687],
       [-136.567956, 58.245153],
       [-136.591924, 58.217886],
       [-136.597198, 58.215006],
       [-136.619824, 58.209899],
       [-136.658638, 58.207323],
       [-136.70125, 58.219416],
       [-136.723391, 58.244926],
       [-136.730885, 58.256496],
       [-136.717093, 58.273508],
       [-136.730218, 58.286153],
       [-136.762198, 58.286765],
       [-136.784326, 58.290497],
       [-136.857605, 58.31636],
       [-136.848992, 58.328994],
       [-136.946663, 58.393185],
       [-136.986384, 58.404043],
       [-137.009415, 58.408877],
       [-137.018409, 58.409141],
       [-137.078109, 58.397474],
       [-137.111802, 58.392594],
       [-137.134453, 58.406596],
       [-137.180029, 58.429939],
       [-137.239366, 58.453159],
       [-137.25271, 58.456338],
       [-137.278612, 58.459484],
       [-137.295788, 58.466179],
       [-137.408758, 58.515822],
       [-137.497002, 58.557721],
       [-137.568216, 58.587989],
       [-137.608804, 58.601234],
       [-137.632889, 58.599982],
       [-137.67169, 58.615523],
       [-137.680811, 58.621835],
       [-137.676857, 58.64677],
       [-137.683516, 58.660267],
       [-137.687627, 58.664989],
       [-137.795037, 58.724855],
       [-137.87535, 58.757232],
       [-137.901675, 58.765316],
       [-137.928156, 58.780533],
       [-137.941828, 58.794322],
       [-137.944259, 58.802349],
       [-137.525295, 58.906872],
       [-137.447383, 58.909513],
       [-137.264752, 59.002352],
       [-136.863896, 59.138472],
       [-136.826633, 59.158389],
       [-136.581521, 59.164909],
       [-136.486609, 59.261108],
       [-136.36885, 59.232652],
       [-136.122285, 59.207775],
       [-136.053534, 59.177538],
       [-135.892056, 59.172783],
       [-135.701868, 59.104076],
       [-135.688248, 59.016726],
       [-135.585301, 58.986033],
       [-135.604265, 58.909481],
       [-135.522232, 58.8894],
       [-135.682038, 58.85819],
       [-135.757086, 58.742314],
       [-135.548348, 58.698345],
       [-135.52815, 58.655985],
       [-135.401945, 58.616146],
       [-135.413387, 58.584665],
       [-135.318523, 58.500523],
       [-135.496814, 58.498602],
       [-135.447381, 58.399891]]]]},
   'id': '02105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02110',
    'STATE': '02',
    'COUNTY': '110',
    'NAME': 'Juneau',
    'LSAD': 'Cty&Bor',
    'CENSUSAREA': 2701.931},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-134.713987, 58.220748],
       [-134.712801, 58.215369],
       [-134.710513, 58.192557],
       [-134.703727, 58.166794],
       [-134.699956, 58.161494],
       [-134.689515, 58.158825],
       [-134.682812, 58.158843],
       [-134.631434, 58.162198],
       [-134.608911, 58.171637],
       [-134.608358, 58.173472],
       [-134.594804, 58.183511],
       [-134.559241, 58.195121],
       [-134.541609, 58.184327],
       [-134.519644, 58.175771],
       [-134.50074, 58.172546],
       [-134.47981, 58.171199],
       [-134.462633, 58.173851],
       [-134.446657, 58.173583],
       [-134.413953, 58.167546],
       [-134.401512, 58.163427],
       [-134.371445, 58.148966],
       [-134.32736, 58.14388],
       [-134.317037, 58.14544],
       [-134.306483, 58.15249],
       [-134.259705, 58.157712],
       [-134.215981, 58.162128],
       [-134.177467, 58.15964],
       [-134.531804, 58.096726],
       [-134.553923, 58.053616],
       [-134.672702, 58.027243],
       [-134.76194, 58.07809],
       [-134.77272, 58.164862],
       [-134.713987, 58.220748]]],
     [[[-133.602032, 57.860394],
       [-133.610178, 57.860654],
       [-133.631303, 57.846766],
       [-133.633931, 57.838029],
       [-133.641996, 57.811215],
       [-133.638899, 57.803323],
       [-133.635578, 57.7999],
       [-133.637054, 57.792203],
       [-133.639675, 57.790361],
       [-133.658113, 57.786368],
       [-133.677433, 57.786593],
       [-133.696784, 57.795075],
       [-133.703097, 57.792152],
       [-133.709141, 57.792739],
       [-133.814706, 57.832979],
       [-133.999331, 57.999016],
       [-134.057521, 58.039471],
       [-134.07172, 58.054636],
       [-134.089207, 58.082534],
       [-134.144813, 58.171242],
       [-134.587101, 58.205802],
       [-134.703351, 58.276537],
       [-134.839307, 58.359261],
       [-135.074096, 58.502123],
       [-135.196338, 58.907875],
       [-135.219128, 58.974972],
       [-135.17576, 58.973867],
       [-134.363773, 58.963891],
       [-134.328964, 58.919593],
       [-134.250526, 58.858046],
       [-133.992081, 58.774581],
       [-133.840392, 58.727991],
       [-133.723635, 58.626004],
       [-133.699835, 58.60729],
       [-133.559942, 58.522318],
       [-133.443373, 58.442415],
       [-133.436075, 58.391324],
       [-133.437696, 58.358074],
       [-133.359691, 58.284789],
       [-133.343725, 58.270915],
       [-133.222898, 58.186368],
       [-133.176444, 58.150151],
       [-133.56921, 57.88535],
       [-133.602032, 57.860394]]]]},
   'id': '02110'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02122',
    'STATE': '02',
    'COUNTY': '122',
    'NAME': 'Kenai Peninsula',
    'LSAD': 'Borough',
    'CENSUSAREA': 16075.331},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-148.745578, 60.733881],
       [-148.655444, 60.734542],
       [-148.666606, 60.423056],
       [-148.562368, 60.422593],
       [-148.58364, 59.961477],
       [-148.673822, 59.944828],
       [-148.676172, 59.947216],
       [-148.675485, 59.95207],
       [-148.664283, 59.965128],
       [-148.661876, 59.967436],
       [-148.66083, 59.969735],
       [-148.662712, 59.971825],
       [-148.668146, 59.973497],
       [-148.674841, 59.972699],
       [-148.688758, 59.968006],
       [-148.715511, 59.96212],
       [-148.725872, 59.963727],
       [-148.727688, 59.96505],
       [-148.729731, 59.972376],
       [-148.737453, 59.980879],
       [-148.743229, 59.985389],
       [-148.749742, 59.988497],
       [-148.755366, 59.989237],
       [-148.759807, 59.988941],
       [-148.763803, 59.987905],
       [-148.766911, 59.986869],
       [-148.769871, 59.983464],
       [-148.797927, 59.9774],
       [-148.801223, 59.975844],
       [-148.810654, 59.963105],
       [-148.838304, 59.9499],
       [-148.872181, 59.950321],
       [-148.884265, 59.955388],
       [-148.888537, 59.966362],
       [-148.901981, 59.973319],
       [-148.913089, 59.983207],
       [-148.914569, 59.986891],
       [-148.912676, 59.992894],
       [-148.917819, 59.995595],
       [-148.938327, 59.999074],
       [-148.957554, 59.998371],
       [-148.977589, 59.989881],
       [-148.990301, 59.981013],
       [-149.01679, 59.976134],
       [-149.028418, 59.978821],
       [-149.029394, 59.984098],
       [-149.027274, 59.991698],
       [-149.031273, 59.998492],
       [-149.043265, 59.999115],
       [-149.067833, 59.982177],
       [-149.09507, 59.983019],
       [-149.100687, 59.985727],
       [-149.101785, 59.990943],
       [-149.102321, 59.993149],
       [-149.101717, 59.994155],
       [-149.098699, 59.996167],
       [-149.095278, 59.997374],
       [-149.090072, 59.999445],
       [-149.089077, 60.004504],
       [-149.072716, 60.019653],
       [-149.041599, 60.030726],
       [-149.037439, 60.04053],
       [-149.040358, 60.048744],
       [-149.04929, 60.0587],
       [-149.0587, 60.061419],
       [-149.096621, 60.044631],
       [-149.133115, 60.044918],
       [-149.204853, 60.009212],
       [-149.223781, 59.982763],
       [-149.23539, 59.938792],
       [-149.287588, 59.906506],
       [-149.327029, 59.987029],
       [-149.325822, 60.001033],
       [-149.341584, 60.076762],
       [-149.360414, 60.101665],
       [-149.393171, 60.099845],
       [-149.416829, 60.088926],
       [-149.416829, 59.997934],
       [-149.427748, 59.996114],
       [-149.435027, 59.990655],
       [-149.462855, 59.950151],
       [-149.475659, 59.952698],
       [-149.507429, 59.964519],
       [-149.549677, 59.919681],
       [-149.584254, 59.866905],
       [-149.542398, 59.823229],
       [-149.511461, 59.806851],
       [-149.527839, 59.750436],
       [-149.598813, 59.755895],
       [-149.640669, 59.799571],
       [-149.666147, 59.850527],
       [-149.706184, 59.910582],
       [-149.7535, 59.861446],
       [-149.738941, 59.732237],
       [-149.75168, 59.717678],
       [-149.75911, 59.697825],
       [-149.778024, 59.68593],
       [-149.798304, 59.677545],
       [-149.842672, 59.7013],
       [-149.839032, 59.752255],
       [-149.889988, 59.785013],
       [-149.97734, 59.801391],
       [-150.028296, 59.788652],
       [-150.042854, 59.772274],
       [-150.015557, 59.754075],
       [-149.97916, 59.744976],
       [-149.948223, 59.717678],
       [-149.962781, 59.69766],
       [-150.002818, 59.683101],
       [-150.022836, 59.655804],
       [-150.031935, 59.613947],
       [-150.068332, 59.637605],
       [-150.09563, 59.648524],
       [-150.108369, 59.603028],
       [-150.168424, 59.561172],
       [-150.223019, 59.539334],
       [-150.253956, 59.521136],
       [-150.310371, 59.508397],
       [-150.343128, 59.512036],
       [-150.334029, 59.541154],
       [-150.315831, 59.562992],
       [-150.317651, 59.599389],
       [-150.347696, 59.600928],
       [-150.355493, 59.598412],
       [-150.412448, 59.554628],
       [-150.431518, 59.514287],
       [-150.478742, 59.458498],
       [-150.4989, 59.456298],
       [-150.516317, 59.462326],
       [-150.521537, 59.467924],
       [-150.521626, 59.474672],
       [-150.518382, 59.477136],
       [-150.515867, 59.482167],
       [-150.516286, 59.486778],
       [-150.522994, 59.494744],
       [-150.536119, 59.498457],
       [-150.543537, 59.510256],
       [-150.550245, 59.527026],
       [-150.549825, 59.538764],
       [-150.533056, 59.56308],
       [-150.537248, 59.581108],
       [-150.54186, 59.586977],
       [-150.547729, 59.590331],
       [-150.556114, 59.590331],
       [-150.575818, 59.579431],
       [-150.589315, 59.565154],
       [-150.594543, 59.553167],
       [-150.60223, 59.545891],
       [-150.614808, 59.545472],
       [-150.631158, 59.549245],
       [-150.639543, 59.547149],
       [-150.638704, 59.532056],
       [-150.631577, 59.521575],
       [-150.615152, 59.510199],
       [-150.595056, 59.499777],
       [-150.589645, 59.500083],
       [-150.584636, 59.49451],
       [-150.579595, 59.47954],
       [-150.579869, 59.475709],
       [-150.584342, 59.467715],
       [-150.585567, 59.450057],
       [-150.581182, 59.445233],
       [-150.601162, 59.425657],
       [-150.650046, 59.420885],
       [-150.651586, 59.421751],
       [-150.65401, 59.445458],
       [-150.656329, 59.454437],
       [-150.667211, 59.4579],
       [-150.683235, 59.458541],
       [-150.716564, 59.450849],
       [-150.729062, 59.442197],
       [-150.739958, 59.425211],
       [-150.745004, 59.400729],
       [-150.769853, 59.372966],
       [-150.79547, 59.362845],
       [-150.819565, 59.357276],
       [-150.834627, 59.35198],
       [-150.877447, 59.31812],
       [-150.911598, 59.311614],
       [-150.912817, 59.305214],
       [-150.895552, 59.286227],
       [-150.887825, 59.273526],
       [-150.887821, 59.26792],
       [-150.897808, 59.255648],
       [-150.942212, 59.233136],
       [-150.959531, 59.232537],
       [-150.975164, 59.236141],
       [-150.988397, 59.230549],
       [-150.995406, 59.224149],
       [-151.001196, 59.224149],
       [-151.006682, 59.233292],
       [-151.008815, 59.245787],
       [-151.007292, 59.251577],
       [-150.996808, 59.257739],
       [-150.999063, 59.271082],
       [-151.023097, 59.269045],
       [-151.03243, 59.275762],
       [-151.044411, 59.293611],
       [-151.0461, 59.299359],
       [-151.057756, 59.301721],
       [-151.070305, 59.287852],
       [-151.068166, 59.284102],
       [-151.071902, 59.281058],
       [-151.087319, 59.26879],
       [-151.091532, 59.269187],
       [-151.105635, 59.263143],
       [-151.101102, 59.240605],
       [-151.102395, 59.228713],
       [-151.107558, 59.217792],
       [-151.126247, 59.209923],
       [-151.163408, 59.202636],
       [-151.186254, 59.202813],
       [-151.190948, 59.206632],
       [-151.192634, 59.211208],
       [-151.206053, 59.219319],
       [-151.223629, 59.224347],
       [-151.261636, 59.220304],
       [-151.273779, 59.229663],
       [-151.280544, 59.230476],
       [-151.28488, 59.227586],
       [-151.287063, 59.224789],
       [-151.287771, 59.219417],
       [-151.292812, 59.214273],
       [-151.305724, 59.209544],
       [-151.341601, 59.222231],
       [-151.379612, 59.242024],
       [-151.387261, 59.25045],
       [-151.390544, 59.264917],
       [-151.399549, 59.276005],
       [-151.407203, 59.279349],
       [-151.429415, 59.268552],
       [-151.437695, 59.253989],
       [-151.449207, 59.248457],
       [-151.488612, 59.237714],
       [-151.509551, 59.234395],
       [-151.518488, 59.230309],
       [-151.525127, 59.224947],
       [-151.520245, 59.21693],
       [-151.504699, 59.21269],
       [-151.499592, 59.207839],
       [-151.497805, 59.204264],
       [-151.498826, 59.200178],
       [-151.502657, 59.195071],
       [-151.521455, 59.195483],
       [-151.558151, 59.200085],
       [-151.574664, 59.195327],
       [-151.579261, 59.187666],
       [-151.576452, 59.172601],
       [-151.580351, 59.165233],
       [-151.590729, 59.161725],
       [-151.698875, 59.163081],
       [-151.710625, 59.158097],
       [-151.720931, 59.156078],
       [-151.739068, 59.156005],
       [-151.748451, 59.158601],
       [-151.764908, 59.17551],
       [-151.761451, 59.205235],
       [-151.75853, 59.215743],
       [-151.761301, 59.221327],
       [-151.838335, 59.209135],
       [-151.874356, 59.211931],
       [-151.915684, 59.227522],
       [-151.917248, 59.231254],
       [-151.910958, 59.236707],
       [-151.906191, 59.237963],
       [-151.905106, 59.247075],
       [-151.925051, 59.254428],
       [-151.952723, 59.250447],
       [-151.959279, 59.247625],
       [-151.978748, 59.253779],
       [-151.991618, 59.313617],
       [-151.96313, 59.344958],
       [-151.952705, 59.349413],
       [-151.924018, 59.354417],
       [-151.903021, 59.360454],
       [-151.890738, 59.373156],
       [-151.887102, 59.382532],
       [-151.908015, 59.395274],
       [-151.905153, 59.401035],
       [-151.886513, 59.421033],
       [-151.826047, 59.439049],
       [-151.770875, 59.447917],
       [-151.75142, 59.446554],
       [-151.740538, 59.438432],
       [-151.728486, 59.439679],
       [-151.720421, 59.443117],
       [-151.706462, 59.462811],
       [-151.694726, 59.46837],
       [-151.634472, 59.482443],
       [-151.570032, 59.468945],
       [-151.542349, 59.467061],
       [-151.528493, 59.472338],
       [-151.50589, 59.477048],
       [-151.485624, 59.475459],
       [-151.470992, 59.47225],
       [-151.466272, 59.48405],
       [-151.46963, 59.502811],
       [-151.436359, 59.530329],
       [-151.420966, 59.537728],
       [-151.365776, 59.541255],
       [-151.32367, 59.550943],
       [-151.272459, 59.555823],
       [-151.266733, 59.562632],
       [-151.264811, 59.568598],
       [-151.271737, 59.576468],
       [-151.278905, 59.589029],
       [-151.278827, 59.59298],
       [-151.274795, 59.596986],
       [-151.201678, 59.591503],
       [-151.203835, 59.577961],
       [-151.20913, 59.573623],
       [-151.208364, 59.562061],
       [-151.192803, 59.562432],
       [-151.164259, 59.587013],
       [-151.158254, 59.594141],
       [-151.165427, 59.601329],
       [-151.188032, 59.608687],
       [-151.205459, 59.630284],
       [-151.207639, 59.64067],
       [-151.203186, 59.645989],
       [-151.173984, 59.651793],
       [-151.126122, 59.668336],
       [-151.121362, 59.674735],
       [-151.122791, 59.677782],
       [-151.11649, 59.696132],
       [-151.098253, 59.709442],
       [-151.018888, 59.756593],
       [-150.927312, 59.793431],
       [-150.948132, 59.792194],
       [-150.982996, 59.783543],
       [-151.001663, 59.788391],
       [-151.006717, 59.792986],
       [-151.027756, 59.796196],
       [-151.063758, 59.793146],
       [-151.113845, 59.777231],
       [-151.172439, 59.751346],
       [-151.214539, 59.729847],
       [-151.329812, 59.683644],
       [-151.377054, 59.681313],
       [-151.42484, 59.670521],
       [-151.43661, 59.66636],
       [-151.439187, 59.663247],
       [-151.441127, 59.653543],
       [-151.448669, 59.648171],
       [-151.461253, 59.643039],
       [-151.503822, 59.633662],
       [-151.643061, 59.646966],
       [-151.686486, 59.660864],
       [-151.746815, 59.686234],
       [-151.7963, 59.704156],
       [-151.829137, 59.720151],
       [-151.850272, 59.739035],
       [-151.859327, 59.749567],
       [-151.869468, 59.769159],
       [-151.867713, 59.778411],
       [-151.857339, 59.791145],
       [-151.83334, 59.814129],
       [-151.813619, 59.844297],
       [-151.803059, 59.878533],
       [-151.792594, 59.88881],
       [-151.777855, 59.897493],
       [-151.757693, 59.917637],
       [-151.742742, 59.944626],
       [-151.71801, 60.009473],
       [-151.702898, 60.032253],
       [-151.661437, 60.057139],
       [-151.623799, 60.088033],
       [-151.606881, 60.099558],
       [-151.545579, 60.128394],
       [-151.517887, 60.145008],
       [-151.488721, 60.167616],
       [-151.421702, 60.212931],
       [-151.406607, 60.228183],
       [-151.387919, 60.267066],
       [-151.381959, 60.296951],
       [-151.383231, 60.326348],
       [-151.381604, 60.358728],
       [-151.377281, 60.365522],
       [-151.366874, 60.372655],
       [-151.30609, 60.387257],
       [-151.301868, 60.384712],
       [-151.299782, 60.385481],
       [-151.293074, 60.416163],
       [-151.286819, 60.434648],
       [-151.283967, 60.452196],
       [-151.280992, 60.512627],
       [-151.27881, 60.520107],
       [-151.264461, 60.543263],
       [-151.268373, 60.548977],
       [-151.303125, 60.561326],
       [-151.323951, 60.574135],
       [-151.330409, 60.580539],
       [-151.339069, 60.594244],
       [-151.344477, 60.613458],
       [-151.345508, 60.622954],
       [-151.350154, 60.63466],
       [-151.362397, 60.653526],
       [-151.387839, 60.674501],
       [-151.404451, 60.695004],
       [-151.410273, 60.711023],
       [-151.40927, 60.720558],
       [-151.3848, 60.729946],
       [-151.370515, 60.733572],
       [-151.30923, 60.740724],
       [-151.279635, 60.747676],
       [-151.270505, 60.751286],
       [-151.261383, 60.757768],
       [-151.259343, 60.762896],
       [-151.261319, 60.769801],
       [-151.252902, 60.773993],
       [-151.212186, 60.780342],
       [-151.106079, 60.783749],
       [-151.062558, 60.787429],
       [-151.037007, 60.793649],
       [-151.025634, 60.797497],
       [-151.024799, 60.801787],
       [-151.012016, 60.80934],
       [-150.895508, 60.853166],
       [-150.886964, 60.858187],
       [-150.883774, 60.861865],
       [-150.845731, 60.877893],
       [-150.808418, 60.891336],
       [-150.770594, 60.911362],
       [-150.705812, 60.937792],
       [-150.678438, 60.958267],
       [-150.603069, 60.974434],
       [-150.582471, 60.982095],
       [-150.515058, 60.999443],
       [-150.511099, 61.005145],
       [-150.501923, 61.007957],
       [-150.454661, 61.016566],
       [-150.431873, 61.023939],
       [-150.401859, 61.036227],
       [-150.377171, 61.039144],
       [-150.353702, 61.031822],
       [-150.341709, 61.024201],
       [-150.310334, 60.989547],
       [-150.286369, 60.966696],
       [-150.262096, 60.947839],
       [-150.244072, 60.938585],
       [-150.217179, 60.930001],
       [-150.187657, 60.924796],
       [-150.085166, 60.91402],
       [-150.070289, 60.913679],
       [-150.04557, 60.910004],
       [-150.049148, 60.915816],
       [-150.047088, 60.918924],
       [-150.039866, 60.920777],
       [-149.952655, 60.930393],
       [-149.912166, 60.937843],
       [-149.875188, 60.960244],
       [-149.853693, 60.967395],
       [-149.83558, 60.968855],
       [-149.816817, 60.966947],
       [-149.770264, 60.967607],
       [-149.764966, 60.963412],
       [-149.753082, 60.962059],
       [-149.735376, 60.987813],
       [-149.736395, 60.994692],
       [-149.373299, 60.907624],
       [-149.188571, 60.905486],
       [-149.038568, 60.849342],
       [-149.042881, 60.734797],
       [-148.745578, 60.733881]]],
     [[[-153.002181, 61.425686],
       [-151.334175, 61.424601],
       [-151.332978, 61.254634],
       [-150.972661, 61.253489],
       [-150.971775, 61.192041],
       [-150.990086, 61.188907],
       [-151.01262, 61.183258],
       [-151.024905, 61.178391],
       [-151.072775, 61.141669],
       [-151.0785, 61.133381],
       [-151.119722, 61.091117],
       [-151.121692, 61.083574],
       [-151.127357, 61.076896],
       [-151.142587, 61.062778],
       [-151.166606, 61.046404],
       [-151.190318, 61.042737],
       [-151.252384, 61.039968],
       [-151.293622, 61.035715],
       [-151.307796, 61.031008],
       [-151.312653, 61.026364],
       [-151.33092, 61.015124],
       [-151.349004, 61.010004],
       [-151.362243, 61.009412],
       [-151.42512, 61.013107],
       [-151.467851, 61.012423],
       [-151.4803, 61.010902],
       [-151.538227, 60.991835],
       [-151.573698, 60.975876],
       [-151.621005, 60.957453],
       [-151.637346, 60.946727],
       [-151.641066, 60.942177],
       [-151.679518, 60.922491],
       [-151.692644, 60.917743],
       [-151.713913, 60.916546],
       [-151.720815, 60.904257],
       [-151.736015, 60.891507],
       [-151.783271, 60.868713],
       [-151.791698, 60.86306],
       [-151.800264, 60.853672],
       [-151.796723, 60.838734],
       [-151.787394, 60.822307],
       [-151.77731, 60.810461],
       [-151.751817, 60.788729],
       [-151.703802, 60.732376],
       [-151.702833, 60.727778],
       [-151.705553, 60.718052],
       [-151.710444, 60.712657],
       [-151.716379, 60.710415],
       [-151.744321, 60.712403],
       [-151.749493, 60.714175],
       [-151.760301, 60.721441],
       [-151.784039, 60.726814],
       [-151.803814, 60.729004],
       [-151.811286, 60.732222],
       [-151.822596, 60.742352],
       [-151.831185, 60.747303],
       [-151.851967, 60.754074],
       [-151.860179, 60.753282],
       [-151.864958, 60.750458],
       [-151.849634, 60.738286],
       [-151.847965, 60.735694],
       [-151.848614, 60.733976],
       [-151.870471, 60.727284],
       [-151.916914, 60.717916],
       [-151.917922, 60.722809],
       [-151.915911, 60.730245],
       [-151.918758, 60.73227],
       [-151.923384, 60.733735],
       [-151.944439, 60.73305],
       [-151.944599, 60.728176],
       [-151.948287, 60.722476],
       [-151.961757, 60.721431],
       [-151.968381, 60.72834],
       [-152.079433, 60.692804],
       [-152.11414, 60.634069],
       [-152.13616, 60.578475],
       [-152.148434, 60.575977],
       [-152.163517, 60.576934],
       [-152.195084, 60.569675],
       [-152.261497, 60.538237],
       [-152.309221, 60.506384],
       [-152.315149, 60.499824],
       [-152.331365, 60.473525],
       [-152.333375, 60.460641],
       [-152.330263, 60.443134],
       [-152.325821, 60.434806],
       [-152.312226, 60.420397],
       [-152.30195, 60.414328],
       [-152.234199, 60.393888],
       [-152.300622, 60.369604],
       [-152.307615, 60.366489],
       [-152.315855, 60.359071],
       [-152.352294, 60.356101],
       [-152.366213, 60.353304],
       [-152.371475, 60.350176],
       [-152.376743, 60.345613],
       [-152.386334, 60.327889],
       [-152.385979, 60.315845],
       [-152.392009, 60.302108],
       [-152.411281, 60.287864],
       [-152.42113, 60.285331],
       [-152.444165, 60.285717],
       [-152.456291, 60.284042],
       [-152.481794, 60.274681],
       [-152.528206, 60.251346],
       [-152.539843, 60.241644],
       [-152.549236, 60.227631],
       [-152.556752, 60.224217],
       [-152.624648, 60.218687],
       [-152.626275, 60.220852],
       [-152.626901, 60.222728],
       [-152.627683, 60.2257],
       [-152.642361, 60.228766],
       [-152.660055, 60.242004],
       [-152.670403, 60.24432],
       [-152.698634, 60.240661],
       [-152.715881, 60.241274],
       [-152.747026, 60.233311],
       [-152.743388, 60.224323],
       [-152.754884, 60.21091],
       [-152.754884, 60.202901],
       [-152.749545, 60.189552],
       [-152.734251, 60.174801],
       [-152.699879, 60.165272],
       [-152.688392, 60.16582],
       [-152.678085, 60.163504],
       [-152.674176, 60.151731],
       [-152.687485, 60.140305],
       [-152.686373, 60.137717],
       [-152.658418, 60.121591],
       [-152.634972, 60.115799],
       [-152.596784, 60.101071],
       [-152.575271, 60.082363],
       [-152.569121, 60.071748],
       [-152.575153, 60.04826],
       [-152.590169, 60.035978],
       [-152.608599, 60.025429],
       [-152.612721, 60.015115],
       [-152.611651, 60.008521],
       [-152.649479, 59.988253],
       [-152.679402, 59.968054],
       [-152.693674, 59.932773],
       [-152.700822, 59.920309],
       [-152.706431, 59.915284],
       [-152.745083, 59.904232],
       [-152.793584, 59.89672],
       [-152.806934, 59.888029],
       [-152.810058, 59.878322],
       [-152.860867, 59.875033],
       [-152.875167, 59.877471],
       [-152.882672, 59.881986],
       [-152.900414, 59.881812],
       [-152.920417, 59.877741],
       [-152.950662, 59.876759],
       [-152.967267, 59.881494],
       [-153.002521, 59.886726],
       [-153.019977, 59.88623],
       [-153.046986, 59.882425],
       [-153.079187, 59.871103],
       [-153.144747, 59.859829],
       [-153.212865, 59.862784],
       [-153.225937, 59.858343],
       [-153.228615, 59.853355],
       [-153.256944, 59.83649],
       [-153.278808, 59.828066],
       [-153.285802, 59.820535],
       [-153.285412, 59.816755],
       [-153.278535, 59.810924],
       [-153.257736, 59.810807],
       [-153.236556, 59.821867],
       [-153.217481, 59.824721],
       [-153.197352, 59.824827],
       [-153.182307, 59.822389],
       [-153.144372, 59.807616],
       [-153.113586, 59.815631],
       [-153.088515, 59.833376],
       [-153.021945, 59.834133],
       [-153.009084, 59.830643],
       [-153.003964, 59.826747],
       [-152.992126, 59.810027],
       [-152.994466, 59.791261],
       [-153.031319, 59.723625],
       [-153.051559, 59.691562],
       [-153.10894, 59.678316],
       [-153.12174, 59.678009],
       [-153.155019, 59.654344],
       [-153.214156, 59.634271],
       [-153.240018, 59.632426],
       [-153.253408, 59.638415],
       [-153.26274, 59.643426],
       [-153.275175, 59.667303],
       [-153.286525, 59.670251],
       [-153.301687, 59.668717],
       [-153.314002, 59.666336],
       [-153.315123, 59.664896],
       [-153.315083, 59.66249],
       [-153.307199, 59.653954],
       [-153.298205, 59.636345],
       [-153.298047, 59.632502],
       [-153.302756, 59.627679],
       [-153.308837, 59.625706],
       [-153.342938, 59.621312],
       [-153.366613, 59.633729],
       [-153.381595, 59.638032],
       [-153.392022, 59.638856],
       [-153.409422, 59.636328],
       [-153.414898, 59.6386],
       [-153.418099, 59.642147],
       [-153.415507, 59.650918],
       [-153.393849, 59.658847],
       [-153.384886, 59.667188],
       [-153.378235, 59.688936],
       [-153.374778, 59.731587],
       [-153.439977, 59.784652],
       [-153.454972, 59.792099],
       [-153.458549, 59.764467],
       [-153.44962, 59.74381],
       [-153.445336, 59.728865],
       [-153.442219, 59.71742],
       [-153.441214, 59.701316],
       [-153.444003, 59.689957],
       [-153.464556, 59.651712],
       [-153.476098, 59.64273],
       [-153.542466, 59.630236],
       [-153.563866, 59.638903],
       [-153.586518, 59.651541],
       [-153.604813, 59.638734],
       [-153.610739, 59.628341],
       [-153.609253, 59.62164],
       [-153.592193, 59.610842],
       [-153.558292, 59.60579],
       [-153.553163, 59.597046],
       [-153.555148, 59.587858],
       [-153.577828, 59.555991],
       [-153.585406, 59.551475],
       [-153.618151, 59.552571],
       [-153.635262, 59.555694],
       [-153.650943, 59.555427],
       [-153.719309, 59.550264],
       [-153.76148, 59.543411],
       [-153.766242, 59.522342],
       [-153.733853, 59.505754],
       [-153.706419, 59.477994],
       [-153.699025, 59.463603],
       [-153.727546, 59.435346],
       [-153.747201, 59.429657],
       [-153.807119, 59.419466],
       [-153.823384, 59.418035],
       [-153.862199, 59.424124],
       [-153.896576, 59.418486],
       [-153.911268, 59.413732],
       [-153.925307, 59.405254],
       [-153.945539, 59.386061],
       [-153.951389, 59.387017],
       [-153.954717, 59.392532],
       [-153.959893, 59.39685],
       [-153.990003, 59.396777],
       [-153.993994, 59.394049],
       [-153.996261, 59.39082],
       [-153.998506, 59.384723],
       [-154.007207, 59.382528],
       [-154.025696, 59.381521],
       [-154.035965, 59.386362],
       [-154.044563, 59.388295],
       [-154.05215, 59.387138],
       [-154.062453, 59.382753],
       [-154.087803, 59.367967],
       [-154.100989, 59.366016],
       [-154.117672, 59.365508],
       [-154.121808, 59.360544],
       [-154.121394, 59.353099],
       [-154.103014, 59.342719],
       [-154.033703, 59.343999],
       [-154.028739, 59.337381],
       [-154.030807, 59.32704],
       [-154.077942, 59.313364],
       [-154.113577, 59.299627],
       [-154.122681, 59.287622],
       [-154.13684, 59.262666],
       [-154.141192, 59.216598],
       [-154.130585, 59.210503],
       [-154.172944, 59.172496],
       [-154.214818, 59.151562],
       [-154.24422, 59.144161],
       [-154.260121, 59.14302],
       [-154.263291, 59.138462],
       [-154.256528, 59.118462],
       [-154.251233, 59.111239],
       [-154.243785, 59.114868],
       [-154.239842, 59.119324],
       [-154.227238, 59.125407],
       [-154.180691, 59.123235],
       [-154.173669, 59.1202],
       [-154.166745, 59.100548],
       [-154.166406, 59.090582],
       [-154.171502, 59.083423],
       [-154.195271, 59.069491],
       [-154.197422, 59.061155],
       [-154.18958, 59.044207],
       [-154.171462, 59.021963],
       [-154.159835, 59.010595],
       [-154.158207, 59.017853],
       [-154.132449, 59.024745],
       [-154.108278, 59.036827],
       [-154.063489, 59.07214],
       [-154.031822, 59.073681],
       [-154.008547, 59.072904],
       [-153.949958, 59.066782],
       [-153.932824, 59.062677],
       [-153.850238, 59.052917],
       [-153.83818, 59.055296],
       [-153.815724, 59.064851],
       [-153.809866, 59.070797],
       [-153.802782, 59.072224],
       [-153.793972, 59.071416],
       [-153.750936, 59.05284],
       [-153.74868, 59.058729],
       [-153.746201, 59.065199],
       [-153.704162, 59.07578],
       [-153.695664, 59.073994],
       [-153.648029, 59.028924],
       [-153.616066, 59.006737],
       [-153.547283, 58.983716],
       [-153.523522, 58.979221],
       [-153.505618, 58.981734],
       [-153.479939, 58.995286],
       [-153.463266, 58.986903],
       [-153.450672, 58.976119],
       [-153.438144, 58.969911],
       [-153.422015, 58.970648],
       [-153.398479, 58.966056],
       [-153.393101, 58.951097],
       [-153.388765, 58.945337],
       [-153.365371, 58.927753],
       [-153.352283, 58.921705],
       [-153.33478, 58.920521],
       [-153.322843, 58.907849],
       [-153.304788, 58.878919],
       [-153.305216, 58.874637],
       [-153.302433, 58.871212],
       [-153.294726, 58.865432],
       [-153.286163, 58.863077],
       [-153.267407, 58.867218],
       [-153.254798, 58.861756],
       [-153.25225, 58.85585],
       [-153.252662, 58.855797],
       [-153.455102, 58.855665],
       [-153.452198, 58.734773],
       [-153.816565, 58.734254],
       [-153.815055, 58.647216],
       [-154.305926, 58.646822],
       [-154.63727, 58.64681],
       [-154.63942, 58.734693],
       [-154.692714, 58.734598],
       [-154.692093, 59.075956],
       [-154.745361, 59.076992],
       [-154.747693, 59.253095],
       [-154.409316, 59.25464],
       [-154.414557, 59.428681],
       [-154.121269, 59.431295],
       [-154.124374, 59.519551],
       [-153.954485, 59.520073],
       [-153.955889, 59.696099],
       [-153.783649, 59.696598],
       [-153.782943, 59.785049],
       [-153.654893, 59.784914],
       [-153.656579, 60.121433],
       [-153.531136, 60.122545],
       [-153.528484, 60.470611],
       [-153.394293, 60.472296],
       [-153.395016, 60.823291],
       [-153.436195, 60.908538],
       [-153.430404, 61.13574],
       [-153.475316, 61.136887],
       [-153.469729, 61.428123],
       [-153.002181, 61.425686]]]]},
   'id': '02122'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02130',
    'STATE': '02',
    'COUNTY': '130',
    'NAME': 'Ketchikan Gateway',
    'LSAD': 'Borough',
    'CENSUSAREA': 4858.414},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-131.246018, 54.989555],
       [-131.257421, 54.97901],
       [-131.242771, 54.929639],
       [-131.233001, 54.926814],
       [-131.217805, 54.927423],
       [-131.197924, 54.921489],
       [-131.195197, 54.919767],
       [-131.195411, 54.918249],
       [-131.200161, 54.910169],
       [-131.253671, 54.866779],
       [-131.266049, 54.859369],
       [-131.353233, 54.859009],
       [-131.469097, 54.913153],
       [-131.491504, 54.930392],
       [-131.486616, 54.950394],
       [-131.482676, 54.952659],
       [-131.409738, 54.971152],
       [-131.266084, 54.998806],
       [-131.248909, 54.99719],
       [-131.246018, 54.989555]]],
     [[[-131.759896, 55.381845],
       [-131.71614, 55.34957],
       [-131.685192, 55.333501],
       [-131.666738, 55.327492],
       [-131.647236, 55.30614],
       [-131.65813, 55.292512],
       [-131.688644, 55.282113],
       [-131.694487, 55.223739],
       [-131.718468, 55.200099],
       [-131.748334, 55.128588],
       [-131.798943, 55.162351],
       [-131.829585, 55.191916],
       [-131.830718, 55.194991],
       [-131.828395, 55.198482],
       [-131.850839, 55.274364],
       [-131.862162, 55.289284],
       [-131.870568, 55.364553],
       [-131.854297, 55.421074],
       [-131.85233, 55.423782],
       [-131.833218, 55.422014],
       [-131.811697, 55.414048],
       [-131.809721, 55.412555],
       [-131.80679, 55.405175],
       [-131.798555, 55.399386],
       [-131.759896, 55.381845]]],
     [[[-132.199549, 55.638593],
       [-132.091178, 55.660703],
       [-132.058825, 55.71093],
       [-131.962744, 55.700757],
       [-131.935635, 55.798431],
       [-132.011037, 55.854788],
       [-131.871938, 55.948883],
       [-131.904613, 55.972972],
       [-131.829608, 56.056307],
       [-131.692693, 56.050604],
       [-131.653403, 56.103851],
       [-131.498849, 56.019097],
       [-131.371853, 56.013252],
       [-131.369226, 56.06991],
       [-131.437095, 56.140004],
       [-131.253358, 56.20685],
       [-131.238566, 56.170968],
       [-131.106699, 56.195124],
       [-130.998654, 56.274041],
       [-131.09623, 56.335166],
       [-131.087433, 56.40742],
       [-131.085704, 56.40654],
       [-130.782231, 56.367511],
       [-130.740619, 56.342953],
       [-130.622482, 56.267939],
       [-130.541173, 56.248017],
       [-130.466874, 56.239789],
       [-130.425575, 56.140676],
       [-130.24554, 56.096876],
       [-130.291117, 56.054246],
       [-130.220064, 55.998912],
       [-130.285132, 55.997546],
       [-130.388737, 55.943318],
       [-130.234649, 55.81431],
       [-130.150595, 55.767031],
       [-130.151509, 55.746029],
       [-130.150061, 55.727099],
       [-130.14804, 55.715041],
       [-130.129518, 55.699806],
       [-130.111677, 55.682051],
       [-130.126743, 55.581282],
       [-130.120132, 55.563919],
       [-130.085413, 55.491517],
       [-130.044303, 55.45197],
       [-130.030182, 55.367696],
       [-130.023558, 55.338259],
       [-129.982348, 55.302079],
       [-129.980487, 55.296334],
       [-129.980058, 55.28423],
       [-129.985379, 55.27776],
       [-130.001735, 55.264557],
       [-130.030162, 55.246592],
       [-130.096546, 55.197953],
       [-130.118919, 55.176074],
       [-130.144723, 55.146038],
       [-130.158117, 55.117104],
       [-130.187541, 55.064665],
       [-130.221512, 55.02599],
       [-130.259079, 54.987642],
       [-130.27556, 54.97293],
       [-130.339504, 54.921376],
       [-130.474605, 54.838102],
       [-130.569366, 54.790869],
       [-130.636745, 54.778456],
       [-130.657754, 54.761828],
       [-130.62807, 54.739341],
       [-130.644479, 54.736897],
       [-130.685213, 54.720091],
       [-130.686192, 54.71691],
       [-130.695817, 54.719346],
       [-130.737423, 54.753545],
       [-130.747227, 54.7726],
       [-130.733209, 54.77961],
       [-130.732201, 54.78262],
       [-130.736295, 54.794798],
       [-130.742316, 54.801914],
       [-130.773606, 54.820845],
       [-130.787444, 54.822905],
       [-130.78857, 54.794643],
       [-130.792122, 54.784784],
       [-130.806815, 54.776862],
       [-130.836853, 54.765437],
       [-130.854966, 54.766341],
       [-130.866866, 54.769068],
       [-130.901801, 54.780876],
       [-130.915936, 54.789617],
       [-130.932454, 54.806938],
       [-130.947098, 54.826047],
       [-130.941029, 54.841587],
       [-130.947338, 54.886733],
       [-130.959732, 54.918678],
       [-130.9604, 54.933685],
       [-130.949104, 54.967846],
       [-130.953507, 54.972102],
       [-130.97503, 54.974853],
       [-131.007787, 54.9913],
       [-131.012061, 54.996238],
       [-131.004216, 55.029605],
       [-130.986802, 55.065222],
       [-130.98373, 55.068946],
       [-130.984157, 55.08441],
       [-131.013215, 55.090069],
       [-131.029676, 55.099478],
       [-131.052298, 55.11816],
       [-131.070692, 55.138143],
       [-131.076646, 55.146178],
       [-131.085579, 55.158233],
       [-131.087497, 55.163036],
       [-131.093806, 55.191335],
       [-131.092605, 55.192711],
       [-130.985304, 55.247286],
       [-130.952956, 55.273092],
       [-130.951572, 55.291648],
       [-130.925069, 55.300713],
       [-130.909948, 55.299878],
       [-130.871329, 55.29378],
       [-130.864918, 55.298367],
       [-130.864918, 55.309469],
       [-130.871857, 55.313991],
       [-130.882146, 55.358831],
       [-130.9208, 55.428721],
       [-130.922985, 55.435113],
       [-130.920295, 55.446085],
       [-130.910744, 55.459982],
       [-130.898129, 55.470177],
       [-130.881297, 55.495582],
       [-130.870524, 55.533768],
       [-130.880013, 55.598954],
       [-130.901872, 55.69738],
       [-130.939017, 55.754831],
       [-130.984774, 55.799349],
       [-131.093956, 55.895675],
       [-131.171406, 55.942952],
       [-131.187429, 55.95601],
       [-131.216475, 55.984342],
       [-131.229971, 55.984342],
       [-131.236936, 55.982293],
       [-131.243491, 55.973689],
       [-131.245949, 55.965905],
       [-131.241704, 55.955069],
       [-131.156834, 55.901147],
       [-131.070138, 55.828551],
       [-131.053217, 55.799843],
       [-131.043527, 55.766997],
       [-131.040966, 55.762837],
       [-130.998638, 55.723538],
       [-130.965994, 55.688974],
       [-130.94683, 55.650716],
       [-130.927651, 55.576585],
       [-130.945177, 55.557731],
       [-130.978917, 55.550835],
       [-130.987103, 55.539872],
       [-130.994376, 55.472396],
       [-130.969588, 55.393281],
       [-130.947498, 55.380823],
       [-130.928172, 55.339426],
       [-130.933399, 55.331906],
       [-130.946597, 55.322396],
       [-130.959772, 55.315892],
       [-130.968326, 55.316626],
       [-130.964088, 55.332664],
       [-131.000594, 55.398012],
       [-131.008726, 55.404818],
       [-131.029045, 55.408395],
       [-131.033054, 55.393118],
       [-131.034191, 55.379358],
       [-131.030521, 55.376917],
       [-131.027301, 55.371392],
       [-131.019881, 55.347905],
       [-131.031357, 55.284785],
       [-131.072348, 55.253822],
       [-131.160492, 55.197481],
       [-131.188747, 55.192745],
       [-131.21123, 55.192379],
       [-131.235516, 55.197574],
       [-131.263089, 55.208318],
       [-131.297162, 55.235046],
       [-131.302697, 55.250217],
       [-131.278302, 55.260319],
       [-131.24019, 55.287156],
       [-131.230432, 55.297802],
       [-131.191595, 55.360527],
       [-131.191933, 55.368334],
       [-131.197489, 55.391051],
       [-131.202477, 55.392834],
       [-131.272447, 55.387774],
       [-131.292102, 55.383946],
       [-131.293043, 55.378684],
       [-131.287016, 55.35826],
       [-131.264608, 55.345639],
       [-131.254461, 55.329698],
       [-131.255107, 55.322104],
       [-131.284986, 55.286437],
       [-131.291203, 55.281751],
       [-131.326989, 55.265911],
       [-131.402931, 55.238065],
       [-131.424502, 55.238764],
       [-131.428234, 55.239416],
       [-131.437857, 55.248407],
       [-131.444799, 55.264491],
       [-131.463532, 55.283389],
       [-131.475602, 55.303263],
       [-131.462968, 55.312648],
       [-131.471976, 55.323386],
       [-131.494146, 55.33231],
       [-131.509811, 55.33231],
       [-131.515257, 55.327938],
       [-131.528201, 55.295349],
       [-131.53651, 55.292352],
       [-131.550044, 55.293389],
       [-131.566677, 55.306068],
       [-131.584842, 55.309588],
       [-131.639031, 55.339481],
       [-131.698743, 55.354873],
       [-131.732441, 55.377553],
       [-131.735939, 55.381905],
       [-131.736654, 55.392206],
       [-131.741834, 55.398074],
       [-131.828446, 55.445214],
       [-131.844157, 55.456742],
       [-131.845542, 55.522119],
       [-131.841683, 55.526748],
       [-131.793717, 55.541682],
       [-131.766373, 55.54005],
       [-131.733052, 55.548559],
       [-131.664629, 55.581525],
       [-131.654172, 55.592431],
       [-131.671471, 55.606573],
       [-131.682849, 55.610488],
       [-131.701091, 55.613684],
       [-131.724359, 55.632559],
       [-131.726322, 55.63593],
       [-131.726615, 55.641],
       [-131.719546, 55.650282],
       [-131.712102, 55.665797],
       [-131.701147, 55.69696],
       [-131.706744, 55.706435],
       [-131.726467, 55.720826],
       [-131.733408, 55.730832],
       [-131.719308, 55.749099],
       [-131.704907, 55.755541],
       [-131.649626, 55.768728],
       [-131.640294, 55.785274],
       [-131.640141, 55.789355],
       [-131.653124, 55.795735],
       [-131.678213, 55.799837],
       [-131.691058, 55.797561],
       [-131.697211, 55.793768],
       [-131.700951, 55.788977],
       [-131.705259, 55.789939],
       [-131.710448, 55.80662],
       [-131.713742, 55.853263],
       [-131.701487, 55.860943],
       [-131.689044, 55.875488],
       [-131.687317, 55.886772],
       [-131.689509, 55.890232],
       [-131.720384, 55.894659],
       [-131.776737, 55.878784],
       [-131.828176, 55.877284],
       [-131.836962, 55.875472],
       [-131.830547, 55.856616],
       [-131.81631, 55.837449],
       [-131.777033, 55.823261],
       [-131.771248, 55.810028],
       [-131.779908, 55.791904],
       [-131.814759, 55.73135],
       [-131.82616, 55.71858],
       [-131.831407, 55.681342],
       [-131.828887, 55.667148],
       [-131.865395, 55.63068],
       [-131.897413, 55.603914],
       [-131.939318, 55.623844],
       [-131.963121, 55.615263],
       [-131.962642, 55.608708],
       [-131.945303, 55.572441],
       [-131.936689, 55.535151],
       [-131.971792, 55.498279],
       [-131.986493, 55.500619],
       [-132.014613, 55.515238],
       [-132.043772, 55.535742],
       [-132.060504, 55.54303],
       [-132.098521, 55.550015],
       [-132.114654, 55.550623],
       [-132.141118, 55.55901],
       [-132.148383, 55.562481],
       [-132.183207, 55.588128],
       [-132.198652, 55.615721],
       [-132.2015, 55.626376],
       [-132.197869, 55.633967],
       [-132.199549, 55.638593]]]]},
   'id': '02130'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02150',
    'STATE': '02',
    'COUNTY': '150',
    'NAME': 'Kodiak Island',
    'LSAD': 'Borough',
    'CENSUSAREA': 6549.579},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-156.355401, 57.159679],
       [-156.750815, 57.162878],
       [-156.75078, 57.235795],
       [-156.672751, 57.234909],
       [-156.617395, 57.334942],
       [-156.502226, 57.362606],
       [-156.508759, 57.434831],
       [-156.458121, 57.478905],
       [-156.370235, 57.522368],
       [-156.132032, 57.509692],
       [-156.071148, 57.584424],
       [-155.952772, 57.598213],
       [-155.921548, 57.554334],
       [-155.87199, 57.599963],
       [-155.898455, 57.6681],
       [-155.768022, 57.668261],
       [-155.693773, 57.797987],
       [-155.53883, 57.799806],
       [-155.446251, 57.827094],
       [-155.44602, 57.871459],
       [-155.330245, 57.876343],
       [-155.331678, 58.048211],
       [-155.280169, 58.108591],
       [-155.331999, 58.107967],
       [-155.331945, 58.193283],
       [-155.221313, 58.193193],
       [-155.221463, 58.236408],
       [-155.057741, 58.236209],
       [-155.008132, 58.290905],
       [-154.730369, 58.304669],
       [-154.729769, 58.332837],
       [-154.570107, 58.333055],
       [-154.465741, 58.361356],
       [-154.432332, 58.418998],
       [-154.303447, 58.460385],
       [-154.305926, 58.646822],
       [-153.815055, 58.647216],
       [-153.816565, 58.734254],
       [-153.452198, 58.734773],
       [-153.455102, 58.855665],
       [-153.252662, 58.855797],
       [-153.317823, 58.847441],
       [-153.326138, 58.84932],
       [-153.336826, 58.848878],
       [-153.34483, 58.846953],
       [-153.350964, 58.843551],
       [-153.358917, 58.836767],
       [-153.369389, 58.821255],
       [-153.37073, 58.799301],
       [-153.385126, 58.766173],
       [-153.402472, 58.742607],
       [-153.426641, 58.721127],
       [-153.445002, 58.70931],
       [-153.458816, 58.708561],
       [-153.468963, 58.712234],
       [-153.477755, 58.712767],
       [-153.55265, 58.687176],
       [-153.577544, 58.670532],
       [-153.587799, 58.651742],
       [-153.591635, 58.640084],
       [-153.601257, 58.634633],
       [-153.677597, 58.611603],
       [-153.771636, 58.605639],
       [-153.806232, 58.606595],
       [-153.832837, 58.611671],
       [-153.851432, 58.611872],
       [-153.897155, 58.606237],
       [-153.902558, 58.597377],
       [-153.919134, 58.516659],
       [-153.909588, 58.514562],
       [-153.930473, 58.497482],
       [-153.934852, 58.494414],
       [-153.96037, 58.487831],
       [-153.97402, 58.488348],
       [-153.977617, 58.491931],
       [-154.001918, 58.492346],
       [-154.056526, 58.489222],
       [-154.065121, 58.48643],
       [-154.073032, 58.478259],
       [-154.075051, 58.472188],
       [-154.075235, 58.458106],
       [-154.073592, 58.446866],
       [-154.07066, 58.440018],
       [-154.055759, 58.418782],
       [-154.040013, 58.404297],
       [-154.034147, 58.402638],
       [-154.023713, 58.403952],
       [-154.007305, 58.402187],
       [-153.985416, 58.390877],
       [-153.999323, 58.376372],
       [-154.097254, 58.345322],
       [-154.133866, 58.350632],
       [-154.139223, 58.354108],
       [-154.150373, 58.357581],
       [-154.167997, 58.358378],
       [-154.175194, 58.344527],
       [-154.177161, 58.32147],
       [-154.174999, 58.320107],
       [-154.166648, 58.320569],
       [-154.149073, 58.314539],
       [-154.103412, 58.280161],
       [-154.145277, 58.210931],
       [-154.177652, 58.189832],
       [-154.219755, 58.184631],
       [-154.241874, 58.156328],
       [-154.21625, 58.142849],
       [-154.210078, 58.136062],
       [-154.222465, 58.132566],
       [-154.269027, 58.12877],
       [-154.291163, 58.13568],
       [-154.340449, 58.090921],
       [-154.384327, 58.120823],
       [-154.42657, 58.144901],
       [-154.436518, 58.148294],
       [-154.460121, 58.146067],
       [-154.466436, 58.142328],
       [-154.459389, 58.129089],
       [-154.452096, 58.121582],
       [-154.449212, 58.093218],
       [-154.462929, 58.05835],
       [-154.477979, 58.052379],
       [-154.501246, 58.050112],
       [-154.539367, 58.055887],
       [-154.568627, 58.025787],
       [-154.581547, 58.019285],
       [-154.643965, 58.033147],
       [-154.650618, 58.045387],
       [-154.644666, 58.056433],
       [-154.646223, 58.060141],
       [-154.653383, 58.064037],
       [-154.668895, 58.065272],
       [-154.676108, 58.065114],
       [-154.716162, 58.055256],
       [-154.721884, 58.050544],
       [-154.72898, 58.038455],
       [-154.731059, 58.028454],
       [-154.730726, 58.021837],
       [-154.745581, 58.01222],
       [-154.765287, 58.00371],
       [-154.774719, 58.002168],
       [-154.807767, 58.000939],
       [-154.819518, 58.003494],
       [-154.823518, 58.009348],
       [-154.825051, 58.016586],
       [-154.82823, 58.018849],
       [-154.876559, 58.027722],
       [-154.891812, 58.027676],
       [-154.990431, 58.013424],
       [-155.026275, 57.999302],
       [-155.118648, 57.953925],
       [-155.094686, 57.92928],
       [-155.072566, 57.911968],
       [-155.064199, 57.909294],
       [-155.061806, 57.90433],
       [-155.068148, 57.883773],
       [-155.082139, 57.872248],
       [-155.097095, 57.865356],
       [-155.15242, 57.855375],
       [-155.237933, 57.827131],
       [-155.272917, 57.823981],
       [-155.298385, 57.82602],
       [-155.303044, 57.828454],
       [-155.326369, 57.830545],
       [-155.338153, 57.825384],
       [-155.341235, 57.819644],
       [-155.334944, 57.780692],
       [-155.310981, 57.764811],
       [-155.302789, 57.761658],
       [-155.285339, 57.758726],
       [-155.284691, 57.757388],
       [-155.291651, 57.735809],
       [-155.305814, 57.72405],
       [-155.37861, 57.710766],
       [-155.468287, 57.744637],
       [-155.506533, 57.76097],
       [-155.533627, 57.77688],
       [-155.539766, 57.783942],
       [-155.545676, 57.786769],
       [-155.568437, 57.789511],
       [-155.585411, 57.786981],
       [-155.596857, 57.783539],
       [-155.609353, 57.777699],
       [-155.617188, 57.769715],
       [-155.635323, 57.715441],
       [-155.634543, 57.704764],
       [-155.626373, 57.693623],
       [-155.615203, 57.688074],
       [-155.629912, 57.656376],
       [-155.699986, 57.642085],
       [-155.724167, 57.633445],
       [-155.735509, 57.594149],
       [-155.730951, 57.588562],
       [-155.731412, 57.555546],
       [-155.732779, 57.549732],
       [-155.786939, 57.547007],
       [-155.877856, 57.547173],
       [-155.915261, 57.535331],
       [-155.945812, 57.539249],
       [-155.96789, 57.544429],
       [-155.985988, 57.553721],
       [-155.988113, 57.558328],
       [-156.010818, 57.571379],
       [-156.033806, 57.569883],
       [-156.044031, 57.564455],
       [-156.048584, 57.500808],
       [-156.045324, 57.487037],
       [-156.036722, 57.470941],
       [-156.014396, 57.455285],
       [-156.012841, 57.451394],
       [-156.021875, 57.43966],
       [-156.091668, 57.439829],
       [-156.099067, 57.443691],
       [-156.13748, 57.471734],
       [-156.183932, 57.482112],
       [-156.19574, 57.480059],
       [-156.210883, 57.474409],
       [-156.211485, 57.459475],
       [-156.220105, 57.445295],
       [-156.226886, 57.440667],
       [-156.254462, 57.438961],
       [-156.339425, 57.417641],
       [-156.362039, 57.400474],
       [-156.377439, 57.390865],
       [-156.481632, 57.338705],
       [-156.511412, 57.33502],
       [-156.533544, 57.328527],
       [-156.539718, 57.320059],
       [-156.551239, 57.2908],
       [-156.538684, 57.283041],
       [-156.507301, 57.281164],
       [-156.420864, 57.311142],
       [-156.336427, 57.336081],
       [-156.32191, 57.293369],
       [-156.332718, 57.265192],
       [-156.342943, 57.248056],
       [-156.358139, 57.252188],
       [-156.376507, 57.252284],
       [-156.399423, 57.241627],
       [-156.401488, 57.233169],
       [-156.398751, 57.214756],
       [-156.388592, 57.20662],
       [-156.355756, 57.192844],
       [-156.3413, 57.191857],
       [-156.33843, 57.190325],
       [-156.334404, 57.1823],
       [-156.355401, 57.159679]]],
     [[[-155.62056, 55.907509],
       [-155.568207, 55.907509],
       [-155.560593, 55.897041],
       [-155.559895, 55.882898],
       [-155.584396, 55.848499],
       [-155.564407, 55.809475],
       [-155.566315, 55.78949],
       [-155.589157, 55.761887],
       [-155.611038, 55.759983],
       [-155.649109, 55.776165],
       [-155.718597, 55.772358],
       [-155.728104, 55.779018],
       [-155.75, 55.82185],
       [-155.743125, 55.831488],
       [-155.663374, 55.860488],
       [-155.637695, 55.894184],
       [-155.62056, 55.907509]]],
     [[[-154.404015, 56.572287],
       [-154.393868, 56.562388],
       [-154.391294, 56.557931],
       [-154.39248, 56.554053],
       [-154.436794, 56.534556],
       [-154.529507, 56.502655],
       [-154.571701, 56.494165],
       [-154.633586, 56.471817],
       [-154.668517, 56.452544],
       [-154.691485, 56.436711],
       [-154.704129, 56.42423],
       [-154.73655, 56.403848],
       [-154.742887, 56.401678],
       [-154.765021, 56.401361],
       [-154.775766, 56.404075],
       [-154.789003, 56.411015],
       [-154.799907, 56.419387],
       [-154.805481, 56.427488],
       [-154.806114, 56.434182],
       [-154.777505, 56.462199],
       [-154.739644, 56.496332],
       [-154.70614, 56.521273],
       [-154.534726, 56.60054],
       [-154.524629, 56.603925],
       [-154.514078, 56.604059],
       [-154.449965, 56.600361],
       [-154.413435, 56.586768],
       [-154.402289, 56.580543],
       [-154.399389, 56.576411],
       [-154.404015, 56.572287]]],
     [[[-153.940505, 56.558317],
       [-153.915288, 56.564921],
       [-153.878764, 56.565925],
       [-153.870804, 56.558015],
       [-153.868461, 56.551493],
       [-153.887678, 56.533637],
       [-153.952958, 56.507174],
       [-153.993909, 56.501796],
       [-154.120244, 56.501838],
       [-154.143711, 56.506172],
       [-154.163987, 56.507844],
       [-154.19728, 56.502002],
       [-154.232464, 56.491052],
       [-154.304371, 56.502322],
       [-154.343096, 56.510171],
       [-154.3474, 56.512046],
       [-154.361378, 56.52564],
       [-154.362361, 56.542512],
       [-154.341401, 56.563705],
       [-154.310913, 56.585447],
       [-154.29002, 56.595376],
       [-154.244234, 56.609194],
       [-154.223759, 56.612955],
       [-154.210336, 56.609684],
       [-154.206001, 56.606908],
       [-154.184819, 56.603773],
       [-154.136739, 56.60935],
       [-154.113397, 56.616745],
       [-154.103243, 56.617695],
       [-154.095833, 56.617786],
       [-154.090014, 56.614798],
       [-154.081829, 56.603716],
       [-154.079016, 56.589977],
       [-154.075187, 56.583745],
       [-154.041572, 56.556209],
       [-154.025334, 56.551763],
       [-154.009274, 56.551445],
       [-153.940505, 56.558317]]],
     [[[-152.417424, 57.815464],
       [-152.364079, 57.829372],
       [-152.351152, 57.834768],
       [-152.324284, 57.824444],
       [-152.310927, 57.783452],
       [-152.317267, 57.771987],
       [-152.322172, 57.768315],
       [-152.342674, 57.762306],
       [-152.348644, 57.764393],
       [-152.349169, 57.76848],
       [-152.357233, 57.773918],
       [-152.381076, 57.776744],
       [-152.443786, 57.776142],
       [-152.46555, 57.767169],
       [-152.471, 57.763466],
       [-152.497314, 57.738596],
       [-152.497056, 57.734387],
       [-152.467679, 57.68139],
       [-152.44303, 57.668049],
       [-152.401492, 57.686513],
       [-152.398569, 57.68721],
       [-152.394474, 57.684665],
       [-152.428946, 57.642162],
       [-152.461018, 57.606311],
       [-152.468172, 57.600996],
       [-152.467756, 57.598221],
       [-152.459929, 57.594373],
       [-152.439667, 57.590399],
       [-152.426062, 57.593357],
       [-152.40247, 57.607981],
       [-152.38714, 57.612428],
       [-152.361903, 57.6188],
       [-152.322733, 57.623402],
       [-152.265346, 57.62643],
       [-152.179531, 57.624809],
       [-152.161617, 57.623287],
       [-152.152393, 57.619485],
       [-152.159677, 57.593614],
       [-152.163996, 57.584607],
       [-152.259641, 57.527156],
       [-152.29147, 57.517103],
       [-152.314889, 57.486065],
       [-152.323683, 57.467861],
       [-152.326134, 57.441514],
       [-152.361592, 57.427761],
       [-152.416473, 57.435293],
       [-152.495215, 57.452379],
       [-152.517004, 57.432184],
       [-152.570527, 57.448909],
       [-152.600375, 57.468833],
       [-152.646017, 57.466134],
       [-152.662831, 57.463679],
       [-152.684413, 57.466597],
       [-152.716765, 57.478467],
       [-152.720471, 57.481572],
       [-152.719447, 57.488028],
       [-152.722846, 57.494087],
       [-152.743084, 57.50571],
       [-152.770196, 57.50429],
       [-152.798914, 57.494255],
       [-152.809036, 57.494505],
       [-152.825515, 57.497048],
       [-152.838905, 57.50227],
       [-152.886205, 57.510697],
       [-152.939629, 57.520088],
       [-152.954939, 57.520449],
       [-152.9663, 57.51217],
       [-152.967222, 57.509993],
       [-152.94901, 57.498212],
       [-152.939573, 57.497763],
       [-152.921748, 57.501397],
       [-152.890173, 57.486705],
       [-152.762676, 57.45756],
       [-152.742678, 57.447852],
       [-152.722651, 57.433352],
       [-152.67325, 57.413246],
       [-152.630018, 57.405573],
       [-152.620377, 57.401601],
       [-152.601148, 57.382165],
       [-152.606522, 57.36366],
       [-152.630441, 57.322668],
       [-152.657569, 57.303551],
       [-152.695698, 57.281318],
       [-152.707768, 57.276046],
       [-152.712008, 57.27812],
       [-152.774155, 57.290432],
       [-152.787994, 57.279905],
       [-152.818187, 57.265368],
       [-152.886384, 57.291337],
       [-152.900688, 57.302976],
       [-152.909051, 57.324222],
       [-152.984715, 57.339918],
       [-153.008525, 57.339733],
       [-153.056007, 57.329229],
       [-153.079288, 57.32196],
       [-153.09904, 57.310513],
       [-153.11628, 57.297312],
       [-153.101322, 57.286901],
       [-153.096133, 57.286866],
       [-153.039134, 57.293314],
       [-153.017643, 57.297715],
       [-153.015994, 57.300231],
       [-153.012992, 57.299453],
       [-152.97091, 57.282624],
       [-152.944201, 57.259083],
       [-152.943463, 57.256956],
       [-152.950982, 57.248991],
       [-152.997739, 57.231176],
       [-153.056971, 57.214756],
       [-153.077916, 57.211444],
       [-153.125477, 57.211841],
       [-153.163333, 57.216713],
       [-153.169724, 57.220236],
       [-153.201722, 57.221679],
       [-153.209732, 57.218773],
       [-153.215107, 57.213356],
       [-153.215967, 57.209297],
       [-153.213802, 57.205059],
       [-153.166002, 57.180643],
       [-153.123865, 57.175445],
       [-153.097019, 57.183289],
       [-153.073982, 57.187091],
       [-152.949333, 57.187346],
       [-152.880321, 57.164798],
       [-152.874839, 57.16095],
       [-152.869797, 57.150849],
       [-152.90054, 57.132076],
       [-152.911371, 57.126813],
       [-152.950736, 57.119788],
       [-152.997246, 57.119491],
       [-153.118673, 57.091033],
       [-153.128881, 57.092571],
       [-153.132708, 57.094936],
       [-153.133988, 57.099351],
       [-153.146361, 57.100883],
       [-153.18001, 57.094523],
       [-153.21544, 57.075943],
       [-153.220953, 57.068239],
       [-153.22224, 57.061798],
       [-153.221204, 57.060367],
       [-153.213318, 57.055891],
       [-153.205384, 57.056148],
       [-153.200217, 57.042039],
       [-153.204319, 57.03364],
       [-153.235282, 57.007398],
       [-153.301142, 56.991192],
       [-153.312583, 56.991486],
       [-153.348707, 57.008373],
       [-153.349037, 57.011196],
       [-153.320929, 57.036838],
       [-153.324265, 57.043308],
       [-153.365239, 57.07208],
       [-153.396921, 57.060399],
       [-153.402608, 57.070092],
       [-153.404263, 57.080511],
       [-153.384699, 57.115354],
       [-153.380389, 57.120468],
       [-153.345533, 57.139565],
       [-153.328206, 57.141993],
       [-153.284012, 57.173867],
       [-153.282735, 57.175815],
       [-153.286351, 57.184288],
       [-153.310143, 57.194426],
       [-153.350266, 57.192339],
       [-153.36818, 57.185337],
       [-153.368921, 57.180832],
       [-153.366525, 57.176708],
       [-153.48652, 57.085915],
       [-153.4896, 57.074702],
       [-153.49885, 57.065363],
       [-153.535942, 57.077988],
       [-153.563562, 57.089769],
       [-153.577006, 57.093177],
       [-153.654497, 57.084602],
       [-153.675981, 57.06983],
       [-153.675736, 57.054778],
       [-153.66381, 57.053694],
       [-153.601294, 57.056656],
       [-153.595819, 57.056309],
       [-153.580831, 57.049048],
       [-153.543429, 56.995245],
       [-153.556762, 56.968862],
       [-153.600664, 56.942629],
       [-153.627483, 56.937127],
       [-153.671317, 56.932926],
       [-153.701197, 56.926394],
       [-153.730713, 56.893996],
       [-153.715263, 56.878442],
       [-153.704603, 56.878046],
       [-153.695896, 56.881009],
       [-153.688713, 56.871975],
       [-153.696693, 56.861519],
       [-153.714644, 56.852925],
       [-153.778199, 56.834386],
       [-153.796111, 56.842655],
       [-153.800935, 56.846894],
       [-153.807353, 56.848584],
       [-153.817978, 56.848651],
       [-153.849289, 56.838915],
       [-153.854196, 56.836412],
       [-153.90358, 56.793418],
       [-153.924041, 56.767216],
       [-153.963274, 56.7476],
       [-153.97178, 56.744861],
       [-153.990158, 56.743263],
       [-154.016213, 56.743466],
       [-154.02261, 56.755946],
       [-154.037153, 56.763414],
       [-154.050518, 56.763523],
       [-154.064292, 56.760091],
       [-154.085088, 56.751193],
       [-154.106565, 56.745572],
       [-154.129017, 56.742168],
       [-154.136965, 56.742359],
       [-154.148745, 56.745677],
       [-154.125431, 56.783298],
       [-154.072878, 56.841099],
       [-154.067425, 56.845303],
       [-154.055228, 56.850465],
       [-154.040948, 56.854135],
       [-154.030502, 56.855052],
       [-153.984547, 56.889626],
       [-153.935992, 56.915772],
       [-153.894564, 56.926986],
       [-153.862954, 56.944374],
       [-153.850464, 56.957278],
       [-153.873411, 56.963403],
       [-153.902802, 56.968445],
       [-153.913627, 56.965391],
       [-153.917703, 56.962169],
       [-153.934781, 56.958928],
       [-153.976871, 56.955144],
       [-153.979743, 56.962189],
       [-153.976869, 56.996831],
       [-153.932221, 57.06297],
       [-153.887461, 57.086958],
       [-153.875356, 57.089802],
       [-153.858891, 57.088844],
       [-153.804787, 57.113158],
       [-153.783465, 57.131822],
       [-153.776707, 57.142858],
       [-153.779087, 57.158821],
       [-153.788521, 57.161381],
       [-153.80629, 57.157424],
       [-153.822875, 57.142372],
       [-153.823978, 57.13979],
       [-153.861711, 57.119224],
       [-153.982792, 57.066277],
       [-153.993807, 57.050502],
       [-154.024288, 57.016608],
       [-154.055554, 56.987209],
       [-154.076623, 56.970589],
       [-154.123489, 56.95617],
       [-154.145167, 56.945034],
       [-154.159014, 56.945323],
       [-154.165409, 56.943244],
       [-154.21211, 56.909749],
       [-154.22356, 56.896064],
       [-154.227193, 56.883026],
       [-154.226494, 56.876257],
       [-154.231771, 56.872294],
       [-154.276739, 56.853648],
       [-154.298965, 56.846479],
       [-154.305713, 56.846871],
       [-154.300193, 56.852023],
       [-154.298422, 56.863176],
       [-154.300002, 56.892252],
       [-154.306936, 56.911783],
       [-154.312888, 56.918673],
       [-154.385285, 56.959767],
       [-154.40749, 56.968334],
       [-154.476315, 56.984204],
       [-154.511672, 56.988548],
       [-154.524695, 56.991623],
       [-154.528538, 57.001892],
       [-154.516842, 57.030312],
       [-154.515213, 57.077985],
       [-154.529844, 57.168882],
       [-154.533699, 57.183513],
       [-154.539552, 57.196351],
       [-154.574343, 57.239919],
       [-154.594977, 57.257161],
       [-154.613723, 57.2678],
       [-154.691855, 57.28411],
       [-154.698264, 57.284294],
       [-154.740161, 57.276517],
       [-154.777368, 57.280008],
       [-154.792054, 57.286696],
       [-154.79384, 57.288862],
       [-154.751537, 57.307781],
       [-154.74309, 57.31477],
       [-154.700598, 57.401162],
       [-154.699629, 57.412873],
       [-154.702588, 57.420528],
       [-154.69331, 57.446085],
       [-154.629678, 57.510197],
       [-154.618704, 57.514972],
       [-154.602546, 57.518751],
       [-154.591678, 57.518597],
       [-154.540923, 57.539621],
       [-154.52206, 57.577786],
       [-154.511233, 57.578646],
       [-154.500282, 57.574423],
       [-154.468328, 57.570339],
       [-154.431841, 57.584783],
       [-154.411385, 57.598452],
       [-154.344244, 57.630901],
       [-154.22566, 57.661366],
       [-154.196959, 57.664639],
       [-154.186597, 57.658578],
       [-154.08613, 57.649054],
       [-154.056226, 57.65243],
       [-154.031592, 57.660854],
       [-153.994572, 57.656905],
       [-153.983015, 57.649835],
       [-153.982581, 57.648251],
       [-153.984847, 57.604595],
       [-153.982199, 57.553156],
       [-153.971114, 57.539436],
       [-153.94755, 57.540244],
       [-153.939099, 57.538271],
       [-153.929265, 57.533253],
       [-153.925905, 57.529051],
       [-153.922982, 57.520153],
       [-153.922183, 57.499036],
       [-153.919897, 57.485202],
       [-153.909415, 57.442413],
       [-153.8958, 57.422108],
       [-153.802932, 57.350896],
       [-153.795299, 57.349047],
       [-153.774275, 57.360243],
       [-153.773191, 57.372442],
       [-153.811506, 57.412375],
       [-153.872922, 57.445743],
       [-153.874177, 57.447817],
       [-153.888891, 57.504682],
       [-153.87595, 57.542769],
       [-153.869096, 57.551844],
       [-153.848082, 57.560589],
       [-153.824823, 57.577617],
       [-153.813136, 57.588581],
       [-153.823753, 57.597651],
       [-153.846828, 57.612648],
       [-153.852502, 57.613517],
       [-153.877756, 57.629529],
       [-153.879943, 57.634072],
       [-153.874286, 57.64611],
       [-153.868275, 57.649688],
       [-153.858545, 57.651138],
       [-153.749178, 57.646224],
       [-153.705322, 57.640923],
       [-153.667261, 57.639008],
       [-153.663007, 57.639858],
       [-153.648693, 57.654125],
       [-153.658008, 57.66148],
       [-153.676721, 57.669663],
       [-153.797971, 57.696508],
       [-153.862886, 57.706943],
       [-153.888099, 57.705447],
       [-153.918344, 57.695663],
       [-153.930279, 57.696791],
       [-153.932964, 57.703778],
       [-153.93522, 57.813047],
       [-153.823385, 57.865013],
       [-153.755054, 57.883565],
       [-153.721176, 57.890615],
       [-153.648798, 57.880103],
       [-153.571362, 57.832101],
       [-153.550823, 57.78689],
       [-153.551088, 57.76311],
       [-153.553251, 57.759512],
       [-153.557647, 57.734741],
       [-153.554226, 57.72245],
       [-153.549605, 57.717967],
       [-153.515205, 57.716505],
       [-153.493401, 57.728316],
       [-153.469892, 57.766536],
       [-153.462463, 57.795292],
       [-153.480377, 57.814665],
       [-153.48735, 57.834274],
       [-153.479457, 57.84202],
       [-153.45156, 57.839284],
       [-153.406716, 57.828663],
       [-153.35358, 57.809731],
       [-153.343408, 57.810866],
       [-153.324872, 57.831048],
       [-153.322687, 57.83619],
       [-153.324881, 57.848421],
       [-153.328137, 57.849851],
       [-153.395813, 57.858772],
       [-153.446406, 57.875035],
       [-153.462011, 57.880588],
       [-153.512024, 57.909156],
       [-153.528697, 57.921717],
       [-153.536524, 57.93077],
       [-153.533204, 57.941117],
       [-153.520392, 57.963387],
       [-153.513347, 57.968751],
       [-153.484603, 57.9765],
       [-153.469421, 57.977282],
       [-153.461113, 57.972769],
       [-153.452645, 57.963509],
       [-153.273676, 57.890408],
       [-153.268149, 57.888741],
       [-153.236952, 57.891818],
       [-153.127278, 57.856748],
       [-153.122513, 57.856639],
       [-153.09342, 57.861569],
       [-153.089419, 57.865233],
       [-153.198618, 57.929923],
       [-153.233229, 57.940993],
       [-153.270325, 57.958566],
       [-153.299009, 57.985626],
       [-153.302198, 57.991706],
       [-153.297756, 57.996425],
       [-153.276536, 57.998447],
       [-153.23473, 57.996972],
       [-153.221576, 57.989319],
       [-153.217306, 57.983659],
       [-153.129494, 57.946551],
       [-153.069857, 57.934428],
       [-153.052671, 57.936711],
       [-153.050941, 57.939998],
       [-153.024425, 57.956954],
       [-152.876197, 57.932446],
       [-152.871663, 57.933279],
       [-152.856284, 57.947385],
       [-152.852785, 57.974583],
       [-152.855096, 57.994501],
       [-152.840896, 57.996759],
       [-152.723425, 57.99172],
       [-152.722524, 57.987364],
       [-152.739766, 57.944798],
       [-152.751978, 57.933466],
       [-152.804807, 57.899175],
       [-152.823299, 57.890928],
       [-152.892517, 57.842525],
       [-152.902633, 57.830146],
       [-152.909791, 57.810405],
       [-152.916334, 57.771216],
       [-152.904312, 57.750825],
       [-152.892875, 57.742012],
       [-152.881998, 57.73832],
       [-152.874498, 57.737961],
       [-152.850336, 57.740041],
       [-152.847811, 57.746625],
       [-152.852269, 57.752318],
       [-152.854718, 57.770271],
       [-152.849997, 57.821462],
       [-152.841361, 57.830221],
       [-152.822543, 57.843203],
       [-152.790211, 57.858058],
       [-152.758168, 57.840272],
       [-152.753437, 57.834452],
       [-152.725302, 57.8354],
       [-152.650456, 57.863721],
       [-152.625607, 57.881232],
       [-152.626441, 57.89045],
       [-152.639887, 57.899688],
       [-152.641805, 57.902499],
       [-152.639375, 57.91422],
       [-152.635378, 57.91861],
       [-152.587705, 57.926961],
       [-152.585985, 57.908101],
       [-152.567395, 57.900358],
       [-152.549661, 57.900137],
       [-152.526283, 57.913266],
       [-152.487666, 57.941968],
       [-152.470336, 57.962099],
       [-152.432608, 57.976029],
       [-152.421408, 57.975683],
       [-152.415177, 57.973081],
       [-152.411618, 57.969282],
       [-152.422573, 57.948662],
       [-152.437604, 57.939834],
       [-152.437416, 57.936978],
       [-152.426458, 57.930851],
       [-152.388626, 57.924486],
       [-152.362161, 57.9262],
       [-152.324103, 57.916604],
       [-152.333209, 57.90255],
       [-152.364777, 57.883921],
       [-152.377063, 57.886728],
       [-152.38613, 57.890706],
       [-152.39475, 57.894602],
       [-152.4037, 57.901146],
       [-152.414977, 57.902231],
       [-152.44824, 57.902605],
       [-152.468511, 57.888621],
       [-152.433653, 57.824314],
       [-152.429326, 57.820114],
       [-152.417424, 57.815464]]],
     [[[-152.24289, 58.241192],
       [-152.280629, 58.242344],
       [-152.311415, 58.221115],
       [-152.265111, 58.135732],
       [-152.273605, 58.12563],
       [-152.343522, 58.119174],
       [-152.401892, 58.120755],
       [-152.425391, 58.127614],
       [-152.482674, 58.129813],
       [-152.514794, 58.114321],
       [-152.529036, 58.093779],
       [-152.530388, 58.087766],
       [-152.541533, 58.083666],
       [-152.554461, 58.08462],
       [-152.557237, 58.086462],
       [-152.569595, 58.1148],
       [-152.557497, 58.160683],
       [-152.559884, 58.170941],
       [-152.562829, 58.177979],
       [-152.584222, 58.187477],
       [-152.597506, 58.179686],
       [-152.615103, 58.116224],
       [-152.631214, 58.081924],
       [-152.656801, 58.061049],
       [-152.706831, 58.050577],
       [-152.771303, 58.046883],
       [-152.777906, 58.050364],
       [-152.779473, 58.065269],
       [-152.792041, 58.072665],
       [-152.809062, 58.078917],
       [-152.882423, 58.096074],
       [-152.95868, 58.116441],
       [-152.973149, 58.125427],
       [-152.983857, 58.134358],
       [-152.99734, 58.134341],
       [-153.075746, 58.099571],
       [-153.076485, 58.096077],
       [-153.057201, 58.073576],
       [-153.036131, 58.055619],
       [-153.020589, 58.045202],
       [-152.9647, 58.03465],
       [-152.876788, 58.002307],
       [-152.871836, 57.999275],
       [-152.871416, 57.997157],
       [-152.947547, 57.983519],
       [-152.982406, 57.984697],
       [-153.097462, 58.004516],
       [-153.202525, 58.030122],
       [-153.209885, 58.034925],
       [-153.214568, 58.042418],
       [-153.218115, 58.043909],
       [-153.289701, 58.05033],
       [-153.344807, 58.040619],
       [-153.365574, 58.039052],
       [-153.419783, 58.059638],
       [-153.418343, 58.064053],
       [-153.412933, 58.069811],
       [-153.316127, 58.14039],
       [-153.281874, 58.147555],
       [-153.274215, 58.148102],
       [-153.262643, 58.145099],
       [-153.227567, 58.123364],
       [-153.199117, 58.102005],
       [-153.168617, 58.088385],
       [-153.156402, 58.090087],
       [-153.14874, 58.106121],
       [-153.167605, 58.127818],
       [-153.209672, 58.15035],
       [-153.223709, 58.16212],
       [-153.202801, 58.20808],
       [-153.170101, 58.216704],
       [-153.073927, 58.195107],
       [-153.060846, 58.194502],
       [-153.036662, 58.199235],
       [-153.000579, 58.211768],
       [-152.998094, 58.214122],
       [-153.006979, 58.221847],
       [-153.061678, 58.235649],
       [-153.082507, 58.244495],
       [-153.101841, 58.257938],
       [-153.10241, 58.260344],
       [-153.099284, 58.264065],
       [-153.044316, 58.306336],
       [-153.00439, 58.300135],
       [-152.993217, 58.296254],
       [-152.982356, 58.287495],
       [-152.94127, 58.279614],
       [-152.888204, 58.2831],
       [-152.878858, 58.288533],
       [-152.869811, 58.304906],
       [-152.884023, 58.307087],
       [-152.91245, 58.307191],
       [-152.921122, 58.313268],
       [-152.936757, 58.330513],
       [-152.93644, 58.334923],
       [-152.925586, 58.339686],
       [-152.895407, 58.345305],
       [-152.870555, 58.335743],
       [-152.821964, 58.328501],
       [-152.804789, 58.33951],
       [-152.774048, 58.366826],
       [-152.78742, 58.369015],
       [-152.839234, 58.372477],
       [-152.883107, 58.400443],
       [-152.88886, 58.409384],
       [-152.886358, 58.410585],
       [-152.864939, 58.40434],
       [-152.844173, 58.402842],
       [-152.812207, 58.403464],
       [-152.787776, 58.411313],
       [-152.774509, 58.419721],
       [-152.771106, 58.429515],
       [-152.733845, 58.460662],
       [-152.723169, 58.46208],
       [-152.68994, 58.459861],
       [-152.610955, 58.475775],
       [-152.601666, 58.490423],
       [-152.600534, 58.494946],
       [-152.60903, 58.496167],
       [-152.619197, 58.493674],
       [-152.622794, 58.494189],
       [-152.653673, 58.506572],
       [-152.66622, 58.544087],
       [-152.665999, 58.564493],
       [-152.638569, 58.587448],
       [-152.61613, 58.601852],
       [-152.56771, 58.621304],
       [-152.560171, 58.61968],
       [-152.550418, 58.610996],
       [-152.549635, 58.601024],
       [-152.545009, 58.594253],
       [-152.50282, 58.593451],
       [-152.453817, 58.618515],
       [-152.354709, 58.63828],
       [-152.337964, 58.637404],
       [-152.329835, 58.632102],
       [-152.337212, 58.589095],
       [-152.372317, 58.531175],
       [-152.38761, 58.52287],
       [-152.418267, 58.515244],
       [-152.467197, 58.476609],
       [-152.498571, 58.449538],
       [-152.505516, 58.441876],
       [-152.512483, 58.427349],
       [-152.493991, 58.354684],
       [-152.476814, 58.350955],
       [-152.387343, 58.359499],
       [-152.364682, 58.364613],
       [-152.34486, 58.39163],
       [-152.348389, 58.401502],
       [-152.355073, 58.413052],
       [-152.358724, 58.415585],
       [-152.35609, 58.42347],
       [-152.328063, 58.434372],
       [-152.320554, 58.433829],
       [-152.301713, 58.428697],
       [-152.279508, 58.415872],
       [-152.227835, 58.376424],
       [-152.234718, 58.362024],
       [-152.224965, 58.357372],
       [-152.200953, 58.355332],
       [-152.129257, 58.396414],
       [-152.125339, 58.396396],
       [-152.090437, 58.372628],
       [-152.08925, 58.367644],
       [-152.11953, 58.32977],
       [-152.138294, 58.295712],
       [-152.147142, 58.266992],
       [-152.146519, 58.24912],
       [-152.116569, 58.248537],
       [-152.107962, 58.260525],
       [-152.107635, 58.28024],
       [-152.082342, 58.309945],
       [-151.986171, 58.350413],
       [-151.981781, 58.347971],
       [-151.966218, 58.332737],
       [-151.963817, 58.328999],
       [-151.964103, 58.269049],
       [-151.972053, 58.230702],
       [-151.986127, 58.213774],
       [-152.081083, 58.154275],
       [-152.112205, 58.148559],
       [-152.194827, 58.174128],
       [-152.223175, 58.194794],
       [-152.224439, 58.202365],
       [-152.219826, 58.206289],
       [-152.207488, 58.206284],
       [-152.203699, 58.212055],
       [-152.23383, 58.243329],
       [-152.24289, 58.241192]]]]},
   'id': '02150'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02164',
    'STATE': '02',
    'COUNTY': '164',
    'NAME': 'Lake and Peninsula',
    'LSAD': 'Borough',
    'CENSUSAREA': 23652.009},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-157.02607, 56.559757],
       [-156.990969, 56.547939],
       [-156.975549, 56.540446],
       [-156.972896, 56.536505],
       [-156.98609, 56.532749],
       [-157.003409, 56.535639],
       [-157.006523, 56.53891],
       [-157.017711, 56.543081],
       [-157.053384, 56.550425],
       [-157.113193, 56.552658],
       [-157.121393, 56.551963],
       [-157.142219, 56.54239],
       [-157.150309, 56.5336],
       [-157.168777, 56.53021],
       [-157.326059, 56.525169],
       [-157.328898, 56.528155],
       [-157.32611, 56.540375],
       [-157.298635, 56.560051],
       [-157.288702, 56.566039],
       [-157.250098, 56.582142],
       [-157.146636, 56.583651],
       [-157.091146, 56.581134],
       [-157.077383, 56.579035],
       [-157.02607, 56.559757]]],
     [[[-154.305926, 58.646822],
       [-154.303447, 58.460385],
       [-154.432332, 58.418998],
       [-154.465741, 58.361356],
       [-154.570107, 58.333055],
       [-154.729769, 58.332837],
       [-154.730369, 58.304669],
       [-155.008132, 58.290905],
       [-155.057741, 58.236209],
       [-155.221463, 58.236408],
       [-155.221313, 58.193193],
       [-155.331945, 58.193283],
       [-155.331999, 58.107967],
       [-155.280169, 58.108591],
       [-155.331678, 58.048211],
       [-155.330245, 57.876343],
       [-155.44602, 57.871459],
       [-155.446251, 57.827094],
       [-155.53883, 57.799806],
       [-155.693773, 57.797987],
       [-155.768022, 57.668261],
       [-155.898455, 57.6681],
       [-155.87199, 57.599963],
       [-155.921548, 57.554334],
       [-155.952772, 57.598213],
       [-156.071148, 57.584424],
       [-156.132032, 57.509692],
       [-156.370235, 57.522368],
       [-156.458121, 57.478905],
       [-156.508759, 57.434831],
       [-156.502226, 57.362606],
       [-156.617395, 57.334942],
       [-156.672751, 57.234909],
       [-156.75078, 57.235795],
       [-156.750815, 57.162878],
       [-156.355401, 57.159679],
       [-156.357358, 57.15757],
       [-156.368524, 57.149986],
       [-156.43511, 57.12743],
       [-156.456497, 57.106041],
       [-156.44461, 57.100087],
       [-156.441566, 57.094698],
       [-156.441599, 57.085158],
       [-156.509239, 57.054911],
       [-156.535587, 57.047905],
       [-156.562827, 57.020314],
       [-156.547667, 57.004629],
       [-156.5472, 56.986488],
       [-156.55052, 56.98461],
       [-156.555077, 56.98355],
       [-156.63784, 56.993905],
       [-156.753642, 56.991225],
       [-156.762718, 56.986342],
       [-156.781421, 56.971879],
       [-156.7869, 56.965035],
       [-156.788341, 56.960693],
       [-156.786802, 56.941443],
       [-156.79731, 56.911717],
       [-156.804432, 56.905881],
       [-156.825982, 56.897667],
       [-156.839322, 56.901854],
       [-156.876316, 56.942828],
       [-156.885372, 56.953284],
       [-156.885686, 56.957965],
       [-156.882464, 56.960072],
       [-156.882893, 56.962582],
       [-156.886307, 56.964869],
       [-156.893683, 56.965965],
       [-156.909725, 56.965581],
       [-156.918796, 56.963583],
       [-156.935692, 56.954873],
       [-156.935629, 56.920087],
       [-156.986171, 56.911131],
       [-157.00595, 56.90422],
       [-157.015665, 56.898486],
       [-157.034624, 56.884487],
       [-157.073453, 56.838345],
       [-157.159494, 56.833477],
       [-157.163811, 56.826066],
       [-157.163272, 56.823542],
       [-157.14099, 56.802275],
       [-157.140277, 56.790874],
       [-157.161372, 56.774134],
       [-157.183636, 56.769079],
       [-157.201724, 56.767511],
       [-157.283764, 56.800766],
       [-157.290511, 56.804713],
       [-157.291231, 56.811077],
       [-157.298283, 56.818567],
       [-157.332735, 56.838398],
       [-157.378771, 56.861696],
       [-157.394663, 56.864426],
       [-157.405679, 56.864216],
       [-157.436932, 56.858522],
       [-157.45759, 56.848204],
       [-157.472407, 56.833356],
       [-157.469925, 56.824889],
       [-157.462361, 56.809603],
       [-157.457622, 56.804291],
       [-157.447768, 56.801246],
       [-157.436358, 56.803781],
       [-157.42112, 56.801691],
       [-157.41856, 56.799821],
       [-157.411488, 56.778351],
       [-157.41344, 56.769185],
       [-157.517478, 56.760839],
       [-157.530765, 56.753775],
       [-157.544855, 56.738945],
       [-157.551196, 56.730314],
       [-157.563802, 56.703426],
       [-157.550792, 56.681029],
       [-157.542295, 56.67532],
       [-157.507589, 56.667169],
       [-157.498689, 56.667285],
       [-157.48099, 56.671419],
       [-157.479153, 56.67008],
       [-157.45216, 56.64322],
       [-157.452196, 56.638863],
       [-157.45486, 56.634748],
       [-157.462105, 56.625685],
       [-157.466497, 56.623266],
       [-157.496523, 56.616897],
       [-157.536486, 56.615317],
       [-157.546085, 56.619025],
       [-157.589315, 56.622262],
       [-157.605231, 56.621315],
       [-157.615041, 56.62002],
       [-157.636018, 56.612838],
       [-157.674587, 56.609507],
       [-157.705382, 56.62878],
       [-157.71428, 56.640575],
       [-157.715998, 56.648492],
       [-157.719048, 56.653084],
       [-157.736799, 56.675616],
       [-157.754141, 56.679468],
       [-157.763698, 56.679247],
       [-157.920045, 56.658636],
       [-157.933988, 56.654571],
       [-158.042012, 56.596744],
       [-158.042839, 56.58185],
       [-158.039356, 56.574884],
       [-158.001041, 56.572097],
       [-157.975222, 56.585722],
       [-157.958745, 56.588304],
       [-157.906647, 56.590925],
       [-157.83842, 56.56076],
       [-157.828139, 56.546332],
       [-157.817826, 56.51421],
       [-157.823072, 56.501982],
       [-157.859766, 56.483668],
       [-157.865642, 56.483285],
       [-157.886126, 56.487805],
       [-157.954625, 56.515845],
       [-158.027621, 56.511779],
       [-158.112276, 56.521322],
       [-158.11957, 56.518346],
       [-158.131729, 56.501944],
       [-158.123352, 56.496457],
       [-158.113709, 56.493001],
       [-158.111603, 56.49011],
       [-158.118682, 56.466558],
       [-158.12744, 56.460805],
       [-158.246144, 56.466124],
       [-158.284699, 56.481089],
       [-158.328798, 56.484208],
       [-158.402954, 56.455193],
       [-158.498837, 56.38011],
       [-158.501705, 56.37586],
       [-158.50204, 56.365178],
       [-158.489546, 56.341865],
       [-158.432795, 56.343505],
       [-158.397337, 56.328921],
       [-158.338137, 56.323923],
       [-158.329735, 56.326028],
       [-158.322563, 56.325242],
       [-158.207387, 56.294354],
       [-158.203083, 56.283833],
       [-158.21654, 56.269451],
       [-158.253331, 56.253125],
       [-158.276842, 56.248698],
       [-158.334506, 56.23294],
       [-158.339765, 56.217807],
       [-158.331039, 56.213609],
       [-158.264792, 56.209597],
       [-158.19096, 56.226407],
       [-158.17493, 56.236227],
       [-158.119493, 56.241995],
       [-158.115282, 56.242102],
       [-158.112718, 56.240286],
       [-158.117797, 56.230742],
       [-158.237025, 56.187387],
       [-158.314128, 56.163697],
       [-158.374324, 56.134522],
       [-158.395996, 56.109834],
       [-158.394388, 56.091949],
       [-158.394922, 56.064721],
       [-158.398324, 56.062957],
       [-158.424451, 56.068899],
       [-158.438644, 56.093672],
       [-158.438315, 56.095702],
       [-158.431105, 56.100264],
       [-158.432229, 56.102881],
       [-158.439944, 56.10778],
       [-158.455297, 56.108742],
       [-158.46181, 56.106644],
       [-158.475258, 56.093405],
       [-158.472706, 56.087583],
       [-158.448413, 56.055278],
       [-158.417889, 56.036796],
       [-158.407723, 56.014521],
       [-158.413645, 56.004951],
       [-158.431471, 55.994452],
       [-158.43933, 55.99362],
       [-158.445696, 55.99758],
       [-158.467335, 56.027219],
       [-158.475543, 56.028366],
       [-158.501967, 56.02517],
       [-158.50485, 56.015544],
       [-158.496366, 56.010601],
       [-158.494015, 56.00732],
       [-158.495114, 55.989207],
       [-158.49905, 55.981685],
       [-158.50984, 55.979617],
       [-158.59562, 56.045252],
       [-158.598367, 56.048822],
       [-158.594188, 56.110445],
       [-158.584362, 56.115657],
       [-158.574659, 56.11864],
       [-158.575042, 56.121129],
       [-158.600405, 56.130444],
       [-158.628303, 56.120943],
       [-158.640447, 56.114079],
       [-158.659738, 56.098553],
       [-158.666818, 56.078415],
       [-158.660914, 56.034928],
       [-158.651674, 56.031358],
       [-158.643216, 56.023415],
       [-158.638704, 56.015932],
       [-158.636689, 56.005007],
       [-158.639497, 55.98607],
       [-158.653214, 55.958615],
       [-158.673246, 55.951485],
       [-158.737009, 55.953313],
       [-158.74856, 55.959365],
       [-158.751215, 55.963759],
       [-158.735348, 55.996208],
       [-158.729567, 56.002854],
       [-158.747305, 56.009908],
       [-158.854132, 56.003343],
       [-158.898116, 55.951041],
       [-158.909396, 55.934887],
       [-158.999598, 55.927011],
       [-159.138748, 55.90932],
       [-159.271514, 55.890704],
       [-159.347681, 55.877802],
       [-159.374842, 55.871522],
       [-159.3964, 55.856767],
       [-159.400096, 55.852357],
       [-159.406126, 55.831956],
       [-159.40938, 55.810434],
       [-159.404326, 55.796992],
       [-159.411505, 55.788911],
       [-159.423468, 55.789025],
       [-159.434787, 55.792909],
       [-159.470216, 55.828911],
       [-159.472801, 55.83905],
       [-159.471973, 55.843506],
       [-159.465282, 55.852845],
       [-159.453945, 55.89682],
       [-159.482226, 55.901826],
       [-159.493883, 55.900109],
       [-159.528349, 55.888458],
       [-159.534415, 55.881299],
       [-159.498022, 55.855299],
       [-159.494404, 55.765798],
       [-159.503768, 55.747878],
       [-159.521589, 55.736021],
       [-159.537152, 55.728459],
       [-159.551432, 55.711543],
       [-159.552016, 55.704794],
       [-159.535961, 55.689831],
       [-159.530117, 55.665394],
       [-159.545115, 55.646517],
       [-159.564413, 55.633045],
       [-159.564669, 55.888484],
       [-159.868099, 55.888481],
       [-159.867858, 55.982594],
       [-159.805267, 55.982595],
       [-159.809651, 56.321694],
       [-159.903652, 56.322594],
       [-159.899424, 56.491981],
       [-159.59341, 56.494524],
       [-159.592657, 56.580917],
       [-159.275491, 56.580921],
       [-159.275496, 56.671762],
       [-159.028589, 56.669419],
       [-159.028594, 56.754058],
       [-158.891034, 56.75422],
       [-158.893211, 56.805788],
       [-158.868797, 56.796648],
       [-158.853294, 56.79262],
       [-158.78359, 56.78075],
       [-158.660298, 56.789015],
       [-158.642293, 56.81285],
       [-158.642845, 56.836608],
       [-158.646812, 56.846992],
       [-158.663659, 56.857055],
       [-158.699788, 56.927362],
       [-158.679293, 56.988625],
       [-158.659945, 57.034585],
       [-158.637364, 57.061364],
       [-158.518429, 57.16055],
       [-158.453711, 57.21179],
       [-158.376249, 57.265542],
       [-158.355066, 57.27485],
       [-158.229883, 57.321534],
       [-158.14971, 57.344916],
       [-158.06703, 57.382915],
       [-158.060041, 57.387456],
       [-158.049932, 57.390141],
       [-158.034246, 57.39023],
       [-158.010538, 57.401456],
       [-157.99467, 57.414234],
       [-157.956239, 57.449383],
       [-157.937241, 57.472048],
       [-157.931624, 57.476208],
       [-157.786046, 57.542189],
       [-157.772496, 57.547055],
       [-157.703852, 57.563455],
       [-157.678891, 57.563888],
       [-157.684833, 57.557746],
       [-157.680416, 57.537727],
       [-157.649389, 57.500331],
       [-157.615137, 57.488691],
       [-157.58691, 57.487156],
       [-157.573129, 57.514525],
       [-157.573472, 57.522732],
       [-157.588339, 57.582152],
       [-157.599644, 57.60795],
       [-157.607387, 57.612537],
       [-157.652202, 57.614794],
       [-157.684282, 57.609974],
       [-157.691291, 57.611131],
       [-157.710645, 57.639946],
       [-157.703782, 57.721768],
       [-157.671061, 57.772866],
       [-157.642226, 57.868777],
       [-157.623886, 57.960502],
       [-157.611802, 58.034263],
       [-157.596601, 58.08867],
       [-157.583636, 58.124307],
       [-157.580924, 58.128096],
       [-157.556556, 58.148445],
       [-157.533329, 58.160335],
       [-157.514474, 58.162978],
       [-157.493784, 58.162148],
       [-157.39735, 58.173383],
       [-157.383099, 58.184607],
       [-157.352316, 58.219097],
       [-157.366928, 58.232669],
       [-157.374511, 58.232117],
       [-157.389237, 58.228091],
       [-157.407918, 58.211871],
       [-157.423325, 58.21136],
       [-157.442712, 58.218875],
       [-157.515475, 58.255638],
       [-157.541564, 58.271883],
       [-157.547209, 58.277535],
       [-157.556343, 58.303749],
       [-157.556865, 58.330715],
       [-157.536176, 58.391597],
       [-157.524477, 58.414506],
       [-157.488108, 58.471705],
       [-157.481487, 58.480771],
       [-157.46088, 58.499693],
       [-157.451918, 58.505618],
       [-157.397197, 58.527333],
       [-157.380259, 58.524398],
       [-157.358487, 58.533876],
       [-157.330683, 58.551516],
       [-157.313572, 58.565043],
       [-157.281327, 58.600236],
       [-157.267437, 58.609794],
       [-156.317671, 58.60961],
       [-156.318135, 58.894948],
       [-156.985833, 58.888654],
       [-156.980888, 58.891031],
       [-156.966649, 58.904074],
       [-156.975946, 58.940896],
       [-157.029517, 58.956203],
       [-157.039206, 58.945921],
       [-157.040625, 58.913391],
       [-157.070584, 58.887816],
       [-157.070601, 58.887808],
       [-157.116866, 58.867533],
       [-157.158008, 58.860227],
       [-157.244151, 59.246208],
       [-157.074194, 59.244404],
       [-157.073256, 59.331538],
       [-156.729373, 59.328803],
       [-156.731184, 59.41617],
       [-156.635005, 59.415108],
       [-156.634489, 59.503988],
       [-156.464896, 59.502988],
       [-156.464798, 59.589388],
       [-156.123307, 59.588205],
       [-156.12205, 59.675185],
       [-155.95585, 59.677305],
       [-155.953624, 60.106238],
       [-155.9611, 60.907602],
       [-154.422064, 60.906969],
       [-153.436195, 60.908538],
       [-153.395016, 60.823291],
       [-153.394293, 60.472296],
       [-153.528484, 60.470611],
       [-153.531136, 60.122545],
       [-153.656579, 60.121433],
       [-153.654893, 59.784914],
       [-153.782943, 59.785049],
       [-153.783649, 59.696598],
       [-153.955889, 59.696099],
       [-153.954485, 59.520073],
       [-154.124374, 59.519551],
       [-154.121269, 59.431295],
       [-154.414557, 59.428681],
       [-154.409316, 59.25464],
       [-154.747693, 59.253095],
       [-154.745361, 59.076992],
       [-154.692093, 59.075956],
       [-154.692714, 58.734598],
       [-154.63942, 58.734693],
       [-154.63727, 58.64681],
       [-154.305926, 58.646822]]]]},
   'id': '02164'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02170',
    'STATE': '02',
    'COUNTY': '170',
    'NAME': 'Matanuska-Susitna',
    'LSAD': 'Borough',
    'CENSUSAREA': 24607.898},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-150.971775, 61.192041],
      [-150.972661, 61.253489],
      [-151.332978, 61.254634],
      [-151.334175, 61.424601],
      [-153.002181, 61.425686],
      [-153.001288, 62.106276],
      [-153.001262, 62.295331],
      [-153.001339, 62.72744],
      [-151.893149, 62.722992],
      [-151.888963, 62.795348],
      [-151.387904, 62.910327],
      [-149.506984, 63.332164],
      [-148.035867, 63.330788],
      [-148.032727, 63.469757],
      [-146.975489, 63.479746],
      [-146.489541, 63.482913],
      [-146.484119, 63.173325],
      [-146.428648, 62.863288],
      [-146.426334, 62.247221],
      [-146.981731, 62.248681],
      [-146.961638, 62.160211],
      [-146.941834, 61.811907],
      [-146.945124, 61.474349],
      [-147.205707, 61.475073],
      [-147.206028, 61.425265],
      [-148.460007, 61.426972],
      [-149.187447, 61.425285],
      [-149.237556, 61.483144],
      [-149.359442, 61.483938],
      [-149.792423, 61.388896],
      [-149.897888, 61.267043],
      [-149.986576, 61.228323],
      [-149.985874, 61.237515],
      [-150.074793, 61.2535],
      [-150.132634, 61.257915],
      [-150.204894, 61.259548],
      [-150.254296, 61.254501],
      [-150.266124, 61.251237],
      [-150.273575, 61.251559],
      [-150.286978, 61.257443],
      [-150.303688, 61.257467],
      [-150.303639, 61.255871],
      [-150.312226, 61.254029],
      [-150.334576, 61.251301],
      [-150.394411, 61.249107],
      [-150.425, 61.245552],
      [-150.468812, 61.244627],
      [-150.484391, 61.247262],
      [-150.495726, 61.251245],
      [-150.56167, 61.281487],
      [-150.590166, 61.281487],
      [-150.591842, 61.279485],
      [-150.606961, 61.277732],
      [-150.628459, 61.284407],
      [-150.646221, 61.296689],
      [-150.655804, 61.298173],
      [-150.66262, 61.295356],
      [-150.67125, 61.273652],
      [-150.679902, 61.265888],
      [-150.690497, 61.259297],
      [-150.711291, 61.251089],
      [-150.827295, 61.22839],
      [-150.84241, 61.224213],
      [-150.848842, 61.220588],
      [-150.895905, 61.208915],
      [-150.926773, 61.206351],
      [-150.939251, 61.210299],
      [-150.941944, 61.209947],
      [-150.946243, 61.208644],
      [-150.947155, 61.206299],
      [-150.947425, 61.20314],
      [-150.951153, 61.198778],
      [-150.960114, 61.194037],
      [-150.971775, 61.192041]]]},
   'id': '02170'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02180',
    'STATE': '02',
    'COUNTY': '180',
    'NAME': 'Nome',
    'LSAD': 'CA',
    'CENSUSAREA': 22961.761},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-169.267598, 63.343995],
       [-169.101961, 63.338022],
       [-169.087914, 63.340937],
       [-169.05195, 63.343127],
       [-168.999241, 63.341249],
       [-168.937385, 63.333789],
       [-168.936333, 63.330622],
       [-168.932623, 63.32914],
       [-168.796086, 63.308781],
       [-168.692939, 63.302282],
       [-168.685145, 63.296427],
       [-168.686675, 63.293022],
       [-168.716872, 63.256316],
       [-168.751537, 63.217962],
       [-168.783239, 63.184131],
       [-168.789266, 63.179646],
       [-168.818344, 63.163224],
       [-168.85875, 63.146958],
       [-168.871465, 63.146009],
       [-168.889683, 63.147708],
       [-168.950091, 63.160895],
       [-168.963577, 63.167104],
       [-168.983024, 63.169671],
       [-169.042674, 63.176511],
       [-169.105808, 63.178803],
       [-169.198398, 63.176011],
       [-169.262039, 63.169936],
       [-169.303477, 63.164439],
       [-169.375667, 63.151269],
       [-169.396308, 63.136617],
       [-169.436748, 63.113579],
       [-169.471949, 63.098565],
       [-169.51365, 63.084717],
       [-169.534984, 63.074355],
       [-169.561131, 63.055178],
       [-169.575873, 63.03645],
       [-169.576965, 63.027025],
       [-169.572777, 63.022118],
       [-169.568016, 62.976879],
       [-169.638309, 62.937527],
       [-169.746736, 62.955991],
       [-169.757249, 62.960087],
       [-169.757514, 62.963722],
       [-169.734938, 62.974468],
       [-169.734938, 62.976617],
       [-169.788466, 63.043015],
       [-169.829912, 63.07855],
       [-169.838511, 63.084339],
       [-169.88123, 63.105848],
       [-169.944056, 63.13236],
       [-169.987936, 63.142975],
       [-170.006196, 63.14454],
       [-170.021208, 63.1495],
       [-170.049622, 63.163377],
       [-170.051062, 63.167489],
       [-170.053402, 63.168858],
       [-170.101301, 63.1793],
       [-170.124354, 63.183665],
       [-170.154072, 63.186402],
       [-170.174421, 63.185464],
       [-170.186485, 63.181618],
       [-170.181985, 63.178804],
       [-170.193695, 63.177434],
       [-170.263032, 63.179147],
       [-170.281388, 63.186821],
       [-170.285648, 63.19457],
       [-170.279881, 63.197108],
       [-170.277915, 63.200239],
       [-170.277721, 63.208819],
       [-170.30363, 63.238692],
       [-170.337275, 63.266308],
       [-170.364806, 63.285596],
       [-170.430656, 63.314284],
       [-170.512102, 63.341881],
       [-170.55895, 63.354989],
       [-170.712572, 63.385975],
       [-170.865412, 63.414229],
       [-170.92345, 63.420859],
       [-170.967475, 63.42373],
       [-171.067663, 63.424579],
       [-171.100855, 63.42342],
       [-171.269249, 63.385386],
       [-171.280185, 63.381543],
       [-171.287157, 63.376642],
       [-171.288265, 63.374833],
       [-171.285411, 63.366464],
       [-171.290324, 63.355383],
       [-171.333089, 63.335393],
       [-171.433319, 63.307578],
       [-171.464455, 63.306915],
       [-171.562263, 63.334591],
       [-171.667115, 63.356166],
       [-171.739321, 63.366114],
       [-171.795297, 63.407853],
       [-171.818259, 63.429452],
       [-171.824872, 63.437141],
       [-171.849984, 63.485039],
       [-171.840382, 63.547724],
       [-171.833681, 63.580074],
       [-171.791881, 63.620625],
       [-171.757081, 63.640252],
       [-171.743979, 63.654905],
       [-171.742338, 63.665494],
       [-171.755552, 63.701173],
       [-171.754336, 63.71896],
       [-171.739918, 63.717096],
       [-171.733206, 63.720327],
       [-171.727986, 63.726791],
       [-171.725748, 63.734745],
       [-171.727986, 63.744938],
       [-171.737432, 63.76035],
       [-171.743398, 63.782971],
       [-171.738178, 63.784711],
       [-171.699647, 63.781728],
       [-171.692686, 63.782598],
       [-171.682494, 63.78757],
       [-171.673296, 63.788067],
       [-171.66733, 63.785581],
       [-171.659873, 63.775762],
       [-171.643963, 63.770791],
       [-171.638991, 63.759231],
       [-171.638246, 63.749536],
       [-171.641477, 63.745559],
       [-171.652912, 63.73922],
       [-171.652664, 63.73661],
       [-171.648935, 63.73487],
       [-171.646692, 63.729425],
       [-171.65263, 63.708523],
       [-171.649923, 63.70254],
       [-171.640027, 63.69343],
       [-171.632194, 63.688601],
       [-171.609439, 63.679832],
       [-171.521859, 63.658797],
       [-171.381677, 63.630646],
       [-171.202557, 63.606897],
       [-171.103558, 63.589268],
       [-171.044486, 63.580431],
       [-170.950817, 63.570127],
       [-170.907197, 63.572107],
       [-170.897581, 63.574676],
       [-170.859032, 63.587503],
       [-170.816581, 63.606329],
       [-170.698156, 63.646778],
       [-170.606282, 63.672732],
       [-170.488192, 63.696723],
       [-170.472181, 63.698677],
       [-170.462947, 63.698022],
       [-170.441066, 63.691981],
       [-170.373871, 63.687322],
       [-170.359363, 63.687321],
       [-170.354527, 63.691924],
       [-170.344855, 63.694225],
       [-170.315839, 63.691923],
       [-170.281988, 63.68502],
       [-170.26748, 63.675816],
       [-170.257808, 63.666611],
       [-170.176413, 63.625489],
       [-170.154754, 63.619072],
       [-170.14004, 63.616696],
       [-170.113066, 63.616245],
       [-170.095833, 63.612701],
       [-170.076689, 63.587988],
       [-170.040919, 63.523411],
       [-170.047114, 63.490135],
       [-170.026953, 63.480702],
       [-170.007943, 63.475428],
       [-169.974858, 63.470618],
       [-169.906304, 63.457519],
       [-169.857078, 63.441975],
       [-169.747634, 63.432756],
       [-169.656474, 63.429929],
       [-169.643167, 63.427802],
       [-169.579892, 63.40287],
       [-169.566562, 63.388725],
       [-169.565439, 63.385563],
       [-169.554375, 63.377158],
       [-169.546934, 63.372792],
       [-169.520524, 63.365941],
       [-169.415329, 63.355943],
       [-169.38408, 63.356733],
       [-169.31297, 63.353335],
       [-169.281422, 63.348381],
       [-169.267598, 63.343995]]],
     [[[-162.614621, 63.621832],
       [-162.587527, 63.625115],
       [-162.558234, 63.634308],
       [-162.541389, 63.635727],
       [-162.512298, 63.629784],
       [-162.498175, 63.622069],
       [-162.451929, 63.62127],
       [-162.440229, 63.622491],
       [-162.430304, 63.625745],
       [-162.425419, 63.62995],
       [-162.425265, 63.631654],
       [-162.427696, 63.633134],
       [-162.424205, 63.636215],
       [-162.401203, 63.634367],
       [-162.374243, 63.626425],
       [-162.341892, 63.594062],
       [-162.345179, 63.551785],
       [-162.377988, 63.543813],
       [-162.416802, 63.547389],
       [-162.470029, 63.5475],
       [-162.552701, 63.540951],
       [-162.562007, 63.537105],
       [-162.614949, 63.540601],
       [-162.676581, 63.555648],
       [-162.680973, 63.556859],
       [-162.707559, 63.577607],
       [-162.682629, 63.584066],
       [-162.644513, 63.602599],
       [-162.614621, 63.621832]]],
     [[[-168.21012, 64.99896],
       [-168.207906, 65.003291],
       [-168.16909, 65.024067],
       [-168.156162, 65.029174],
       [-168.129109, 65.034565],
       [-168.076108, 65.043289],
       [-168.004872, 65.038897],
       [-167.972262, 65.030534],
       [-167.953076, 65.023479],
       [-167.924296, 65.002728],
       [-167.916447, 64.988618],
       [-167.913829, 64.969943],
       [-167.91906, 64.960813],
       [-167.953094, 64.932994],
       [-167.976149, 64.922872],
       [-168.037032, 64.909284],
       [-168.090879, 64.911113],
       [-168.137033, 64.918432],
       [-168.187035, 64.934902],
       [-168.210114, 64.951372],
       [-168.213962, 64.967845],
       [-168.213963, 64.984318],
       [-168.21012, 64.99896]]],
     [[[-168.952766, 65.758911],
       [-168.947278, 65.763817],
       [-168.93724, 65.767116],
       [-168.915518, 65.770484],
       [-168.902235, 65.769665],
       [-168.893219, 65.744705],
       [-168.898754, 65.739709],
       [-168.903439, 65.738454],
       [-168.93122, 65.73894],
       [-168.94076, 65.742714],
       [-168.951388, 65.749319],
       [-168.954515, 65.757144],
       [-168.952766, 65.758911]]],
     [[[-166.03187, 66.264639],
       [-166.031342, 66.264631],
       [-166.019921, 66.252754],
       [-166.066397, 66.246531],
       [-166.096969, 66.237833],
       [-166.121659, 66.214773],
       [-166.13839, 66.210089],
       [-166.153012, 66.212289],
       [-166.170909, 66.218437],
       [-166.172071, 66.219909],
       [-166.178474, 66.228016],
       [-166.177606, 66.234732],
       [-166.165412, 66.239084],
       [-166.152374, 66.246373],
       [-166.129652, 66.252813],
       [-166.101781, 66.258743],
       [-166.066097, 66.263721],
       [-166.053153, 66.264944],
       [-166.03187, 66.264639]]],
     [[[-160.851144, 63.012689],
       [-161.990906, 63.012675],
       [-161.990032, 63.096024],
       [-162.177514, 63.096467],
       [-162.184665, 63.186448],
       [-162.374087, 63.186423],
       [-162.37771, 63.272891],
       [-162.587754, 63.275727],
       [-162.571695, 63.285556],
       [-162.437059, 63.377836],
       [-162.432169, 63.382606],
       [-162.426095, 63.393651],
       [-162.428744, 63.401055],
       [-162.42153, 63.409014],
       [-162.384625, 63.435797],
       [-162.352274, 63.454069],
       [-162.301869, 63.473422],
       [-162.271089, 63.487711],
       [-162.268242, 63.490799],
       [-162.267833, 63.495084],
       [-162.288532, 63.526412],
       [-162.301471, 63.53735],
       [-162.296731, 63.540108],
       [-162.252411, 63.541753],
       [-162.190145, 63.529886],
       [-162.151574, 63.517952],
       [-162.123249, 63.512807],
       [-162.108597, 63.511927],
       [-162.073156, 63.513768],
       [-162.041687, 63.48965],
       [-162.045709, 63.475434],
       [-162.050132, 63.47285],
       [-162.050543, 63.470589],
       [-162.039444, 63.45893],
       [-162.025552, 63.447539],
       [-161.930714, 63.444843],
       [-161.839897, 63.447313],
       [-161.765832, 63.453803],
       [-161.70563, 63.464061],
       [-161.676526, 63.465003],
       [-161.591632, 63.454244],
       [-161.583772, 63.447857],
       [-161.553077, 63.449217],
       [-161.450463, 63.457178],
       [-161.310181, 63.471312],
       [-161.191163, 63.490072],
       [-161.136758, 63.504525],
       [-161.13423, 63.506735],
       [-161.119964, 63.532544],
       [-161.102721, 63.5478],
       [-161.036049, 63.579566],
       [-160.924877, 63.644814],
       [-160.904353, 63.658024],
       [-160.809089, 63.731332],
       [-160.783304, 63.752893],
       [-160.76556, 63.773552],
       [-160.761974, 63.793453],
       [-160.766291, 63.835189],
       [-160.787624, 63.869196],
       [-160.810798, 63.904646],
       [-160.851979, 63.954409],
       [-160.877686, 63.977265],
       [-160.892455, 63.985943],
       [-160.93374, 64.049729],
       [-160.951641, 64.090067],
       [-160.955132, 64.13803],
       [-160.956425, 64.191732],
       [-160.953596, 64.197775],
       [-160.946857, 64.204158],
       [-160.976038, 64.235761],
       [-161.228941, 64.370747],
       [-161.263519, 64.398166],
       [-161.313668, 64.400874],
       [-161.410382, 64.422107],
       [-161.463026, 64.420074],
       [-161.470182, 64.418814],
       [-161.492926, 64.407851],
       [-161.504903, 64.423074],
       [-161.479093, 64.486401],
       [-161.469046, 64.506575],
       [-161.388621, 64.532783],
       [-161.373572, 64.535028],
       [-161.362901, 64.526913],
       [-161.351145, 64.521382],
       [-161.321343, 64.513865],
       [-161.234092, 64.500365],
       [-161.198029, 64.496626],
       [-161.155518, 64.494687],
       [-161.078031, 64.494094],
       [-161.024185, 64.499719],
       [-161.015095, 64.502124],
       [-161.013228, 64.507521],
       [-161.01714, 64.517124],
       [-161.037534, 64.522246],
       [-161.045947, 64.524948],
       [-161.05306, 64.528504],
       [-161.055549, 64.532416],
       [-161.052348, 64.537395],
       [-161.049148, 64.540952],
       [-160.992894, 64.541295],
       [-160.970555, 64.543884],
       [-160.940493, 64.55],
       [-160.802048, 64.610352],
       [-160.793356, 64.619317],
       [-160.791614, 64.623055],
       [-160.78357, 64.680581],
       [-160.783398, 64.71716],
       [-160.869571, 64.783797],
       [-160.935974, 64.82237],
       [-160.986417, 64.833984],
       [-161.079718, 64.869549],
       [-161.102755, 64.880661],
       [-161.133062, 64.898219],
       [-161.149655, 64.911985],
       [-161.149366, 64.916558],
       [-161.145725, 64.920534],
       [-161.176009, 64.927161],
       [-161.19212, 64.921366],
       [-161.195202, 64.918178],
       [-161.200893, 64.905796],
       [-161.200964, 64.898659],
       [-161.198586, 64.894403],
       [-161.213756, 64.883324],
       [-161.264283, 64.86197],
       [-161.293049, 64.853243],
       [-161.327848, 64.829836],
       [-161.357867, 64.805922],
       [-161.366808, 64.793777],
       [-161.364438, 64.782099],
       [-161.367483, 64.778907],
       [-161.376985, 64.773036],
       [-161.413493, 64.762723],
       [-161.42986, 64.759027],
       [-161.518211, 64.75325],
       [-161.595506, 64.764478],
       [-161.630287, 64.77129],
       [-161.64552, 64.776452],
       [-161.667261, 64.788981],
       [-161.878363, 64.709476],
       [-161.902429, 64.703851],
       [-161.939279, 64.699119],
       [-162.096528, 64.690983],
       [-162.138832, 64.685934],
       [-162.168516, 64.68029],
       [-162.188146, 64.672395],
       [-162.21662, 64.656213],
       [-162.219718, 64.644176],
       [-162.234477, 64.619336],
       [-162.270025, 64.60871],
       [-162.290571, 64.605496],
       [-162.342308, 64.59224],
       [-162.539996, 64.530931],
       [-162.554875, 64.520341],
       [-162.61422, 64.470702],
       [-162.615452, 64.467077],
       [-162.602178, 64.456869],
       [-162.60302, 64.448666],
       [-162.632242, 64.385734],
       [-162.645156, 64.379783],
       [-162.66768, 64.375356],
       [-162.719218, 64.359971],
       [-162.768424, 64.333516],
       [-162.790167, 64.325182],
       [-162.795636, 64.327716],
       [-162.805385, 64.336023],
       [-162.810004, 64.352647],
       [-162.807205, 64.364643],
       [-162.80035, 64.374695],
       [-162.802266, 64.395327],
       [-162.806612, 64.405608],
       [-162.83654, 64.436702],
       [-162.858556, 64.474864],
       [-162.857562, 64.49978],
       [-162.940776, 64.542417],
       [-162.96925, 64.54687],
       [-163.030657, 64.542353],
       [-163.042618, 64.540046],
       [-163.032057, 64.525608],
       [-163.028887, 64.511908],
       [-163.027158, 64.477945],
       [-163.091486, 64.437736],
       [-163.107459, 64.409192],
       [-163.11945, 64.403808],
       [-163.150789, 64.397249],
       [-163.175336, 64.399334],
       [-163.229206, 64.430019],
       [-163.249092, 64.456223],
       [-163.253027, 64.469501],
       [-163.350926, 64.505859],
       [-163.4129, 64.524986],
       [-163.451482, 64.53482],
       [-163.597834, 64.563356],
       [-163.651943, 64.567299],
       [-163.829739, 64.574965],
       [-163.875774, 64.572935],
       [-163.89618, 64.564483],
       [-163.974352, 64.55137],
       [-163.994532, 64.551742],
       [-164.044839, 64.559167],
       [-164.071997, 64.56128],
       [-164.147059, 64.564552],
       [-164.260064, 64.56422],
       [-164.307273, 64.561488],
       [-164.421871, 64.545256],
       [-164.491327, 64.529824],
       [-164.548298, 64.516738],
       [-164.807747, 64.449432],
       [-164.835679, 64.444917],
       [-164.874421, 64.441195],
       [-165.001961, 64.433917],
       [-165.016519, 64.434392],
       [-165.214182, 64.469726],
       [-165.413443, 64.497939],
       [-165.550573, 64.512235],
       [-165.751093, 64.536437],
       [-165.819595, 64.540171],
       [-165.919704, 64.54866],
       [-166.189546, 64.575798],
       [-166.236939, 64.583558],
       [-166.392403, 64.638161],
       [-166.413926, 64.651229],
       [-166.451788, 64.691761],
       [-166.474714, 64.719267],
       [-166.483801, 64.733419],
       [-166.481076, 64.786156],
       [-166.478978, 64.797036],
       [-166.430516, 64.807715],
       [-166.417028, 64.81874],
       [-166.410198, 64.827968],
       [-166.407303, 64.834278],
       [-166.407315, 64.852281],
       [-166.409331, 64.859755],
       [-166.415624, 64.871928],
       [-166.432246, 64.88316],
       [-166.530518, 64.937114],
       [-166.586066, 64.955712],
       [-166.61511, 64.96433],
       [-166.636843, 64.968113],
       [-166.690814, 64.985372],
       [-166.70483, 64.997051],
       [-166.705283, 64.999846],
       [-166.695206, 65.005184],
       [-166.688762, 65.018029],
       [-166.692426, 65.029629],
       [-166.696453, 65.035857],
       [-166.732794, 65.053498],
       [-166.82091, 65.077053],
       [-166.860402, 65.090866],
       [-166.885451, 65.105856],
       [-166.911922, 65.125965],
       [-166.910131, 65.134024],
       [-166.906687, 65.13632],
       [-166.89772, 65.139028],
       [-166.886677, 65.138763],
       [-166.872666, 65.136928],
       [-166.837496, 65.128146],
       [-166.826753, 65.119778],
       [-166.81679, 65.117089],
       [-166.755554, 65.110585],
       [-166.67032, 65.10972],
       [-166.638411, 65.113586],
       [-166.634449, 65.125873],
       [-166.60607, 65.135992],
       [-166.521506, 65.149242],
       [-166.509566, 65.152719],
       [-166.479913, 65.167249],
       [-166.464192, 65.177086],
       [-166.459984, 65.183284],
       [-166.46005, 65.189897],
       [-166.465342, 65.194818],
       [-166.474839, 65.217663],
       [-166.475297, 65.224335],
       [-166.451711, 65.236178],
       [-166.386271, 65.254143],
       [-166.347189, 65.276341],
       [-166.360618, 65.288631],
       [-166.377721, 65.297983],
       [-166.439404, 65.319058],
       [-166.485968, 65.3309],
       [-166.51864, 65.335824],
       [-166.551097, 65.338406],
       [-166.572735, 65.338155],
       [-166.596964, 65.336246],
       [-166.625987, 65.325121],
       [-166.655179, 65.324938],
       [-166.679717, 65.326856],
       [-166.796001, 65.337184],
       [-166.851646, 65.348485],
       [-166.899681, 65.360642],
       [-167.026782, 65.381967],
       [-167.10186, 65.387737],
       [-167.170465, 65.389269],
       [-167.398458, 65.400259],
       [-167.474024, 65.412744],
       [-167.574639, 65.444979],
       [-167.620388, 65.463463],
       [-167.621371, 65.466589],
       [-167.710888, 65.498524],
       [-167.841836, 65.530249],
       [-167.851234, 65.538181],
       [-167.909599, 65.550876],
       [-167.967065, 65.558599],
       [-167.997178, 65.559346],
       [-168.04762, 65.569149],
       [-168.0752, 65.576355],
       [-168.099046, 65.592239],
       [-168.099356, 65.599045],
       [-168.09614, 65.600882],
       [-168.100003, 65.610972],
       [-168.127044, 65.626584],
       [-168.134663, 65.64084],
       [-168.12893, 65.655744],
       [-168.103708, 65.685552],
       [-167.979889, 65.727972],
       [-167.857216, 65.754341],
       [-167.73569, 65.776124],
       [-167.539643, 65.820836],
       [-167.314935, 65.885039],
       [-167.246146, 65.911408],
       [-167.139524, 65.948095],
       [-166.977872, 65.996247],
       [-166.956089, 66.007711],
       [-166.827684, 66.051277],
       [-166.597243, 66.118919],
       [-166.526162, 66.141849],
       [-166.330971, 66.189514],
       [-166.308287, 66.180287],
       [-166.282123, 66.177089],
       [-166.245693, 66.16992],
       [-166.223186, 66.171033],
       [-166.190692, 66.16741],
       [-166.181579, 66.164626],
       [-166.143876, 66.159265],
       [-166.127228, 66.155204],
       [-166.122248, 66.152622],
       [-166.122486, 66.149417],
       [-166.139023, 66.146991],
       [-166.14987, 66.141303],
       [-166.148866, 66.137747],
       [-166.138305, 66.131966],
       [-166.101618, 66.125198],
       [-166.087392, 66.11961],
       [-166.085179, 66.115369],
       [-166.080015, 66.112602],
       [-166.046471, 66.107833],
       [-166.009898, 66.11075],
       [-165.959741, 66.10941],
       [-165.925101, 66.111066],
       [-165.892999, 66.115767],
       [-165.87674, 66.114802],
       [-165.845082, 66.107971],
       [-165.799096, 66.100823],
       [-165.76351, 66.098885],
       [-165.758784, 66.092915],
       [-165.733616, 66.096231],
       [-165.697845, 66.104041],
       [-165.693048, 66.103303],
       [-165.661901, 66.117944],
       [-165.649344, 66.119562],
       [-165.646741, 66.118152],
       [-165.65022, 66.114746],
       [-165.647717, 66.113487],
       [-165.630793, 66.117643],
       [-165.607237, 66.119397],
       [-165.599803, 66.117686],
       [-165.588512, 66.119695],
       [-165.584292, 66.129489],
       [-165.544886, 66.142901],
       [-165.54466, 66.151933],
       [-165.551682, 66.161584],
       [-165.578906, 66.16327],
       [-165.594386, 66.168083],
       [-165.620879, 66.180572],
       [-165.653814, 66.192453],
       [-165.690509, 66.202029],
       [-165.760518, 66.209561],
       [-165.813473, 66.207174],
       [-165.848314, 66.211367],
       [-165.853291, 66.212684],
       [-165.867148, 66.220871],
       [-165.874462, 66.227999],
       [-165.877514, 66.240309],
       [-165.866468, 66.247073],
       [-165.853577, 66.263185],
       [-165.859933, 66.27422],
       [-165.872497, 66.284271],
       [-165.880454, 66.29516],
       [-165.882129, 66.299766],
       [-165.882496, 66.311603],
       [-165.869233, 66.316112],
       [-165.80503, 66.33331],
       [-165.6686, 66.361971],
       [-165.407204, 66.420441],
       [-165.187082, 66.465154],
       [-165.124026, 66.473179],
       [-164.711009, 66.542541],
       [-164.400727, 66.58111],
       [-164.396644, 66.476291],
       [-164.319703, 66.475975],
       [-164.31779, 66.130579],
       [-164.244449, 66.129158],
       [-164.246706, 65.78244],
       [-163.970931, 65.782923],
       [-163.971115, 65.608348],
       [-163.758871, 65.608055],
       [-163.758001, 65.436206],
       [-162.032746, 65.43839],
       [-159.804395, 65.435857],
       [-159.801012, 65.522686],
       [-159.593576, 65.522689],
       [-159.386712, 65.52314],
       [-159.384765, 65.261674],
       [-159.578562, 65.262692],
       [-159.576911, 64.923743],
       [-159.777177, 64.923088],
       [-159.773803, 64.750296],
       [-159.978098, 64.748491],
       [-159.956447, 64.051022],
       [-159.731224, 64.052366],
       [-159.699291, 63.792346],
       [-159.930773, 63.793808],
       [-159.929244, 63.703494],
       [-160.103703, 63.702263],
       [-160.097874, 63.614393],
       [-160.493465, 63.613655],
       [-160.494971, 63.537148],
       [-160.692051, 63.536618],
       [-160.671305, 63.27083],
       [-160.847328, 63.269229],
       [-160.851144, 63.012689]]]]},
   'id': '02180'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02185',
    'STATE': '02',
    'COUNTY': '185',
    'NAME': 'North Slope',
    'LSAD': 'Borough',
    'CENSUSAREA': 88695.413},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-165.35998, 68.028054],
      [-165.430442, 68.045408],
      [-165.49355, 68.059283],
      [-165.66169, 68.075999],
      [-165.749518, 68.077694],
      [-165.792146, 68.080867],
      [-165.863428, 68.093367],
      [-165.965534, 68.12192],
      [-165.973621, 68.125986],
      [-165.987929, 68.142738],
      [-165.994377, 68.147305],
      [-166.245281, 68.245275],
      [-166.307977, 68.264948],
      [-166.368546, 68.28177],
      [-166.474608, 68.305273],
      [-166.56722, 68.323288],
      [-166.680842, 68.340911],
      [-166.784578, 68.340431],
      [-166.829715, 68.336324],
      [-166.846456, 68.332508],
      [-166.85064, 68.333089],
      [-166.838178, 68.339714],
      [-166.811836, 68.348136],
      [-166.706139, 68.371783],
      [-166.377564, 68.422406],
      [-166.362135, 68.42624],
      [-166.342381, 68.433966],
      [-166.328459, 68.442261],
      [-166.305962, 68.46154],
      [-166.303464, 68.464683],
      [-166.30203, 68.470413],
      [-166.295343, 68.5109],
      [-166.24449, 68.553888],
      [-166.23378, 68.564263],
      [-166.226111, 68.576186],
      [-166.225567, 68.579015],
      [-166.231432, 68.587338],
      [-166.229761, 68.613771],
      [-166.213635, 68.664324],
      [-166.199826, 68.678556],
      [-166.197365, 68.690019],
      [-166.187795, 68.778706],
      [-166.190209, 68.790437],
      [-166.195374, 68.80399],
      [-166.20375, 68.818221],
      [-166.222496, 68.860441],
      [-166.224187, 68.873175],
      [-166.214433, 68.879524],
      [-165.814938, 68.864158],
      [-165.666566, 68.855387],
      [-165.572483, 68.852946],
      [-165.522358, 68.855839],
      [-165.327043, 68.858111],
      [-164.967542, 68.88303],
      [-164.883745, 68.891649],
      [-164.812671, 68.893542],
      [-164.655317, 68.90936],
      [-164.526887, 68.917909],
      [-164.299092, 68.927569],
      [-164.253157, 68.930938],
      [-164.161249, 68.944773],
      [-164.130742, 68.951001],
      [-164.069362, 68.969651],
      [-163.973678, 68.985044],
      [-163.893881, 69.011962],
      [-163.858069, 69.02886],
      [-163.827447, 69.040632],
      [-163.724184, 69.066713],
      [-163.655864, 69.090567],
      [-163.574034, 69.124077],
      [-163.535314, 69.141656],
      [-163.452685, 69.19463],
      [-163.297956, 69.274725],
      [-163.236121, 69.282661],
      [-163.230902, 69.284464],
      [-163.137614, 69.352178],
      [-163.110318, 69.375343],
      [-163.103166, 69.392261],
      [-163.104387, 69.40135],
      [-163.100569, 69.414222],
      [-163.070341, 69.459872],
      [-163.052068, 69.481971],
      [-163.046961, 69.482892],
      [-163.036311, 69.489028],
      [-163.02617, 69.50689],
      [-163.016456, 69.538142],
      [-163.020001, 69.545145],
      [-163.03029, 69.556591],
      [-163.074128, 69.570272],
      [-163.118176, 69.589156],
      [-163.116622, 69.593416],
      [-163.111605, 69.596605],
      [-163.02459, 69.608609],
      [-162.916958, 69.692512],
      [-162.922009, 69.700372],
      [-162.961086, 69.717165],
      [-163.010545, 69.728109],
      [-163.018175, 69.729074],
      [-163.03539, 69.727406],
      [-163.012595, 69.757462],
      [-162.960245, 69.783328],
      [-162.911869, 69.799471],
      [-162.877165, 69.804411],
      [-162.840602, 69.811763],
      [-162.76721, 69.852179],
      [-162.70955, 69.879126],
      [-162.616345, 69.916997],
      [-162.606297, 69.918988],
      [-162.601284, 69.914568],
      [-162.593773, 69.914096],
      [-162.587906, 69.915637],
      [-162.481016, 69.975242],
      [-162.471549, 69.983132],
      [-162.462304, 70.002438],
      [-162.468339, 70.015784],
      [-162.462778, 70.042217],
      [-162.454541, 70.043958],
      [-162.394531, 70.044574],
      [-162.350558, 70.0588],
      [-162.35474, 70.065479],
      [-162.356469, 70.076391],
      [-162.312491, 70.109281],
      [-162.158156, 70.16153],
      [-162.098377, 70.187045],
      [-162.019265, 70.224044],
      [-161.984888, 70.247681],
      [-161.959603, 70.268873],
      [-161.922949, 70.291599],
      [-161.859745, 70.308048],
      [-161.849998, 70.30943],
      [-161.844213, 70.30853],
      [-161.842162, 70.304429],
      [-161.844688, 70.300054],
      [-161.847403, 70.295877],
      [-161.848909, 70.282183],
      [-161.834651, 70.272504],
      [-161.801603, 70.260634],
      [-161.779794, 70.255411],
      [-161.769496, 70.262498],
      [-161.767838, 70.268337],
      [-161.759176, 70.272443],
      [-161.692195, 70.267092],
      [-161.67622, 70.258021],
      [-161.663593, 70.246187],
      [-161.633888, 70.240693],
      [-161.522941, 70.236888],
      [-161.396757, 70.240606],
      [-161.309118, 70.248091],
      [-161.254723, 70.256612],
      [-161.080282, 70.306679],
      [-161.016416, 70.327744],
      [-160.992764, 70.316226],
      [-160.979126, 70.317661],
      [-160.839536, 70.344534],
      [-160.732703, 70.374382],
      [-160.530362, 70.440751],
      [-160.489778, 70.454463],
      [-160.48553, 70.457121],
      [-160.480062, 70.465971],
      [-160.214828, 70.559087],
      [-160.056727, 70.632834],
      [-159.913805, 70.690673],
      [-159.798514, 70.731226],
      [-159.648383, 70.794368],
      [-159.585714, 70.809475],
      [-159.528682, 70.820849],
      [-159.209082, 70.870067],
      [-159.17181, 70.875103],
      [-159.147634, 70.876653],
      [-159.156511, 70.859221],
      [-159.152026, 70.849543],
      [-159.132483, 70.828359],
      [-159.160836, 70.81796],
      [-159.290577, 70.811262],
      [-159.331021, 70.807394],
      [-159.335837, 70.800079],
      [-159.343075, 70.783115],
      [-159.299304, 70.760012],
      [-159.275634, 70.759531],
      [-159.13779, 70.758609],
      [-159.000676, 70.764336],
      [-158.976647, 70.766973],
      [-158.954571, 70.772712],
      [-158.9656, 70.786852],
      [-158.976456, 70.789864],
      [-158.976615, 70.796377],
      [-158.656101, 70.787955],
      [-158.60732, 70.789099],
      [-158.3895, 70.799729],
      [-158.385792, 70.811468],
      [-158.389269, 70.822048],
      [-158.385816, 70.825704],
      [-158.25032, 70.817734],
      [-158.157725, 70.820806],
      [-158.032397, 70.832263],
      [-157.884086, 70.853468],
      [-157.840997, 70.861025],
      [-157.768452, 70.875842],
      [-157.708782, 70.89139],
      [-157.502459, 70.948659],
      [-157.421001, 70.976805],
      [-157.392802, 70.987908],
      [-157.249083, 71.052537],
      [-157.119621, 71.128682],
      [-157.072487, 71.154521],
      [-156.962555, 71.211885],
      [-156.809653, 71.286886],
      [-156.773937, 71.299506],
      [-156.645615, 71.338012],
      [-156.62014, 71.344209],
      [-156.56865, 71.352561],
      [-156.566383, 71.334016],
      [-156.561512, 71.316809],
      [-156.556496, 71.311795],
      [-156.531124, 71.296338],
      [-156.524499, 71.294469],
      [-156.402659, 71.267945],
      [-156.356736, 71.261273],
      [-156.320702, 71.258952],
      [-156.301938, 71.260566],
      [-156.2142, 71.259392],
      [-156.074411, 71.242489],
      [-156.029205, 71.203209],
      [-156.038116, 71.196506],
      [-156.044754, 71.18677],
      [-156.044615, 71.184701],
      [-156.018574, 71.172041],
      [-155.957961, 71.186211],
      [-155.920202, 71.207157],
      [-155.895105, 71.193899],
      [-155.88418, 71.190057],
      [-155.829034, 71.192088],
      [-155.803853, 71.19642],
      [-155.760802, 71.194662],
      [-155.657178, 71.182471],
      [-155.587702, 71.17256],
      [-155.566925, 71.165139],
      [-155.567765, 71.14113],
      [-155.561772, 71.128458],
      [-155.520737, 71.102476],
      [-155.513987, 71.096794],
      [-155.511125, 71.090348],
      [-155.510637, 71.081152],
      [-155.533347, 71.067683],
      [-155.548283, 71.060685],
      [-155.638994, 71.04236],
      [-155.705487, 71.020153],
      [-155.711852, 71.012473],
      [-155.762068, 70.985644],
      [-155.830881, 70.965584],
      [-155.878946, 70.967684],
      [-155.95205, 70.964831],
      [-155.978405, 70.962197],
      [-155.995681, 70.947796],
      [-156.014769, 70.903133],
      [-156.014425, 70.898644],
      [-156.013512, 70.895983],
      [-155.968559, 70.862931],
      [-155.969194, 70.827982],
      [-155.978421, 70.825558],
      [-155.980975, 70.817355],
      [-155.978978, 70.80875],
      [-155.971935, 70.806828],
      [-155.927958, 70.80601],
      [-155.906615, 70.809988],
      [-155.882145, 70.822056],
      [-155.875096, 70.828895],
      [-155.731842, 70.83116],
      [-155.643516, 70.824209],
      [-155.543031, 70.847175],
      [-155.504202, 70.860303],
      [-155.489811, 70.87174],
      [-155.48798, 70.875299],
      [-155.485915, 70.885905],
      [-155.487574, 70.902679],
      [-155.493044, 70.917371],
      [-155.47594, 70.943547],
      [-155.454991, 70.94749],
      [-155.404225, 70.967477],
      [-155.382646, 70.978973],
      [-155.36416, 70.994195],
      [-155.343871, 71.004449],
      [-155.260042, 71.015227],
      [-155.260084, 71.011281],
      [-155.256177, 71.004762],
      [-155.211434, 70.978023],
      [-155.201466, 70.974306],
      [-155.192246, 70.974056],
      [-155.182779, 70.978218],
      [-155.168934, 70.987947],
      [-155.161735, 70.995715],
      [-155.159922, 71.002775],
      [-155.163938, 71.013801],
      [-155.177, 71.02745],
      [-155.273764, 71.064728],
      [-155.275814, 71.067042],
      [-155.275989, 71.070464],
      [-155.262602, 71.079149],
      [-155.25686, 71.081119],
      [-155.150524, 71.11205],
      [-155.146948, 71.110959],
      [-155.146931, 71.103459],
      [-155.142858, 71.097254],
      [-155.125994, 71.077495],
      [-155.120317, 71.073416],
      [-155.108509, 71.070475],
      [-155.075362, 71.072042],
      [-155.064004, 71.083912],
      [-155.061428, 71.091999],
      [-155.064558, 71.108006],
      [-155.085782, 71.127572],
      [-155.060764, 71.145422],
      [-155.03174, 71.146473],
      [-154.942864, 71.126264],
      [-154.777335, 71.083231],
      [-154.61605, 71.026182],
      [-154.604413, 71.021502],
      [-154.581129, 71.007321],
      [-154.567593, 70.989929],
      [-154.594048, 70.976993],
      [-154.608294, 70.961716],
      [-154.654375, 70.903318],
      [-154.645793, 70.869167],
      [-154.577386, 70.835335],
      [-154.51904, 70.822799],
      [-154.501866, 70.821765],
      [-154.4857, 70.825304],
      [-154.430229, 70.831258],
      [-154.352604, 70.834828],
      [-154.260799, 70.815164],
      [-154.228627, 70.802417],
      [-154.223307, 70.79523],
      [-154.239166, 70.776866],
      [-154.181863, 70.768325],
      [-154.169631, 70.768604],
      [-154.127487, 70.778133],
      [-154.069982, 70.793703],
      [-153.995579, 70.821876],
      [-153.976014, 70.833925],
      [-153.95137, 70.854028],
      [-153.93545, 70.869728],
      [-153.932949, 70.874201],
      [-153.934351, 70.876609],
      [-153.932921, 70.878677],
      [-153.89048, 70.885719],
      [-153.774169, 70.894584],
      [-153.747253, 70.895017],
      [-153.525976, 70.8855],
      [-153.485989, 70.885873],
      [-153.426265, 70.890131],
      [-153.359112, 70.898292],
      [-153.326202, 70.904111],
      [-153.253386, 70.920775],
      [-153.23848, 70.922467],
      [-153.137311, 70.925438],
      [-153.049207, 70.913102],
      [-153.017038, 70.904004],
      [-152.774415, 70.885279],
      [-152.735892, 70.884545],
      [-152.590148, 70.886933],
      [-152.45695, 70.871788],
      [-152.259966, 70.84282],
      [-152.226464, 70.831043],
      [-152.187197, 70.801546],
      [-152.188649, 70.79814],
      [-152.19246, 70.795294],
      [-152.239344, 70.793416],
      [-152.263346, 70.790777],
      [-152.283763, 70.7856],
      [-152.370808, 70.730068],
      [-152.377274, 70.714682],
      [-152.471531, 70.68884],
      [-152.473348, 70.683669],
      [-152.460505, 70.646107],
      [-152.433781, 70.616926],
      [-152.420775, 70.608983],
      [-152.365736, 70.601242],
      [-152.355679, 70.603794],
      [-152.341592, 70.612193],
      [-152.332608, 70.612871],
      [-152.264049, 70.592655],
      [-152.200644, 70.58607],
      [-152.169944, 70.585219],
      [-152.146165, 70.586754],
      [-152.060684, 70.574935],
      [-152.064546, 70.568542],
      [-152.065748, 70.563074],
      [-152.02607, 70.559345],
      [-151.975785, 70.563215],
      [-151.880141, 70.554869],
      [-151.816701, 70.545698],
      [-151.774703, 70.547925],
      [-151.745047, 70.554041],
      [-151.718215, 70.555286],
      [-151.701467, 70.55322],
      [-151.695162, 70.549675],
      [-151.697258, 70.547741],
      [-151.709462, 70.54649],
      [-151.722711, 70.541608],
      [-151.751558, 70.524105],
      [-151.760248, 70.516711],
      [-151.734287, 70.503492],
      [-151.728579, 70.495375],
      [-151.775537, 70.485353],
      [-151.824111, 70.484011],
      [-151.91921, 70.472686],
      [-151.936783, 70.463564],
      [-151.946384, 70.452523],
      [-151.900033, 70.434135],
      [-151.876122, 70.430761],
      [-151.844375, 70.434959],
      [-151.785657, 70.436935],
      [-151.653184, 70.4348],
      [-151.605581, 70.437332],
      [-151.554647, 70.435895],
      [-151.444897, 70.425405],
      [-151.343202, 70.408877],
      [-151.297598, 70.400748],
      [-151.229919, 70.37984],
      [-151.187394, 70.384775],
      [-151.188592, 70.401755],
      [-151.186516, 70.418208],
      [-151.180436, 70.430401],
      [-151.123105, 70.439374],
      [-151.118601, 70.438088],
      [-151.114352, 70.432886],
      [-151.116099, 70.422403],
      [-151.06043, 70.418734],
      [-151.026337, 70.441455],
      [-150.957813, 70.45261],
      [-150.895452, 70.458158],
      [-150.877322, 70.455182],
      [-150.834973, 70.460171],
      [-150.787069, 70.477117],
      [-150.780029, 70.485986],
      [-150.762035, 70.497219],
      [-150.719845, 70.494998],
      [-150.651175, 70.494928],
      [-150.614734, 70.498292],
      [-150.429915, 70.498172],
      [-150.357384, 70.493738],
      [-150.354056, 70.492724],
      [-150.338851, 70.471075],
      [-150.370283, 70.447858],
      [-150.350541, 70.435998],
      [-150.296287, 70.441136],
      [-150.245325, 70.441658],
      [-150.185078, 70.43537],
      [-150.112899, 70.431372],
      [-150.104388, 70.432091],
      [-150.074461, 70.439333],
      [-149.866698, 70.510769],
      [-149.81974, 70.491428],
      [-149.810924, 70.490477],
      [-149.790427, 70.49119],
      [-149.740188, 70.498151],
      [-149.728247, 70.502793],
      [-149.716075, 70.504968],
      [-149.661165, 70.509203],
      [-149.656806, 70.508713],
      [-149.649556, 70.504757],
      [-149.581348, 70.495891],
      [-149.565278, 70.49645],
      [-149.536891, 70.499397],
      [-149.524235, 70.502128],
      [-149.509854, 70.508746],
      [-149.461755, 70.518271],
      [-149.432083, 70.50375],
      [-149.418727, 70.492257],
      [-149.400623, 70.489931],
      [-149.314473, 70.495325],
      [-149.179148, 70.4857],
      [-149.082079, 70.464894],
      [-148.959443, 70.423944],
      [-148.928979, 70.426835],
      [-148.858069, 70.422917],
      [-148.789577, 70.402746],
      [-148.728082, 70.413035],
      [-148.69877, 70.425878],
      [-148.696768, 70.42916],
      [-148.667017, 70.430084],
      [-148.610566, 70.422588],
      [-148.590007, 70.416956],
      [-148.580356, 70.412546],
      [-148.477044, 70.359068],
      [-148.464543, 70.340159],
      [-148.477028, 70.320872],
      [-148.46615, 70.313609],
      [-148.450639, 70.308437],
      [-148.411253, 70.302627],
      [-148.363196, 70.302627],
      [-148.351437, 70.304453],
      [-148.2698, 70.329617],
      [-148.2582, 70.336996],
      [-148.203477, 70.348188],
      [-148.152676, 70.347148],
      [-148.107231, 70.342801],
      [-148.09058, 70.337432],
      [-148.089576, 70.335423],
      [-148.089676, 70.332812],
      [-148.089174, 70.331005],
      [-148.076865, 70.32751],
      [-147.9615, 70.314201],
      [-147.863719, 70.293317],
      [-147.817637, 70.276938],
      [-147.789357, 70.247972],
      [-147.765104, 70.219806],
      [-147.681722, 70.199954],
      [-147.648, 70.203299],
      [-147.585678, 70.203398],
      [-147.50527, 70.200384],
      [-147.431532, 70.188826],
      [-147.402283, 70.185273],
      [-147.385271, 70.185256],
      [-147.350145, 70.187683],
      [-147.244119, 70.218963],
      [-147.233327, 70.207553],
      [-147.231008, 70.195398],
      [-147.21921, 70.178826],
      [-147.182123, 70.16035],
      [-147.161601, 70.155612],
      [-146.991109, 70.14761],
      [-146.973212, 70.151857],
      [-146.909516, 70.173259],
      [-146.885771, 70.185917],
      [-146.734021, 70.175475],
      [-146.713053, 70.175398],
      [-146.624761, 70.182398],
      [-146.508133, 70.186044],
      [-146.44886, 70.183398],
      [-146.413197, 70.17825],
      [-146.335147, 70.176235],
      [-146.309558, 70.178907],
      [-146.272965, 70.176944],
      [-146.172672, 70.165894],
      [-146.129579, 70.158948],
      [-146.114124, 70.154956],
      [-146.096827, 70.145151],
      [-146.006411, 70.140402],
      [-145.955164, 70.140199],
      [-145.917674, 70.142525],
      [-145.872923, 70.148829],
      [-145.858297, 70.165996],
      [-145.842689, 70.164102],
      [-145.790386, 70.148569],
      [-145.783327, 70.139454],
      [-145.767092, 70.128717],
      [-145.760443, 70.126113],
      [-145.623306, 70.084375],
      [-145.579972, 70.076804],
      [-145.522384, 70.077465],
      [-145.505682, 70.074528],
      [-145.469508, 70.059136],
      [-145.468856, 70.048336],
      [-145.43483, 70.036994],
      [-145.408182, 70.031572],
      [-145.331553, 70.022596],
      [-145.247167, 70.017891],
      [-145.218593, 70.00728],
      [-145.197331, 69.994954],
      [-145.175073, 69.991707],
      [-145.011711, 69.981144],
      [-144.990131, 69.97768],
      [-144.966761, 69.964362],
      [-144.953637, 69.959262],
      [-144.902304, 69.96451],
      [-144.867623, 69.972266],
      [-144.863111, 69.973524],
      [-144.856954, 69.985987],
      [-144.854539, 69.986364],
      [-144.792614, 69.979796],
      [-144.738976, 69.970112],
      [-144.672305, 69.966876],
      [-144.618671, 69.969315],
      [-144.589172, 69.977611],
      [-144.512258, 70.004478],
      [-144.463286, 70.025735],
      [-144.344073, 70.034374],
      [-144.328391, 70.032555],
      [-144.231051, 70.035912],
      [-144.178194, 70.041742],
      [-144.130283, 70.057951],
      [-144.122641, 70.059138],
      [-144.079634, 70.058961],
      [-144.053709, 70.073182],
      [-143.911494, 70.129837],
      [-143.887688, 70.130736],
      [-143.839879, 70.125827],
      [-143.782213, 70.124668],
      [-143.769015, 70.135066],
      [-143.753065, 70.137242],
      [-143.66225, 70.142517],
      [-143.617407, 70.139915],
      [-143.595181, 70.142521],
      [-143.597879, 70.147204],
      [-143.593813, 70.152604],
      [-143.574986, 70.154598],
      [-143.54323, 70.149742],
      [-143.498058, 70.1401],
      [-143.497982, 70.136875],
      [-143.511617, 70.125191],
      [-143.516098, 70.116362],
      [-143.517248, 70.104293],
      [-143.510081, 70.096436],
      [-143.503487, 70.093458],
      [-143.455354, 70.092934],
      [-143.357961, 70.09497],
      [-143.327114, 70.103127],
      [-143.3179, 70.111145],
      [-143.265892, 70.119286],
      [-143.255576, 70.11933],
      [-143.200147, 70.110323],
      [-143.159929, 70.099203],
      [-143.140019, 70.092997],
      [-143.112951, 70.078271],
      [-143.051291, 70.078188],
      [-143.0381, 70.093888],
      [-142.939555, 70.07438],
      [-142.746807, 70.042531],
      [-142.498036, 69.973611],
      [-142.452927, 69.958125],
      [-142.409962, 69.933646],
      [-142.404366, 69.916511],
      [-142.272156, 69.907044],
      [-142.239873, 69.896598],
      [-142.112714, 69.862162],
      [-142.081696, 69.855498],
      [-142.075612, 69.853319],
      [-142.073063, 69.846625],
      [-142.058734, 69.83533],
      [-142.009321, 69.800726],
      [-141.960753, 69.799876],
      [-141.937176, 69.804805],
      [-141.919828, 69.811308],
      [-141.866738, 69.813005],
      [-141.842843, 69.811927],
      [-141.713369, 69.789497],
      [-141.606229, 69.761695],
      [-141.528197, 69.736025],
      [-141.43084, 69.695144],
      [-141.434872, 69.675245],
      [-141.428856, 69.662658],
      [-141.394082, 69.640846],
      [-141.377718, 69.634631],
      [-141.280849, 69.631025],
      [-141.258558, 69.632247],
      [-141.254547, 69.637053],
      [-141.243946, 69.652482],
      [-141.210456, 69.68419],
      [-141.119233, 69.673527],
      [-141.002672, 69.645609],
      [-141.002694, 68.498391],
      [-142.360513, 68.489642],
      [-144.297052, 68.507297],
      [-145.998216, 68.489871],
      [-145.994865, 68.001285],
      [-147.389781, 68.001041],
      [-149.620648, 67.99894],
      [-151.606277, 68.006862],
      [-155.29802, 68.001771],
      [-155.299012, 68.029941],
      [-156.235534, 68.028751],
      [-156.238107, 68.130761],
      [-157.150299, 68.120781],
      [-157.155836, 68.210442],
      [-158.100103, 68.217807],
      [-158.274727, 68.211915],
      [-159.716147, 68.216796],
      [-159.722546, 68.284089],
      [-160.127816, 68.287308],
      [-160.11834, 68.220066],
      [-161.089535, 68.221231],
      [-161.095913, 68.289368],
      [-161.519964, 68.289554],
      [-161.516254, 68.220812],
      [-161.993148, 68.223274],
      [-161.995486, 68.292164],
      [-162.720616, 68.301027],
      [-162.719806, 68.232729],
      [-163.04523, 68.228721],
      [-164.499871, 68.227513],
      [-164.494202, 68.02433],
      [-165.35998, 68.028054]]]},
   'id': '02185'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02188',
    'STATE': '02',
    'COUNTY': '188',
    'NAME': 'Northwest Arctic',
    'LSAD': 'Borough',
    'CENSUSAREA': 35572.584},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-159.593576, 65.522689],
      [-159.801012, 65.522686],
      [-159.804395, 65.435857],
      [-162.032746, 65.43839],
      [-163.758001, 65.436206],
      [-163.758871, 65.608055],
      [-163.971115, 65.608348],
      [-163.970931, 65.782923],
      [-164.246706, 65.78244],
      [-164.244449, 66.129158],
      [-164.31779, 66.130579],
      [-164.319703, 66.475975],
      [-164.396644, 66.476291],
      [-164.400727, 66.58111],
      [-164.400724, 66.58111],
      [-164.345015, 66.580834],
      [-164.094554, 66.592281],
      [-163.979581, 66.593953],
      [-163.978095, 66.592616],
      [-163.978492, 66.591012],
      [-163.985713, 66.576085],
      [-163.908341, 66.55597],
      [-163.875235, 66.558248],
      [-163.850476, 66.563102],
      [-163.754171, 66.551284],
      [-163.727179, 66.516388],
      [-163.728308, 66.498552],
      [-163.730247, 66.491372],
      [-163.761967, 66.454874],
      [-163.798687, 66.436875],
      [-163.844221, 66.418978],
      [-163.856359, 66.409296],
      [-163.873106, 66.389015],
      [-163.873096, 66.32855],
      [-163.849163, 66.307639],
      [-163.839825, 66.304079],
      [-163.829977, 66.280398],
      [-163.830077, 66.272],
      [-163.843108, 66.259869],
      [-163.904813, 66.230303],
      [-163.955901, 66.21717],
      [-164.046937, 66.209404],
      [-164.078765, 66.201764],
      [-164.092715, 66.184537],
      [-164.089237, 66.182338],
      [-164.078677, 66.181019],
      [-164.007503, 66.179386],
      [-163.916551, 66.190494],
      [-163.878306, 66.160279],
      [-163.861406, 66.136665],
      [-163.847401, 66.122106],
      [-163.80358, 66.100059],
      [-163.772467, 66.081922],
      [-163.768357, 66.073662],
      [-163.76751, 66.060803],
      [-163.623921, 66.058281],
      [-163.540115, 66.069921],
      [-163.502704, 66.081165],
      [-163.495845, 66.085388],
      [-163.344759, 66.084937],
      [-163.313843, 66.075287],
      [-163.287768, 66.069229],
      [-163.168568, 66.05929],
      [-163.146726, 66.059487],
      [-163.093003, 66.06296],
      [-163.04714, 66.068327],
      [-162.997473, 66.076845],
      [-162.876016, 66.082833],
      [-162.791232, 66.089138],
      [-162.750705, 66.09016],
      [-162.681304, 66.061574],
      [-162.680204, 66.058129],
      [-162.673584, 66.053685],
      [-162.635985, 66.040366],
      [-162.622284, 66.039526],
      [-162.530755, 66.045062],
      [-162.45767, 66.058579],
      [-162.423726, 66.048984],
      [-162.413452, 66.035085],
      [-162.391892, 66.028724],
      [-162.372147, 66.027985],
      [-162.331284, 66.031403],
      [-162.26967, 66.042104],
      [-162.205889, 66.056753],
      [-162.139516, 66.078819],
      [-162.137424, 66.078547],
      [-162.129709, 66.069487],
      [-162.121788, 66.067391],
      [-162.025701, 66.062829],
      [-161.950043, 66.040302],
      [-161.838018, 66.022582],
      [-161.817091, 66.033089],
      [-161.812306, 66.041688],
      [-161.798585, 66.055317],
      [-161.775537, 66.073732],
      [-161.680577, 66.111588],
      [-161.6653, 66.122177],
      [-161.627008, 66.153194],
      [-161.623983, 66.162082],
      [-161.613943, 66.176693],
      [-161.548429, 66.239912],
      [-161.484539, 66.262426],
      [-161.367875, 66.258653],
      [-161.341189, 66.2551],
      [-161.337269, 66.243163],
      [-161.33212, 66.236431],
      [-161.320778, 66.223591],
      [-161.313025, 66.221051],
      [-161.263655, 66.214154],
      [-161.198971, 66.210949],
      [-161.145397, 66.220179],
      [-161.087342, 66.234208],
      [-161.067871, 66.235164],
      [-161.052732, 66.231018],
      [-161.035866, 66.229437],
      [-161.000026, 66.233126],
      [-160.993965, 66.234444],
      [-160.991066, 66.236816],
      [-160.990275, 66.239715],
      [-160.995905, 66.251962],
      [-160.99854, 66.254935],
      [-161.061034, 66.283804],
      [-161.079328, 66.307126],
      [-161.089161, 66.31514],
      [-161.107995, 66.328367],
      [-161.129512, 66.336248],
      [-161.1631, 66.342291],
      [-161.219834, 66.348918],
      [-161.360743, 66.375943],
      [-161.525554, 66.397046],
      [-161.694404, 66.396174],
      [-161.817538, 66.360815],
      [-161.912946, 66.344436],
      [-161.916309, 66.349481],
      [-161.8809, 66.398763],
      [-161.872447, 66.414132],
      [-161.863387, 66.440783],
      [-161.864156, 66.488195],
      [-161.87488, 66.511446],
      [-162.029043, 66.586504],
      [-162.091453, 66.605963],
      [-162.09791, 66.609863],
      [-162.105641, 66.622584],
      [-162.113311, 66.639596],
      [-162.124348, 66.651291],
      [-162.140377, 66.664737],
      [-162.175398, 66.687789],
      [-162.228635, 66.70977],
      [-162.268767, 66.717905],
      [-162.349774, 66.726713],
      [-162.422414, 66.731581],
      [-162.501415, 66.742503],
      [-162.50052, 66.749751],
      [-162.502502, 66.758875],
      [-162.512617, 66.777733],
      [-162.544381, 66.804872],
      [-162.572224, 66.825364],
      [-162.594237, 66.837647],
      [-162.614738, 66.846476],
      [-162.621564, 66.85086],
      [-162.624945, 66.855031],
      [-162.626696, 66.859572],
      [-162.623054, 66.874325],
      [-162.61459, 66.885941],
      [-162.601052, 66.898455],
      [-162.582856, 66.904292],
      [-162.497438, 66.91986],
      [-162.346352, 66.934792],
      [-162.281116, 66.915679],
      [-162.271769, 66.904144],
      [-162.228675, 66.866623],
      [-162.117304, 66.798482],
      [-162.096878, 66.7885],
      [-162.073714, 66.783324],
      [-162.049123, 66.780639],
      [-162.013623, 66.779406],
      [-162.011455, 66.759063],
      [-162.029615, 66.73458],
      [-162.041314, 66.723764],
      [-162.058825, 66.716253],
      [-162.068253, 66.709857],
      [-162.074634, 66.703681],
      [-162.081515, 66.693052],
      [-162.07801, 66.664048],
      [-162.07362, 66.651217],
      [-162.069068, 66.6457],
      [-162.033156, 66.631585],
      [-161.968863, 66.602611],
      [-161.953413, 66.592365],
      [-161.932642, 66.572547],
      [-161.92544, 66.561215],
      [-161.915856, 66.551339],
      [-161.877098, 66.536877],
      [-161.765368, 66.496934],
      [-161.624334, 66.450143],
      [-161.574129, 66.438566],
      [-161.516449, 66.441839],
      [-161.435312, 66.454162],
      [-161.326349, 66.478371],
      [-161.279803, 66.505179],
      [-161.29321, 66.520591],
      [-161.399006, 66.523529],
      [-161.454092, 66.522205],
      [-161.469227, 66.522843],
      [-161.483604, 66.525626],
      [-161.493509, 66.530977],
      [-161.494988, 66.534443],
      [-161.486308, 66.538037],
      [-161.482869, 66.543724],
      [-161.4904, 66.560844],
      [-161.541756, 66.581379],
      [-161.598953, 66.593181],
      [-161.665368, 66.610433],
      [-161.693125, 66.620562],
      [-161.86618, 66.704978],
      [-161.881671, 66.716796],
      [-161.86154, 66.797076],
      [-161.846258, 66.813647],
      [-161.82417, 66.817889],
      [-161.796307, 66.833126],
      [-161.785495, 66.846547],
      [-161.782218, 66.859956],
      [-161.719587, 66.916898],
      [-161.692146, 66.945033],
      [-161.685775, 66.955794],
      [-161.688506, 66.959799],
      [-161.68628, 66.961367],
      [-161.674359, 66.961965],
      [-161.566678, 66.934775],
      [-161.489169, 66.93695],
      [-161.485121, 66.945647],
      [-161.485383, 66.960818],
      [-161.505747, 66.974314],
      [-161.530525, 66.984951],
      [-161.62216, 67.008146],
      [-161.697392, 67.010849],
      [-161.711715, 67.001044],
      [-161.759641, 67.030572],
      [-161.799175, 67.047502],
      [-161.810256, 67.050281],
      [-161.836325, 67.051777],
      [-161.850188, 67.052186],
      [-161.893702, 67.049075],
      [-162.123181, 67.02579],
      [-162.211633, 67.00671],
      [-162.233964, 66.999568],
      [-162.234302, 66.994581],
      [-162.23923, 66.993814],
      [-162.353954, 66.995128],
      [-162.385074, 66.991235],
      [-162.415866, 66.98471],
      [-162.432615, 66.985089],
      [-162.449219, 66.988391],
      [-162.462616, 66.994323],
      [-162.466855, 66.999339],
      [-162.461822, 67.004426],
      [-162.465522, 67.026629],
      [-162.472765, 67.038368],
      [-162.481257, 67.043113],
      [-162.490552, 67.043331],
      [-162.504523, 67.039629],
      [-162.514878, 67.031069],
      [-162.519046, 67.016552],
      [-162.603562, 67.01049],
      [-162.64026, 67.010869],
      [-162.654094, 67.013099],
      [-162.661661, 67.01889],
      [-162.660733, 67.026771],
      [-162.658706, 67.030335],
      [-162.66074, 67.033884],
      [-162.676656, 67.046789],
      [-162.699069, 67.055476],
      [-162.782401, 67.044467],
      [-162.83042, 67.036173],
      [-162.839402, 67.032956],
      [-162.850964, 67.017922],
      [-162.865944, 67.012543],
      [-162.901348, 67.006833],
      [-163.097854, 67.041191],
      [-163.299266, 67.060748],
      [-163.399048, 67.074167],
      [-163.441198, 67.081459],
      [-163.495201, 67.087503],
      [-163.57701, 67.092491],
      [-163.624959, 67.099391],
      [-163.69887, 67.114443],
      [-163.730671, 67.123774],
      [-163.741345, 67.129123],
      [-163.737724, 67.136802],
      [-163.736901, 67.16323],
      [-163.737464, 67.184754],
      [-163.74082, 67.20996],
      [-163.758588, 67.256439],
      [-163.822185, 67.349812],
      [-163.853584, 67.388101],
      [-163.878781, 67.416125],
      [-164.007032, 67.535699],
      [-164.079514, 67.585856],
      [-164.108716, 67.601993],
      [-164.14438, 67.617228],
      [-164.209816, 67.639079],
      [-164.533937, 67.725606],
      [-164.778331, 67.820866],
      [-164.907297, 67.867844],
      [-165.057516, 67.921694],
      [-165.129567, 67.941833],
      [-165.190915, 67.966071],
      [-165.227228, 67.985322],
      [-165.23162, 67.994512],
      [-165.240848, 67.998714],
      [-165.35998, 68.028054],
      [-164.494202, 68.02433],
      [-164.499871, 68.227513],
      [-163.04523, 68.228721],
      [-162.719806, 68.232729],
      [-162.720616, 68.301027],
      [-161.995486, 68.292164],
      [-161.993148, 68.223274],
      [-161.516254, 68.220812],
      [-161.519964, 68.289554],
      [-161.095913, 68.289368],
      [-161.089535, 68.221231],
      [-160.11834, 68.220066],
      [-160.127816, 68.287308],
      [-159.722546, 68.284089],
      [-159.716147, 68.216796],
      [-158.274727, 68.211915],
      [-158.100103, 68.217807],
      [-157.155836, 68.210442],
      [-157.150299, 68.120781],
      [-156.238107, 68.130761],
      [-156.235534, 68.028751],
      [-155.299012, 68.029941],
      [-155.29802, 68.001771],
      [-155.306992, 67.864033],
      [-155.352249, 67.775553],
      [-155.129726, 67.77497],
      [-155.132355, 67.686612],
      [-154.904736, 67.688032],
      [-154.911027, 67.601857],
      [-154.686696, 67.602173],
      [-154.688359, 67.512481],
      [-154.747501, 67.51268],
      [-154.748759, 67.254419],
      [-154.306093, 67.251225],
      [-154.302303, 67.160767],
      [-154.14522, 67.161925],
      [-154.141599, 66.804853],
      [-154.201542, 66.804621],
      [-154.202144, 66.716586],
      [-154.862595, 66.71691],
      [-154.865962, 66.567723],
      [-155.513931, 66.569279],
      [-155.554608, 66.481912],
      [-155.56243, 66.309487],
      [-155.981123, 66.310448],
      [-155.981539, 66.39803],
      [-156.197173, 66.394758],
      [-156.196191, 66.479446],
      [-156.624296, 66.478785],
      [-156.626712, 66.304931],
      [-157.05153, 66.302054],
      [-157.051694, 66.47875],
      [-157.892416, 66.476795],
      [-157.894181, 66.125284],
      [-158.965461, 66.123439],
      [-158.966298, 65.957306],
      [-159.595187, 65.95809],
      [-159.593576, 65.522689]]]},
   'id': '02188'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02195',
    'STATE': '02',
    'COUNTY': '195',
    'NAME': 'Petersburg',
    'LSAD': 'CA',
    'CENSUSAREA': 3281.982},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-134.283312, 55.925175],
       [-134.265872, 55.917371],
       [-134.230613, 55.905629],
       [-134.173104, 55.918519],
       [-134.152216, 55.920916],
       [-134.122839, 55.918654],
       [-134.118062, 55.914642],
       [-134.125521, 55.902095],
       [-134.130544, 55.897512],
       [-134.136647, 55.895393],
       [-134.145803, 55.896713],
       [-134.168363, 55.892319],
       [-134.208251, 55.876709],
       [-134.231157, 55.864747],
       [-134.240537, 55.853922],
       [-134.273156, 55.833058],
       [-134.282453, 55.828667],
       [-134.327238, 55.83644],
       [-134.344418, 55.843198],
       [-134.348153, 55.892817],
       [-134.336063, 55.926614],
       [-134.315782, 55.923003],
       [-134.283312, 55.925175]]],
     [[[-134.121514, 56.069847],
       [-134.107218, 56.048156],
       [-134.118132, 56.016922],
       [-134.126903, 56.003592],
       [-134.130907, 56.000104],
       [-134.134181, 56.000971],
       [-134.156721, 56.02108],
       [-134.171731, 56.040227],
       [-134.190863, 56.05654],
       [-134.224073, 56.065223],
       [-134.230449, 56.068341],
       [-134.259913, 56.121275],
       [-134.262217, 56.133222],
       [-134.238264, 56.140863],
       [-134.227942, 56.162835],
       [-134.257478, 56.221411],
       [-134.246307, 56.267768],
       [-134.281387, 56.286218],
       [-134.295634, 56.289228],
       [-134.298292, 56.291993],
       [-134.292353, 56.352644],
       [-134.238139, 56.382806],
       [-134.193922, 56.409906],
       [-134.190494, 56.429749],
       [-134.196394, 56.4398],
       [-134.210968, 56.450498],
       [-134.236978, 56.452363],
       [-134.246627, 56.457135],
       [-134.246179, 56.463511],
       [-134.244667, 56.4651],
       [-134.222814, 56.475402],
       [-134.200909, 56.463297],
       [-134.186476, 56.450571],
       [-134.179214, 56.440305],
       [-134.146136, 56.411069],
       [-134.067466, 56.390987],
       [-134.046227, 56.402275],
       [-134.042704, 56.407697],
       [-134.040938, 56.42153],
       [-134.089604, 56.472582],
       [-134.133892, 56.487825],
       [-134.252386, 56.560861],
       [-134.281093, 56.585555],
       [-134.276735, 56.62029],
       [-134.309869, 56.650509],
       [-134.369035, 56.678022],
       [-134.401407, 56.725419],
       [-134.419791, 56.838385],
       [-134.41894, 56.846524],
       [-134.411471, 56.855837],
       [-134.376975, 56.880055],
       [-134.339168, 56.90183],
       [-134.316868, 56.909091],
       [-134.294362, 56.908714],
       [-134.286818, 56.906534],
       [-134.19095, 56.861675],
       [-134.187063, 56.856714],
       [-134.171675, 56.851218],
       [-134.14716, 56.859357],
       [-134.141933, 56.874188],
       [-134.150935, 56.884958],
       [-134.181383, 56.892572],
       [-134.220002, 56.905084],
       [-134.273113, 56.933823],
       [-134.271664, 56.935928],
       [-134.249327, 56.937374],
       [-134.223939, 56.932553],
       [-134.178507, 56.914018],
       [-134.158108, 56.915029],
       [-134.13624, 56.928842],
       [-134.141236, 56.942081],
       [-134.141385, 56.950887],
       [-134.126562, 56.947381],
       [-134.083291, 56.931579],
       [-134.03514, 56.89451],
       [-133.972257, 56.826934],
       [-133.946767, 56.798924],
       [-133.925648, 56.758912],
       [-133.944663, 56.736433],
       [-133.941801, 56.733493],
       [-133.907795, 56.72184],
       [-133.880781, 56.721396],
       [-133.869334, 56.734081],
       [-133.862981, 56.75565],
       [-133.865056, 56.77324],
       [-133.867616, 56.782025],
       [-133.87225, 56.786186],
       [-133.877395, 56.789192],
       [-133.884755, 56.788656],
       [-133.890005, 56.792468],
       [-133.893861, 56.802526],
       [-133.890805, 56.80798],
       [-133.861472, 56.808837],
       [-133.837925, 56.801788],
       [-133.818194, 56.791453],
       [-133.76778, 56.780469],
       [-133.748129, 56.773919],
       [-133.743376, 56.762291],
       [-133.744002, 56.749772],
       [-133.766143, 56.728886],
       [-133.766143, 56.718242],
       [-133.762049, 56.696135],
       [-133.76278, 56.68718],
       [-133.75965, 56.675913],
       [-133.745673, 56.674028],
       [-133.728479, 56.642915],
       [-133.727728, 56.630846],
       [-133.713331, 56.598298],
       [-133.713331, 56.592664],
       [-133.723142, 56.583962],
       [-133.731617, 56.572304],
       [-133.848207, 56.573057],
       [-133.895746, 56.511217],
       [-133.898589, 56.489877],
       [-133.88108, 56.480803],
       [-133.868625, 56.470919],
       [-133.839117, 56.434885],
       [-133.839238, 56.432018],
       [-133.859104, 56.430348],
       [-133.869729, 56.431796],
       [-133.89304, 56.427364],
       [-133.933512, 56.375428],
       [-133.894358, 56.360989],
       [-133.850314, 56.347417],
       [-133.839099, 56.335467],
       [-133.834671, 56.322382],
       [-133.89094, 56.234467],
       [-133.912992, 56.208351],
       [-133.92342, 56.211725],
       [-133.942205, 56.20946],
       [-133.953825, 56.206661],
       [-133.957471, 56.202584],
       [-133.957575, 56.199887],
       [-133.937349, 56.166129],
       [-133.956411, 56.095484],
       [-133.971228, 56.083293],
       [-133.989359, 56.081347],
       [-134.01392, 56.085374],
       [-134.021028, 56.088745],
       [-134.038695, 56.105807],
       [-134.041765, 56.116337],
       [-134.029643, 56.134864],
       [-134.024495, 56.148164],
       [-134.024356, 56.160382],
       [-134.030964, 56.193214],
       [-134.054411, 56.224854],
       [-134.058499, 56.227214],
       [-134.087317, 56.225424],
       [-134.095013, 56.214751],
       [-134.105098, 56.180941],
       [-134.153663, 56.1697],
       [-134.161971, 56.170153],
       [-134.180057, 56.161635],
       [-134.190371, 56.152571],
       [-134.166141, 56.144564],
       [-134.125902, 56.139804],
       [-134.110755, 56.141053],
       [-134.109236, 56.078732],
       [-134.121514, 56.069847]]],
     [[[-132.546463, 56.606563],
       [-132.539698, 56.593199],
       [-132.541282, 56.584573],
       [-132.61083, 56.556252],
       [-132.627435, 56.552428],
       [-132.628511, 56.553553],
       [-132.65091, 56.552127],
       [-132.701275, 56.52958],
       [-132.724189, 56.515371],
       [-132.796627, 56.496471],
       [-132.818043, 56.494934],
       [-132.874282, 56.509108],
       [-132.984751, 56.51264],
       [-132.986907, 56.510784],
       [-133.041726, 56.518356],
       [-133.071828, 56.553483],
       [-133.075496, 56.578684],
       [-133.025091, 56.605048],
       [-133.110329, 56.669727],
       [-133.143198, 56.682979],
       [-133.184363, 56.706526],
       [-133.212185, 56.736822],
       [-133.225298, 56.755591],
       [-133.233331, 56.771095],
       [-133.235251, 56.775639],
       [-133.233646, 56.779447],
       [-133.244689, 56.792649],
       [-133.264047, 56.814544],
       [-133.277352, 56.816432],
       [-133.325392, 56.791864],
       [-133.334308, 56.773402],
       [-133.332845, 56.761663],
       [-133.31986, 56.737693],
       [-133.303752, 56.729879],
       [-133.272958, 56.733653],
       [-133.266844, 56.734882],
       [-133.265608, 56.738237],
       [-133.266768, 56.741943],
       [-133.261381, 56.747459],
       [-133.250686, 56.751431],
       [-133.219681, 56.706887],
       [-133.221517, 56.697886],
       [-133.232516, 56.681336],
       [-133.233684, 56.649286],
       [-133.214228, 56.649592],
       [-133.151444, 56.637672],
       [-133.106316, 56.618393],
       [-133.103363, 56.614645],
       [-133.089388, 56.535474],
       [-133.089215, 56.523916],
       [-133.112907, 56.529295],
       [-133.138307, 56.532923],
       [-133.142099, 56.528591],
       [-133.142482, 56.519697],
       [-133.139228, 56.515994],
       [-133.124726, 56.511439],
       [-133.122245, 56.49202],
       [-133.14873, 56.467357],
       [-133.160996, 56.460257],
       [-133.203584, 56.447657],
       [-133.348504, 56.469568],
       [-133.3563, 56.471794],
       [-133.361615, 56.486073],
       [-133.371889, 56.493689],
       [-133.376245, 56.495592],
       [-133.401797, 56.496355],
       [-133.417795, 56.494147],
       [-133.428585, 56.479247],
       [-133.460634, 56.45412],
       [-133.512684, 56.437015],
       [-133.532969, 56.434751],
       [-133.603669, 56.435413],
       [-133.638349, 56.438881],
       [-133.655468, 56.442279],
       [-133.663094, 56.448073],
       [-133.671653, 56.487656],
       [-133.675836, 56.522714],
       [-133.675696, 56.538672],
       [-133.672262, 56.544152],
       [-133.664509, 56.550727],
       [-133.662631, 56.555735],
       [-133.663064, 56.56207],
       [-133.667639, 56.57639],
       [-133.662631, 56.598924],
       [-133.667639, 56.607687],
       [-133.673621, 56.611801],
       [-133.679352, 56.633089],
       [-133.689178, 56.643734],
       [-133.698309, 56.649624],
       [-133.70582, 56.658387],
       [-133.709576, 56.683424],
       [-133.706372, 56.696954],
       [-133.699822, 56.710054],
       [-133.696547, 56.744443],
       [-133.689996, 56.761637],
       [-133.686416, 56.779817],
       [-133.68099, 56.795207],
       [-133.679352, 56.810764],
       [-133.689996, 56.839421],
       [-133.699822, 56.839421],
       [-133.712922, 56.827958],
       [-133.741579, 56.81322],
       [-133.765324, 56.807489],
       [-133.772302, 56.809495],
       [-133.787484, 56.821366],
       [-133.795364, 56.824586],
       [-133.86904, 56.845938],
       [-133.887426, 56.868391],
       [-133.916358, 56.914447],
       [-133.903634, 56.927269],
       [-133.921451, 56.961511],
       [-133.96706, 56.988044],
       [-134.049218, 57.029203],
       [-134.033979, 57.063281],
       [-134.008856, 57.074578],
       [-133.887957, 57.097744],
       [-133.773464, 57.078676],
       [-133.702925, 57.065206],
       [-133.613908, 57.057978],
       [-133.536258, 57.0387],
       [-133.446204, 57.020124],
       [-133.362502, 57.007424],
       [-133.346321, 57.004118],
       [-133.344217, 57.001834],
       [-133.334272, 57.002442],
       [-133.325058, 57.011711],
       [-133.308317, 57.014762],
       [-133.104611, 57.005701],
       [-132.99743, 56.942201],
       [-132.98137, 56.92738],
       [-132.947081, 56.870963],
       [-132.935933, 56.839963],
       [-132.935258, 56.822941],
       [-132.903211, 56.80361],
       [-132.872512, 56.798144],
       [-132.85315, 56.79781],
       [-132.820556, 56.793787],
       [-132.762964, 56.753227],
       [-132.741709, 56.724278],
       [-132.743207, 56.71372],
       [-132.665874, 56.680241],
       [-132.628129, 56.66883],
       [-132.622788, 56.66871],
       [-132.619258, 56.660778],
       [-132.62545, 56.65321],
       [-132.628201, 56.645642],
       [-132.62545, 56.642202],
       [-132.616506, 56.63945],
       [-132.605498, 56.623627],
       [-132.595179, 56.613308],
       [-132.57454, 56.61262],
       [-132.56078, 56.607804],
       [-132.553213, 56.608492],
       [-132.546463, 56.606563]]],
     [[[-132.080112, 56.924153],
       [-132.234041, 56.881504],
       [-132.322505, 56.738582],
       [-132.522398, 56.716256],
       [-132.517127, 56.728632],
       [-132.432385, 56.782385],
       [-132.371032, 56.816413],
       [-132.373615, 56.820353],
       [-132.390129, 56.825837],
       [-132.404564, 56.825506],
       [-132.43833, 56.821117],
       [-132.505513, 56.785485],
       [-132.519457, 56.775455],
       [-132.520712, 56.760116],
       [-132.532002, 56.757141],
       [-132.556758, 56.757242],
       [-132.637458, 56.78091],
       [-132.770404, 56.837486],
       [-132.792089, 56.856152],
       [-132.797107, 56.864922],
       [-132.793601, 56.866364],
       [-132.792727, 56.871673],
       [-132.796999, 56.87779],
       [-132.81789, 56.896901],
       [-132.829346, 56.903573],
       [-132.846744, 56.910635],
       [-132.87034, 56.925682],
       [-132.91197, 56.966651],
       [-132.918967, 56.993673],
       [-132.892388, 56.993016],
       [-132.853636, 57.005343],
       [-132.813684, 57.030218],
       [-132.83222, 57.070408],
       [-132.853284, 57.080077],
       [-132.870116, 57.078424],
       [-132.875197, 57.069577],
       [-132.916487, 57.040086],
       [-132.93752, 57.048321],
       [-132.984307, 57.054845],
       [-132.993944, 57.032353],
       [-133.02505, 57.057322],
       [-133.076481, 57.081733],
       [-133.125306, 57.088891],
       [-133.161448, 57.086264],
       [-133.188074, 57.088973],
       [-133.208726, 57.109699],
       [-133.210261, 57.118453],
       [-133.206655, 57.123834],
       [-133.224656, 57.136522],
       [-133.23488, 57.137937],
       [-133.247414, 57.136802],
       [-133.322359, 57.112727],
       [-133.466932, 57.159356],
       [-133.517194, 57.177775],
       [-133.299692, 57.237727],
       [-133.126997, 57.186322],
       [-133.029298, 57.235539],
       [-132.986359, 57.330823],
       [-132.64459, 57.426343],
       [-132.487307, 57.354227],
       [-132.367984, 57.348685],
       [-132.252187, 57.215655],
       [-132.214442, 57.108167],
       [-132.115075, 57.045602],
       [-132.080112, 56.924153]]]]},
   'id': '02195'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02198',
    'STATE': '02',
    'COUNTY': '198',
    'NAME': 'Prince of Wales-Hyder',
    'LSAD': 'CA',
    'CENSUSAREA': 3922.873},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-131.56956, 55.284114],
       [-131.56265, 55.284012],
       [-131.550916, 55.280915],
       [-131.516651, 55.261645],
       [-131.49264, 55.257749],
       [-131.482252, 55.25411],
       [-131.481522, 55.244448],
       [-131.462701, 55.223438],
       [-131.445293, 55.216977],
       [-131.430501, 55.218175],
       [-131.416951, 55.217298],
       [-131.39769, 55.210916],
       [-131.355642, 55.182945],
       [-131.341407, 55.165659],
       [-131.352654, 55.164822],
       [-131.362319, 55.155896],
       [-131.350575, 55.067042],
       [-131.356314, 55.041211],
       [-131.378572, 55.017308],
       [-131.388569, 55.012222],
       [-131.484995, 55.010454],
       [-131.498863, 55.016138],
       [-131.50759, 55.025427],
       [-131.508449, 55.029166],
       [-131.53214, 55.037945],
       [-131.579882, 55.017576],
       [-131.590063, 55.007745],
       [-131.605661, 55.004403],
       [-131.615632, 55.006999],
       [-131.641035, 55.026585],
       [-131.646276, 55.035579],
       [-131.620745, 55.049259],
       [-131.589387, 55.08894],
       [-131.605302, 55.107436],
       [-131.594978, 55.125502],
       [-131.577773, 55.131094],
       [-131.558603, 55.125508],
       [-131.548093, 55.143138],
       [-131.565677, 55.155354],
       [-131.588368, 55.169961],
       [-131.598454, 55.179566],
       [-131.607383, 55.240437],
       [-131.58907, 55.273951],
       [-131.56956, 55.284114]]],
     [[[-133.344847, 55.569327],
       [-133.307406, 55.542249],
       [-133.292346, 55.539736],
       [-133.285317, 55.535315],
       [-133.281917, 55.524486],
       [-133.289854, 55.50187],
       [-133.305747, 55.484115],
       [-133.358993, 55.453832],
       [-133.373595, 55.460656],
       [-133.391243, 55.471979],
       [-133.396511, 55.473169],
       [-133.426516, 55.466702],
       [-133.474054, 55.437155],
       [-133.4653, 55.42337],
       [-133.425823, 55.425511],
       [-133.416649, 55.422146],
       [-133.412524, 55.41756],
       [-133.411582, 55.406683],
       [-133.419384, 55.386105],
       [-133.427366, 55.381832],
       [-133.446281, 55.382175],
       [-133.497028, 55.368159],
       [-133.576808, 55.324795],
       [-133.595805, 55.293766],
       [-133.603491, 55.271739],
       [-133.609073, 55.241486],
       [-133.61278, 55.239737],
       [-133.623457, 55.242571],
       [-133.634509, 55.250043],
       [-133.690174, 55.304409],
       [-133.690944, 55.308703],
       [-133.689159, 55.320285],
       [-133.672243, 55.326765],
       [-133.647725, 55.34548],
       [-133.633006, 55.361299],
       [-133.622422, 55.396474],
       [-133.636291, 55.428423],
       [-133.739077, 55.472323],
       [-133.749371, 55.471818],
       [-133.764347, 55.468593],
       [-133.789055, 55.457892],
       [-133.75913, 55.537371],
       [-133.75287, 55.544282],
       [-133.733029, 55.558757],
       [-133.615623, 55.550776],
       [-133.584326, 55.539707],
       [-133.582005, 55.537363],
       [-133.590163, 55.507236],
       [-133.595632, 55.501483],
       [-133.611671, 55.495585],
       [-133.624912, 55.494674],
       [-133.632978, 55.491664],
       [-133.644202, 55.470815],
       [-133.644565, 55.46468],
       [-133.638673, 55.458902],
       [-133.618367, 55.457045],
       [-133.573698, 55.472083],
       [-133.544088, 55.491784],
       [-133.542322, 55.507084],
       [-133.52912, 55.5277],
       [-133.525646, 55.529097],
       [-133.480965, 55.512738],
       [-133.44367, 55.518639],
       [-133.454576, 55.532423],
       [-133.44266, 55.553012],
       [-133.436102, 55.560872],
       [-133.413499, 55.570384],
       [-133.344847, 55.569327]]],
     [[[-133.624918, 56.343906],
       [-133.593728, 56.352192],
       [-133.582116, 56.352506],
       [-133.41837, 56.332132],
       [-133.328577, 56.332797],
       [-133.284826, 56.327118],
       [-133.235354, 56.324275],
       [-133.197009, 56.333016],
       [-133.163212, 56.317445],
       [-133.094977, 56.250583],
       [-133.07823, 56.246802],
       [-133.071435, 56.238484],
       [-133.040979, 56.184536],
       [-133.052004, 56.155585],
       [-133.059994, 56.150761],
       [-133.062175, 56.141163],
       [-133.061465, 56.135305],
       [-133.05552, 56.125258],
       [-132.927305, 56.034459],
       [-132.897675, 56.020166],
       [-132.837592, 56.024327],
       [-132.635291, 55.921766],
       [-132.618464, 55.911476],
       [-132.615103, 55.908082],
       [-132.614757, 55.899635],
       [-132.592085, 55.877152],
       [-132.543398, 55.845927],
       [-132.5048, 55.815166],
       [-132.470697, 55.782162],
       [-132.461281, 55.6834],
       [-132.462531, 55.673854],
       [-132.448855, 55.667337],
       [-132.415237, 55.667263],
       [-132.394266, 55.669114],
       [-132.382505, 55.665336],
       [-132.358558, 55.648759],
       [-132.332401, 55.595071],
       [-132.32928, 55.578936],
       [-132.301119, 55.55096],
       [-132.240921, 55.526533],
       [-132.198289, 55.513045],
       [-132.188771, 55.508443],
       [-132.146062, 55.470346],
       [-132.142649, 55.460967],
       [-132.142945, 55.457941],
       [-132.164757, 55.451213],
       [-132.17861, 55.452829],
       [-132.219413, 55.472211],
       [-132.230752, 55.479944],
       [-132.231936, 55.48396],
       [-132.247327, 55.492951],
       [-132.315773, 55.514547],
       [-132.325728, 55.515395],
       [-132.342101, 55.50467],
       [-132.31857, 55.469208],
       [-132.288585, 55.451365],
       [-132.281269, 55.444189],
       [-132.284442, 55.442173],
       [-132.303329, 55.438268],
       [-132.41934, 55.432054],
       [-132.470036, 55.427028],
       [-132.479688, 55.420918],
       [-132.475532, 55.418062],
       [-132.454974, 55.4136],
       [-132.390782, 55.401739],
       [-132.273503, 55.419189],
       [-132.258056, 55.416142],
       [-132.22596, 55.374919],
       [-132.166857, 55.363039],
       [-132.149864, 55.328637],
       [-132.126398, 55.288418],
       [-132.115561, 55.281237],
       [-132.098531, 55.28056],
       [-132.102716, 55.268175],
       [-132.109531, 55.26024],
       [-132.142742, 55.238212],
       [-132.164031, 55.237617],
       [-132.214912, 55.2457],
       [-132.229963, 55.23808],
       [-132.214353, 55.222562],
       [-132.207431, 55.218273],
       [-132.12737, 55.19957],
       [-132.104376, 55.200899],
       [-132.088127, 55.206516],
       [-132.075095, 55.22239],
       [-132.072751, 55.233718],
       [-132.078869, 55.240335],
       [-132.075924, 55.246276],
       [-132.061625, 55.260052],
       [-132.037122, 55.275144],
       [-132.028163, 55.27695],
       [-132.0035, 55.265254],
       [-131.995908, 55.259054],
       [-131.979818, 55.211787],
       [-131.977397, 55.180949],
       [-131.988815, 55.165464],
       [-132.031417, 55.151671],
       [-132.039009, 55.14407],
       [-132.040874, 55.127326],
       [-132.038978, 55.125011],
       [-132.016932, 55.120971],
       [-132.039002, 55.086962],
       [-132.094024, 55.039452],
       [-132.154061, 55.018197],
       [-132.168076, 55.015574],
       [-132.180334, 55.015557],
       [-132.196215, 55.008047],
       [-132.197614, 55.005158],
       [-132.192581, 54.989655],
       [-132.143263, 54.984633],
       [-132.135544, 54.985976],
       [-132.072544, 55.016956],
       [-132.039217, 55.036765],
       [-132.028288, 55.038672],
       [-132.000449, 55.035712],
       [-131.984592, 55.027978],
       [-131.98289, 54.853068],
       [-131.976847, 54.848894],
       [-131.965904, 54.835539],
       [-131.957382, 54.804279],
       [-131.957914, 54.791239],
       [-131.999591, 54.731975],
       [-132.018657, 54.710109],
       [-132.029747, 54.701189],
       [-132.142277, 54.691674],
       [-132.165182, 54.69405],
       [-132.179635, 54.705898],
       [-132.199566, 54.715444],
       [-132.256092, 54.734617],
       [-132.2631, 54.734312],
       [-132.279597, 54.72823],
       [-132.280701, 54.726184],
       [-132.280103, 54.715988],
       [-132.281803, 54.71529],
       [-132.307943, 54.718714],
       [-132.351004, 54.818182],
       [-132.350629, 54.821314],
       [-132.341009, 54.826718],
       [-132.332661, 54.826322],
       [-132.314146, 54.83512],
       [-132.309213, 54.847534],
       [-132.387494, 54.913664],
       [-132.484579, 54.899301],
       [-132.55839, 54.932612],
       [-132.581367, 54.946005],
       [-132.609786, 54.965728],
       [-132.612531, 54.969924],
       [-132.614836, 54.980095],
       [-132.6099, 54.991517],
       [-132.598557, 54.990301],
       [-132.57783, 54.994234],
       [-132.575001, 54.998317],
       [-132.541802, 55.097764],
       [-132.548994, 55.113556],
       [-132.550502, 55.114247],
       [-132.561819, 55.114897],
       [-132.594568, 55.105378],
       [-132.619912, 55.069094],
       [-132.624575, 55.061352],
       [-132.624296, 55.056163],
       [-132.626687, 55.053314],
       [-132.630865, 55.052946],
       [-132.633305, 55.054954],
       [-132.637866, 55.073602],
       [-132.624518, 55.114419],
       [-132.606895, 55.141722],
       [-132.598675, 55.150482],
       [-132.591084, 55.155695],
       [-132.587868, 55.155971],
       [-132.581133, 55.166076],
       [-132.605219, 55.194064],
       [-132.620123, 55.199617],
       [-132.637926, 55.186077],
       [-132.630049, 55.177618],
       [-132.629643, 55.174232],
       [-132.635758, 55.152514],
       [-132.663719, 55.143932],
       [-132.695227, 55.137711],
       [-132.735645, 55.134218],
       [-132.712195, 55.098736],
       [-132.684005, 55.045604],
       [-132.689667, 55.027901],
       [-132.692917, 55.02506],
       [-132.748854, 54.996007],
       [-132.813743, 55.010987],
       [-132.864117, 55.024833],
       [-132.916414, 55.044465],
       [-132.926772, 55.055023],
       [-132.932293, 55.070199],
       [-132.931172, 55.074154],
       [-132.909355, 55.081277],
       [-132.881083, 55.110375],
       [-132.869827, 55.124104],
       [-132.873408, 55.134241],
       [-132.894283, 55.169373],
       [-132.935449, 55.209898],
       [-132.939845, 55.211481],
       [-132.982166, 55.215882],
       [-133.008156, 55.2057],
       [-133.040748, 55.232969],
       [-133.043938, 55.248569],
       [-133.104708, 55.2638],
       [-133.119294, 55.251405],
       [-133.073381, 55.184492],
       [-133.012275, 55.128056],
       [-132.99086, 55.079112],
       [-132.990395, 55.06673],
       [-133.011351, 55.056849],
       [-133.01974, 55.048366],
       [-133.014178, 55.035502],
       [-132.959508, 55.021045],
       [-132.909706, 54.923594],
       [-132.91465, 54.914009],
       [-132.889474, 54.896619],
       [-132.82834, 54.868747],
       [-132.804525, 54.870938],
       [-132.803014, 54.873725],
       [-132.803742, 54.897206],
       [-132.807952, 54.904378],
       [-132.814282, 54.909356],
       [-132.817385, 54.92364],
       [-132.800784, 54.933783],
       [-132.730931, 54.939483],
       [-132.650001, 54.904387],
       [-132.628612, 54.883316],
       [-132.625563, 54.807503],
       [-132.614851, 54.77717],
       [-132.619024, 54.766565],
       [-132.639032, 54.753251],
       [-132.66725, 54.763369],
       [-132.681165, 54.773697],
       [-132.701203, 54.798446],
       [-132.701153, 54.811012],
       [-132.709267, 54.817521],
       [-132.723538, 54.825128],
       [-132.729369, 54.826981],
       [-132.754875, 54.821236],
       [-132.759779, 54.816998],
       [-132.759364, 54.808277],
       [-132.747451, 54.800743],
       [-132.722011, 54.763259],
       [-132.676226, 54.680865],
       [-132.674324, 54.674652],
       [-132.675868, 54.672812],
       [-132.69397, 54.669064],
       [-132.775733, 54.674844],
       [-132.866355, 54.700386],
       [-132.869604, 54.702416],
       [-132.864084, 54.716917],
       [-132.865598, 54.728908],
       [-132.87721, 54.753772],
       [-132.891553, 54.768191],
       [-132.909517, 54.780516],
       [-132.918751, 54.783253],
       [-132.940485, 54.783831],
       [-132.95025, 54.788333],
       [-133.032752, 54.855055],
       [-133.099047, 54.919007],
       [-133.123941, 54.940065],
       [-133.159756, 54.95876],
       [-133.164788, 54.976909],
       [-133.157326, 55.000365],
       [-133.168931, 55.030889],
       [-133.17236, 55.032745],
       [-133.197719, 55.033404],
       [-133.21042, 55.040269],
       [-133.239695, 55.092415],
       [-133.223923, 55.099986],
       [-133.218101, 55.101042],
       [-133.144954, 55.099155],
       [-133.134987, 55.099473],
       [-133.128705, 55.101429],
       [-133.15478, 55.12811],
       [-133.186809, 55.136372],
       [-133.193242, 55.134108],
       [-133.201053, 55.134099],
       [-133.207702, 55.13422],
       [-133.215086, 55.136876],
       [-133.236908, 55.183326],
       [-133.187745, 55.193639],
       [-133.18252, 55.201964],
       [-133.223791, 55.229317],
       [-133.254478, 55.231149],
       [-133.281979, 55.217117],
       [-133.323021, 55.20703],
       [-133.341259, 55.205701],
       [-133.353719, 55.221215],
       [-133.361562, 55.22556],
       [-133.376615, 55.228288],
       [-133.404497, 55.214992],
       [-133.415257, 55.212159],
       [-133.422869, 55.210659],
       [-133.441074, 55.211654],
       [-133.453777, 55.218497],
       [-133.471938, 55.247527],
       [-133.473593, 55.255547],
       [-133.472866, 55.267873],
       [-133.459753, 55.30678],
       [-133.452818, 55.31998],
       [-133.43635, 55.330158],
       [-133.395371, 55.341753],
       [-133.352083, 55.347381],
       [-133.33236, 55.345357],
       [-133.313491, 55.331557],
       [-133.310529, 55.320257],
       [-133.311114, 55.317301],
       [-133.292402, 55.291377],
       [-133.268999, 55.286971],
       [-133.244343, 55.291865],
       [-133.235129, 55.304162],
       [-133.233572, 55.308822],
       [-133.254639, 55.318806],
       [-133.279271, 55.333264],
       [-133.280701, 55.341536],
       [-133.278443, 55.349184],
       [-133.269068, 55.359341],
       [-133.257734, 55.367026],
       [-133.226844, 55.38185],
       [-133.208794, 55.384237],
       [-133.18328, 55.379392],
       [-133.121513, 55.414536],
       [-133.104304, 55.426907],
       [-133.138129, 55.458373],
       [-133.157704, 55.497782],
       [-133.133293, 55.502508],
       [-133.132409, 55.513579],
       [-133.156566, 55.563589],
       [-133.17676, 55.586722],
       [-133.263042, 55.568793],
       [-133.275972, 55.580188],
       [-133.294158, 55.58868],
       [-133.3869, 55.619346],
       [-133.43818, 55.643862],
       [-133.438933, 55.645167],
       [-133.408432, 55.667925],
       [-133.399885, 55.665133],
       [-133.394486, 55.666881],
       [-133.386432, 55.693365],
       [-133.416549, 55.739647],
       [-133.438619, 55.748366],
       [-133.49143, 55.764082],
       [-133.512632, 55.755898],
       [-133.509704, 55.744183],
       [-133.496509, 55.733258],
       [-133.494087, 55.733158],
       [-133.490882, 55.726576],
       [-133.489253, 55.713081],
       [-133.492438, 55.706525],
       [-133.527387, 55.695108],
       [-133.554504, 55.698354],
       [-133.583297, 55.705338],
       [-133.62512, 55.719927],
       [-133.643324, 55.729037],
       [-133.694546, 55.780599],
       [-133.695749, 55.783118],
       [-133.646377, 55.823413],
       [-133.627534, 55.83163],
       [-133.561973, 55.835543],
       [-133.550028, 55.832181],
       [-133.447875, 55.791738],
       [-133.422064, 55.788821],
       [-133.347915, 55.803943],
       [-133.342058, 55.805764],
       [-133.323664, 55.818632],
       [-133.335139, 55.866118],
       [-133.346569, 55.875809],
       [-133.379472, 55.880716],
       [-133.391026, 55.878751],
       [-133.418797, 55.883278],
       [-133.471044, 55.947381],
       [-133.495052, 56.017089],
       [-133.541041, 55.977322],
       [-133.638122, 55.920982],
       [-133.6999, 55.912206],
       [-133.799931, 55.925349],
       [-133.826236, 55.94875],
       [-133.83437, 55.963578],
       [-133.81277, 55.974135],
       [-133.798092, 55.975096],
       [-133.777846, 55.982876],
       [-133.748803, 56.009536],
       [-133.693765, 56.070562],
       [-133.684209, 56.075507],
       [-133.659241, 56.083818],
       [-133.548802, 56.14284],
       [-133.54283, 56.160794],
       [-133.553454, 56.169015],
       [-133.6015, 56.191925],
       [-133.639282, 56.198813],
       [-133.664218, 56.310504],
       [-133.656415, 56.326909],
       [-133.649916, 56.326792],
       [-133.643182, 56.324459],
       [-133.624658, 56.33707],
       [-133.625121, 56.339847],
       [-133.624918, 56.343906]]],
     [[[-133.846128, 55.904622],
       [-133.840833, 55.892726],
       [-133.840298, 55.88677],
       [-133.847565, 55.869599],
       [-133.861039, 55.848844],
       [-133.866988, 55.845886],
       [-133.894706, 55.845641],
       [-133.903184, 55.848101],
       [-133.92025, 55.860295],
       [-133.929325, 55.869538],
       [-133.945619, 55.896216],
       [-133.943499, 55.912446],
       [-133.940298, 55.917506],
       [-133.935016, 55.920689],
       [-133.891851, 55.93668],
       [-133.876494, 55.937683],
       [-133.864099, 55.936286],
       [-133.854291, 55.931581],
       [-133.846763, 55.91167],
       [-133.846128, 55.904622]]],
     [[[-130.24554, 56.096876],
       [-130.102761, 56.116696],
       [-130.031573, 56.036791],
       [-130.016874, 56.017323],
       [-130.00426, 55.993379],
       [-130.013198, 55.916382],
       [-130.08451, 55.823997],
       [-130.12372, 55.80704],
       [-130.128538, 55.802148],
       [-130.150595, 55.767031],
       [-130.234649, 55.81431],
       [-130.388737, 55.943318],
       [-130.285132, 55.997546],
       [-130.220064, 55.998912],
       [-130.291117, 56.054246],
       [-130.24554, 56.096876]]]]},
   'id': '02198'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02220',
    'STATE': '02',
    'COUNTY': '220',
    'NAME': 'Sitka',
    'LSAD': 'Cty&Bor',
    'CENSUSAREA': 2870.339},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-136.370705, 57.831668],
       [-136.026713, 57.835869],
       [-135.906742, 58.001266],
       [-135.899839, 58.001387],
       [-135.587961, 57.89732],
       [-135.596769, 57.889705],
       [-135.58917, 57.886409],
       [-135.575718, 57.883548],
       [-135.518882, 57.857383],
       [-135.503498, 57.84086],
       [-135.469477, 57.834466],
       [-135.377758, 57.802212],
       [-135.376444, 57.792039],
       [-135.364221, 57.775347],
       [-135.328887, 57.74842],
       [-135.29156, 57.737468],
       [-135.201461, 57.728171],
       [-135.151475, 57.738296],
       [-135.098422, 57.754898],
       [-135.063972, 57.750847],
       [-135.024837, 57.74299],
       [-135.012577, 57.746105],
       [-134.97812, 57.763125],
       [-134.939924, 57.763612],
       [-134.929726, 57.759203],
       [-134.921604, 57.742376],
       [-134.91479, 57.705821],
       [-134.918167, 57.682272],
       [-134.867433, 57.623439],
       [-134.856386, 57.598967],
       [-134.824891, 57.500067],
       [-134.83712, 57.482761],
       [-134.874346, 57.464406],
       [-134.90268, 57.459349],
       [-135.025148, 57.454315],
       [-135.084338, 57.464671],
       [-135.091216, 57.466352],
       [-135.096818, 57.469916],
       [-135.134063, 57.497681],
       [-135.242855, 57.546302],
       [-135.325849, 57.577178],
       [-135.392499, 57.599909],
       [-135.474703, 57.631381],
       [-135.514801, 57.650349],
       [-135.571606, 57.674397],
       [-135.593447, 57.663795],
       [-135.650701, 57.65252],
       [-135.684951, 57.677508],
       [-135.712317, 57.672648],
       [-135.704444, 57.658361],
       [-135.697422, 57.649711],
       [-135.660902, 57.629196],
       [-135.592778, 57.602474],
       [-135.571186, 57.605367],
       [-135.546143, 57.613826],
       [-135.526303, 57.606388],
       [-135.511012, 57.595906],
       [-135.519471, 57.588615],
       [-135.52761, 57.589003],
       [-135.557812, 57.583449],
       [-135.570574, 57.579613],
       [-135.587475, 57.568829],
       [-135.588477, 57.552081],
       [-135.575724, 57.522874],
       [-135.577831, 57.52053],
       [-135.578215, 57.516445],
       [-135.565271, 57.510209],
       [-135.549627, 57.482016],
       [-135.55031, 57.470141],
       [-135.553903, 57.45487],
       [-135.557765, 57.451966],
       [-135.610454, 57.442232],
       [-135.613576, 57.438173],
       [-135.611786, 57.431154],
       [-135.612882, 57.424907],
       [-135.621725, 57.419245],
       [-135.626558, 57.409961],
       [-135.647179, 57.406132],
       [-135.664449, 57.407229],
       [-135.667985, 57.405124],
       [-135.669837, 57.400578],
       [-135.670267, 57.396215],
       [-135.668153, 57.392832],
       [-135.669416, 57.389296],
       [-135.691043, 57.383518],
       [-135.6924, 57.375267],
       [-135.711401, 57.36776],
       [-135.720478, 57.373663],
       [-135.768018, 57.383435],
       [-135.84381, 57.390896],
       [-135.892131, 57.408048],
       [-135.900816, 57.418181],
       [-135.896979, 57.440719],
       [-135.943766, 57.45878],
       [-135.966986, 57.472759],
       [-136.014529, 57.506227],
       [-136.030458, 57.52154],
       [-136.021283, 57.531551],
       [-136.001717, 57.544499],
       [-136.061747, 57.592068],
       [-136.106796, 57.616567],
       [-136.130611, 57.624607],
       [-136.187897, 57.62573],
       [-136.207876, 57.638107],
       [-136.280809, 57.717379],
       [-136.314631, 57.758703],
       [-136.304684, 57.771051],
       [-136.309429, 57.779465],
       [-136.365052, 57.828561],
       [-136.370705, 57.831668]]],
     [[[-134.666587, 56.169947],
       [-134.668151, 56.167026],
       [-134.674028, 56.166925],
       [-134.705007, 56.175722],
       [-134.806163, 56.235533],
       [-134.824902, 56.279692],
       [-134.839411, 56.309403],
       [-134.915911, 56.360555],
       [-134.945704, 56.38971],
       [-134.990763, 56.457998],
       [-135.02378, 56.499977],
       [-135.054049, 56.527658],
       [-135.058238, 56.529453],
       [-135.060878, 56.541965],
       [-135.056756, 56.570611],
       [-135.045054, 56.583392],
       [-135.02674, 56.594625],
       [-135.005249, 56.602252],
       [-134.997669, 56.597272],
       [-134.985881, 56.595844],
       [-134.967164, 56.603026],
       [-134.969842, 56.615392],
       [-134.979386, 56.627676],
       [-134.998369, 56.630017],
       [-135.029747, 56.628918],
       [-135.036432, 56.619628],
       [-135.065693, 56.607852],
       [-135.091611, 56.600068],
       [-135.103271, 56.597927],
       [-135.118709, 56.597728],
       [-135.123389, 56.602823],
       [-135.148836, 56.648915],
       [-135.147761, 56.651932],
       [-135.175826, 56.677876],
       [-135.224142, 56.687858],
       [-135.27491, 56.701633],
       [-135.305077, 56.726382],
       [-135.317429, 56.743311],
       [-135.318082, 56.748688],
       [-135.29643, 56.756294],
       [-135.281608, 56.758528],
       [-135.280875, 56.768357],
       [-135.310159, 56.778093],
       [-135.352176, 56.771196],
       [-135.398678, 56.779201],
       [-135.412989, 56.810079],
       [-135.408542, 56.826014],
       [-135.368899, 56.892589],
       [-135.347244, 56.89998],
       [-135.332356, 56.913951],
       [-135.35409, 56.9365],
       [-135.379725, 56.953039],
       [-135.383376, 56.981544],
       [-135.360232, 57.002231],
       [-135.342801, 57.001874],
       [-135.329492, 57.004507],
       [-135.325216, 57.010866],
       [-135.31278, 57.044984],
       [-135.333998, 57.050403],
       [-135.349229, 57.041535],
       [-135.3741, 57.045391],
       [-135.377763, 57.05291],
       [-135.369858, 57.057923],
       [-135.36571, 57.066062],
       [-135.378337, 57.081622],
       [-135.384617, 57.087725],
       [-135.388859, 57.089026],
       [-135.401721, 57.098654],
       [-135.40414, 57.109318],
       [-135.405293, 57.114508],
       [-135.406158, 57.119697],
       [-135.405293, 57.138149],
       [-135.409703, 57.148861],
       [-135.422746, 57.167724],
       [-135.399312, 57.185003],
       [-135.372441, 57.198063],
       [-135.37758, 57.206302],
       [-135.372021, 57.228003],
       [-135.361771, 57.233591],
       [-135.358715, 57.243776],
       [-135.366177, 57.248852],
       [-135.406086, 57.251678],
       [-135.414799, 57.251324],
       [-135.429229, 57.247213],
       [-135.449073, 57.248104],
       [-135.470189, 57.255752],
       [-135.477683, 57.256824],
       [-135.503121, 57.253809],
       [-135.511241, 57.247077],
       [-135.552574, 57.233194],
       [-135.561883, 57.241868],
       [-135.561853, 57.244067],
       [-135.568954, 57.255186],
       [-135.602297, 57.285707],
       [-135.604161, 57.290437],
       [-135.600688, 57.294074],
       [-135.601782, 57.300772],
       [-135.631415, 57.311568],
       [-135.637423, 57.315276],
       [-135.638209, 57.320278],
       [-135.674687, 57.336747],
       [-135.684597, 57.350328],
       [-135.695563, 57.35746],
       [-135.69512, 57.363077],
       [-135.687696, 57.367477],
       [-135.659614, 57.373907],
       [-135.639556, 57.371883],
       [-135.630627, 57.379595],
       [-135.628016, 57.383393],
       [-135.627022, 57.388207],
       [-135.633573, 57.394211],
       [-135.633654, 57.399102],
       [-135.626007, 57.399578],
       [-135.604184, 57.409932],
       [-135.585395, 57.416811],
       [-135.570872, 57.417459],
       [-135.554548, 57.426636],
       [-135.555321, 57.436738],
       [-135.557806, 57.438236],
       [-135.56099, 57.437455],
       [-135.561916, 57.438505],
       [-135.562234, 57.440413],
       [-135.562234, 57.44272],
       [-135.558496, 57.444788],
       [-135.556109, 57.446458],
       [-135.540158, 57.446241],
       [-135.534221, 57.450252],
       [-135.532069, 57.481117],
       [-135.548794, 57.508977],
       [-135.526036, 57.509697],
       [-135.491537, 57.531687],
       [-135.443404, 57.556876],
       [-135.419205, 57.564159],
       [-135.355749, 57.553568],
       [-135.347597, 57.550232],
       [-135.322925, 57.533476],
       [-135.294491, 57.510836],
       [-135.294837, 57.50872],
       [-135.308458, 57.495201],
       [-135.297784, 57.483721],
       [-135.265557, 57.48086],
       [-135.246114, 57.483598],
       [-135.227293, 57.489838],
       [-135.209123, 57.488753],
       [-135.161017, 57.460713],
       [-135.168056, 57.454212],
       [-135.159206, 57.445568],
       [-135.145949, 57.439049],
       [-135.06505, 57.418972],
       [-135.039634, 57.418131],
       [-135.026566, 57.420497],
       [-134.926516, 57.422267],
       [-134.89344, 57.420044],
       [-134.849477, 57.40967],
       [-134.806352, 57.341888],
       [-134.812769, 57.299765],
       [-134.829365, 57.294098],
       [-134.835211, 57.300315],
       [-134.88478, 57.330003],
       [-134.921651, 57.330713],
       [-134.951267, 57.32866],
       [-134.953951, 57.323723],
       [-134.955014, 57.309433],
       [-134.953011, 57.306131],
       [-134.946626, 57.303164],
       [-134.922329, 57.303708],
       [-134.879535, 57.288177],
       [-134.854948, 57.264766],
       [-134.841774, 57.248588],
       [-134.755886, 57.058035],
       [-134.73788, 57.009935],
       [-134.7383, 56.968059],
       [-134.740135, 56.948481],
       [-134.719275, 56.929031],
       [-134.695735, 56.900791],
       [-134.699099, 56.850864],
       [-134.674238, 56.825177],
       [-134.663434, 56.804687],
       [-134.633997, 56.728722],
       [-134.619799, 56.665888],
       [-134.615955, 56.637289],
       [-134.626943, 56.553868],
       [-134.634207, 56.540968],
       [-134.639732, 56.538835],
       [-134.671047, 56.5412],
       [-134.669778, 56.524129],
       [-134.663839, 56.503183],
       [-134.658622, 56.494676],
       [-134.655174, 56.492033],
       [-134.645308, 56.472215],
       [-134.636506, 56.405625],
       [-134.63401, 56.31584],
       [-134.634411, 56.285341],
       [-134.634668, 56.265832],
       [-134.653827, 56.198385],
       [-134.65987, 56.182494],
       [-134.666587, 56.169947]]],
     [[[-135.703464, 57.32204],
       [-135.702919, 57.315582],
       [-135.705483, 57.308557],
       [-135.688233, 57.276143],
       [-135.657272, 57.262027],
       [-135.655008, 57.25824],
       [-135.654898, 57.254742],
       [-135.658859, 57.247964],
       [-135.6586, 57.245541],
       [-135.656363, 57.243036],
       [-135.637289, 57.236124],
       [-135.621346, 57.223693],
       [-135.620735, 57.217885],
       [-135.604953, 57.184204],
       [-135.596921, 57.161196],
       [-135.602057, 57.149161],
       [-135.5986, 57.14536],
       [-135.592379, 57.142683],
       [-135.581473, 57.150599],
       [-135.575674, 57.15053],
       [-135.565707, 57.147312],
       [-135.565756, 57.137344],
       [-135.575722, 57.104231],
       [-135.574693, 57.094339],
       [-135.635347, 57.022411],
       [-135.65054, 57.015139],
       [-135.68052, 57.017342],
       [-135.753682, 57.008258],
       [-135.764949, 57.006094],
       [-135.767654, 57.000428],
       [-135.772432, 56.997301],
       [-135.821915, 56.988215],
       [-135.854131, 56.995043],
       [-135.857028, 56.997287],
       [-135.852146, 57.029699],
       [-135.841819, 57.070899],
       [-135.83489, 57.091387],
       [-135.805945, 57.106778],
       [-135.776975, 57.112555],
       [-135.755997, 57.121225],
       [-135.735559, 57.151755],
       [-135.735405, 57.155403],
       [-135.752591, 57.168834],
       [-135.762241, 57.173341],
       [-135.785583, 57.177929],
       [-135.800824, 57.173655],
       [-135.824388, 57.192862],
       [-135.833896, 57.254233],
       [-135.828831, 57.301981],
       [-135.840359, 57.314342],
       [-135.855849, 57.31996],
       [-135.859572, 57.323108],
       [-135.860558, 57.330854],
       [-135.851162, 57.336916],
       [-135.838568, 57.338756],
       [-135.761471, 57.342631],
       [-135.730323, 57.337286],
       [-135.715233, 57.330722],
       [-135.703464, 57.32204]]]]},
   'id': '02220'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02230',
    'STATE': '02',
    'COUNTY': '230',
    'NAME': 'Skagway',
    'LSAD': 'Muny',
    'CENSUSAREA': 452.325},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-135.00518, 59.357217],
      [-135.029245, 59.345364],
      [-135.37582, 59.340621],
      [-135.72246, 59.729526],
      [-135.477436, 59.799626],
      [-135.284921, 59.714893],
      [-135.166736, 59.63224],
      [-135.153113, 59.625159],
      [-135.114588, 59.623415],
      [-135.027456, 59.563692],
      [-135.029769, 59.482444],
      [-135.040037, 59.444792],
      [-135.029769, 59.40714],
      [-135.00518, 59.357217]]]},
   'id': '02230'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02240',
    'STATE': '02',
    'COUNTY': '240',
    'NAME': 'Southeast Fairbanks',
    'LSAD': 'CA',
    'CENSUSAREA': 24768.808},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-146.484119, 63.173325],
      [-146.489541, 63.482913],
      [-146.975489, 63.479746],
      [-146.972014, 63.911791],
      [-147.003185, 64.258928],
      [-146.35735, 64.278453],
      [-146.227064, 64.363752],
      [-144.04653, 64.666771],
      [-144.061159, 64.683442],
      [-143.751216, 64.647777],
      [-143.647213, 64.669506],
      [-143.433715, 64.821828],
      [-143.503643, 64.858251],
      [-143.525172, 64.96008],
      [-143.364478, 64.996996],
      [-143.081816, 65.120937],
      [-142.847089, 65.145564],
      [-142.7319, 65.233639],
      [-142.726364, 65.307742],
      [-142.629971, 65.385368],
      [-142.487301, 65.371898],
      [-142.307081, 65.440633],
      [-142.12138, 65.47169],
      [-141.855761, 65.445786],
      [-141.78905, 65.501546],
      [-141.387842, 65.614395],
      [-141.336224, 65.711614],
      [-141.093233, 65.827388],
      [-141.002465, 65.839421],
      [-141.00202, 61.901922],
      [-141.828648, 61.90103],
      [-141.830194, 62.12758],
      [-142.017011, 62.127586],
      [-141.978417, 62.165011],
      [-141.963703, 62.510628],
      [-142.320598, 62.598671],
      [-142.314531, 62.683952],
      [-142.629088, 62.683657],
      [-142.736106, 62.702023],
      [-142.842155, 62.597198],
      [-143.104753, 62.613456],
      [-143.159193, 62.636952],
      [-143.138459, 62.691159],
      [-143.007728, 62.766011],
      [-143.196314, 62.826152],
      [-143.027483, 62.935424],
      [-143.001212, 62.993787],
      [-143.088616, 63.008567],
      [-143.126854, 63.115888],
      [-143.876857, 63.113153],
      [-144.576439, 63.117871],
      [-144.575427, 63.133381],
      [-145.148422, 63.133568],
      [-145.148881, 63.222211],
      [-146.111233, 63.22125],
      [-146.140827, 63.184013],
      [-146.32926, 63.190562],
      [-146.484119, 63.173325]]]},
   'id': '02240'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02261',
    'STATE': '02',
    'COUNTY': '261',
    'NAME': 'Valdez-Cordova',
    'LSAD': 'CA',
    'CENSUSAREA': 34239.88},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-147.562801, 60.579821],
       [-147.555392, 60.574059],
       [-147.551709, 60.559612],
       [-147.565775, 60.534713],
       [-147.607756, 60.50692],
       [-147.623835, 60.465878],
       [-147.619972, 60.436821],
       [-147.674351, 60.41443],
       [-147.690773, 60.405054],
       [-147.681888, 60.388167],
       [-147.630081, 60.38955],
       [-147.62202, 60.383794],
       [-147.618906, 60.368848],
       [-147.639474, 60.340579],
       [-147.671135, 60.308929],
       [-147.703599, 60.285589],
       [-147.698608, 60.245552],
       [-147.704731, 60.227874],
       [-147.720124, 60.202002],
       [-147.760681, 60.156396],
       [-147.766484, 60.15418],
       [-147.783583, 60.161073],
       [-147.820159, 60.179555],
       [-147.845681, 60.195434],
       [-147.832285, 60.197855],
       [-147.827991, 60.20063],
       [-147.828962, 60.207442],
       [-147.855453, 60.216419],
       [-147.908985, 60.224359],
       [-147.945158, 60.222324],
       [-147.956228, 60.228667],
       [-147.950532, 60.243791],
       [-147.933269, 60.273632],
       [-147.837456, 60.414452],
       [-147.792822, 60.476193],
       [-147.782548, 60.4833],
       [-147.778269, 60.484007],
       [-147.765825, 60.476505],
       [-147.779329, 60.457078],
       [-147.750864, 60.440981],
       [-147.738151, 60.441277],
       [-147.715312, 60.447915],
       [-147.70916, 60.451883],
       [-147.717097, 60.467282],
       [-147.726642, 60.472216],
       [-147.72646, 60.502533],
       [-147.721824, 60.508635],
       [-147.613843, 60.565906],
       [-147.566372, 60.580849],
       [-147.562801, 60.579821]]],
     [[[-147.444468, 60.699654],
       [-147.384779, 60.710017],
       [-147.308537, 60.666793],
       [-147.302915, 60.660673],
       [-147.337429, 60.632685],
       [-147.344494, 60.628544],
       [-147.457407, 60.61909],
       [-147.486045, 60.619348],
       [-147.501603, 60.654772],
       [-147.486484, 60.686582],
       [-147.479814, 60.693593],
       [-147.449559, 60.700046],
       [-147.444468, 60.699654]]],
     [[[-147.952039, 60.741879],
       [-147.906021, 60.735515],
       [-147.848176, 60.698116],
       [-147.846103, 60.694509],
       [-147.860057, 60.677233],
       [-147.868067, 60.670825],
       [-147.932931, 60.655714],
       [-147.970684, 60.673799],
       [-148.020259, 60.72495],
       [-147.965419, 60.751996],
       [-147.957239, 60.747706],
       [-147.952039, 60.741879]]],
     [[[-147.131319, 60.912932],
       [-147.115336, 60.911938],
       [-147.077772, 60.899503],
       [-147.071788, 60.893833],
       [-147.089645, 60.874693],
       [-147.126799, 60.858011],
       [-147.141802, 60.853991],
       [-147.192354, 60.861635],
       [-147.217749, 60.869741],
       [-147.253128, 60.872969],
       [-147.309086, 60.873924],
       [-147.32564, 60.877153],
       [-147.321084, 60.880198],
       [-147.226303, 60.910421],
       [-147.210324, 60.908776],
       [-147.193399, 60.902949],
       [-147.178969, 60.903704],
       [-147.131319, 60.912932]]],
     [[[-147.217704, 60.293504],
       [-147.19494, 60.304563],
       [-147.183277, 60.32068],
       [-147.185243, 60.323083],
       [-147.195608, 60.326224],
       [-147.211625, 60.324936],
       [-147.215312, 60.327109],
       [-147.218799, 60.334726],
       [-147.214679, 60.343793],
       [-147.211582, 60.34626],
       [-147.147514, 60.37247],
       [-147.112667, 60.380982],
       [-147.098703, 60.378697],
       [-147.091897, 60.374969],
       [-147.089363, 60.369126],
       [-147.092717, 60.363396],
       [-147.10401, 60.356727],
       [-147.095483, 60.341964],
       [-147.073932, 60.338982],
       [-147.013164, 60.343863],
       [-147.006138, 60.343119],
       [-147.003839, 60.34031],
       [-147.004091, 60.334348],
       [-147.015307, 60.322548],
       [-147.089866, 60.292106],
       [-147.103118, 60.28019],
       [-147.104107, 60.277155],
       [-147.080463, 60.265355],
       [-147.064768, 60.270188],
       [-146.962633, 60.311911],
       [-146.944024, 60.31602],
       [-146.916164, 60.314898],
       [-146.911772, 60.309807],
       [-146.911377, 60.297593],
       [-146.948089, 60.269974],
       [-147.002067, 60.232453],
       [-147.139641, 60.179058],
       [-147.202416, 60.151128],
       [-147.253868, 60.113852],
       [-147.365424, 60.042867],
       [-147.388508, 60.011116],
       [-147.388686, 60.004301],
       [-147.438369, 59.97468],
       [-147.493235, 59.955388],
       [-147.499783, 59.951069],
       [-147.505311, 59.937494],
       [-147.499625, 59.926296],
       [-147.494317, 59.922756],
       [-147.483056, 59.920873],
       [-147.476312, 59.921563],
       [-147.448681, 59.915892],
       [-147.443678, 59.913543],
       [-147.45236, 59.880518],
       [-147.46692, 59.8701],
       [-147.533041, 59.852401],
       [-147.541643, 59.853282],
       [-147.540437, 59.857264],
       [-147.542664, 59.861336],
       [-147.571278, 59.868709],
       [-147.596339, 59.868872],
       [-147.62198, 59.866484],
       [-147.651738, 59.851223],
       [-147.657015, 59.844035],
       [-147.657048, 59.839497],
       [-147.660388, 59.832248],
       [-147.677139, 59.821368],
       [-147.693869, 59.81907],
       [-147.727499, 59.81978],
       [-147.738538, 59.822949],
       [-147.745417, 59.821844],
       [-147.810788, 59.802233],
       [-147.831008, 59.790043],
       [-147.874097, 59.78326],
       [-147.912883, 59.79224],
       [-147.924906, 59.799712],
       [-147.928064, 59.803496],
       [-147.908247, 59.852832],
       [-147.895411, 59.869145],
       [-147.877936, 59.879678],
       [-147.856693, 59.886661],
       [-147.808272, 59.888148],
       [-147.797213, 59.909477],
       [-147.809035, 59.92348],
       [-147.804252, 59.936497],
       [-147.739635, 59.968008],
       [-147.728869, 59.969509],
       [-147.707445, 59.964151],
       [-147.690642, 59.963236],
       [-147.68628, 59.964476],
       [-147.659569, 59.980064],
       [-147.662645, 59.986676],
       [-147.647042, 60.005649],
       [-147.555529, 60.051131],
       [-147.479543, 60.076653],
       [-147.45149, 60.08792],
       [-147.433254, 60.096159],
       [-147.406, 60.112631],
       [-147.388701, 60.126473],
       [-147.319715, 60.190581],
       [-147.315691, 60.202891],
       [-147.322841, 60.214784],
       [-147.312081, 60.222871],
       [-147.281373, 60.226812],
       [-147.249786, 60.228589],
       [-147.24431, 60.231298],
       [-147.219108, 60.253513],
       [-147.20615, 60.269508],
       [-147.217704, 60.293504]]],
     [[[-141.00185, 60.391688],
       [-141.213615, 60.392456],
       [-141.213691, 60.435809],
       [-141.763696, 60.435027],
       [-141.765581, 60.527746],
       [-141.963079, 60.521376],
       [-142.817324, 60.515849],
       [-143.167061, 60.518816],
       [-143.889952, 60.0423],
       [-143.885474, 59.996787],
       [-143.891429, 59.995798],
       [-143.931211, 59.998343],
       [-143.978568, 60.006347],
       [-143.989235, 60.00883],
       [-143.988639, 60.013993],
       [-143.991356, 60.017725],
       [-144.001244, 60.020906],
       [-144.013823, 60.024398],
       [-144.043536, 60.025174],
       [-144.055365, 60.037003],
       [-144.052424, 60.047001],
       [-144.033324, 60.059533],
       [-144.140503, 60.1144],
       [-144.204654, 60.137301],
       [-144.229803, 60.142788],
       [-144.253878, 60.165894],
       [-144.253979, 60.182934],
       [-144.318856, 60.189295],
       [-144.358774, 60.188132],
       [-144.369311, 60.185659],
       [-144.379225, 60.16909],
       [-144.441936, 60.163069],
       [-144.453957, 60.166004],
       [-144.47816, 60.181595],
       [-144.501059, 60.189815],
       [-144.534892, 60.18942],
       [-144.545101, 60.186999],
       [-144.553786, 60.181914],
       [-144.555093, 60.178485],
       [-144.558163, 60.177797],
       [-144.596256, 60.181666],
       [-144.654899, 60.204882],
       [-144.666556, 60.222572],
       [-144.662685, 60.229296],
       [-144.662364, 60.23948],
       [-144.666134, 60.243885],
       [-144.715474, 60.271215],
       [-144.75345, 60.283515],
       [-144.782521, 60.291972],
       [-144.892815, 60.292821],
       [-144.914016, 60.280934],
       [-144.942134, 60.289728],
       [-144.912707, 60.363178],
       [-144.871428, 60.407269],
       [-144.855457, 60.416886],
       [-144.834059, 60.443751],
       [-144.848662, 60.455192],
       [-144.874451, 60.457304],
       [-144.887342, 60.456048],
       [-144.903296, 60.442581],
       [-144.964135, 60.444466],
       [-144.983585, 60.446902],
       [-145.012409, 60.44792],
       [-145.12555, 60.429389],
       [-145.152365, 60.421558],
       [-145.181041, 60.407531],
       [-145.191183, 60.395239],
       [-145.202891, 60.374915],
       [-145.169934, 60.329987],
       [-145.112199, 60.2962],
       [-145.122441, 60.289876],
       [-145.222896, 60.297911],
       [-145.364296, 60.335961],
       [-145.503315, 60.387954],
       [-145.510457, 60.408988],
       [-145.50393, 60.410607],
       [-145.501549, 60.416799],
       [-145.502351, 60.420811],
       [-145.536942, 60.430533],
       [-145.561523, 60.443124],
       [-145.594158, 60.45183],
       [-145.668841, 60.465431],
       [-145.735938, 60.47466],
       [-145.799318, 60.462031],
       [-145.853469, 60.44563],
       [-145.882293, 60.444633],
       [-145.9469, 60.455395],
       [-145.957404, 60.461101],
       [-145.96106, 60.465017],
       [-145.960508, 60.46751],
       [-145.914403, 60.49235],
       [-145.863092, 60.501821],
       [-145.802387, 60.520173],
       [-145.712891, 60.583249],
       [-145.736494, 60.59521],
       [-145.764045, 60.591588],
       [-145.780628, 60.579182],
       [-145.798819, 60.561918],
       [-145.820659, 60.550051],
       [-145.828622, 60.549746],
       [-145.964543, 60.513557],
       [-146.039209, 60.492968],
       [-146.074409, 60.480085],
       [-146.109713, 60.470345],
       [-146.216786, 60.450228],
       [-146.247144, 60.451188],
       [-146.312552, 60.457438],
       [-146.317354, 60.460608],
       [-146.351292, 60.454293],
       [-146.355334, 60.449349],
       [-146.356252, 60.425527],
       [-146.350104, 60.40778],
       [-146.330118, 60.407098],
       [-146.308784, 60.414246],
       [-146.284201, 60.417656],
       [-146.133957, 60.431523],
       [-146.127029, 60.430815],
       [-146.123595, 60.428031],
       [-146.126199, 60.42429],
       [-146.094249, 60.410296],
       [-146.133058, 60.383774],
       [-146.19868, 60.359928],
       [-146.268052, 60.347958],
       [-146.302167, 60.349234],
       [-146.392859, 60.327476],
       [-146.458322, 60.30725],
       [-146.490407, 60.294939],
       [-146.539897, 60.270968],
       [-146.607295, 60.241182],
       [-146.62798, 60.239633],
       [-146.64103, 60.240897],
       [-146.650455, 60.242982],
       [-146.689126, 60.271279],
       [-146.693637, 60.279608],
       [-146.693149, 60.284593],
       [-146.68147, 60.292247],
       [-146.649855, 60.305063],
       [-146.594979, 60.321203],
       [-146.571617, 60.321755],
       [-146.540306, 60.338811],
       [-146.524194, 60.350667],
       [-146.542704, 60.357974],
       [-146.575438, 60.357272],
       [-146.607038, 60.351673],
       [-146.624217, 60.341407],
       [-146.655894, 60.340462],
       [-146.717151, 60.349598],
       [-146.725114, 60.359939],
       [-146.723671, 60.387606],
       [-146.721082, 60.396416],
       [-146.637386, 60.467178],
       [-146.610443, 60.485613],
       [-146.590633, 60.491039],
       [-146.528853, 60.492135],
       [-146.523866, 60.487332],
       [-146.505445, 60.476961],
       [-146.455047, 60.465318],
       [-146.368003, 60.480671],
       [-146.316364, 60.497499],
       [-146.289686, 60.515692],
       [-146.155893, 60.526296],
       [-146.079963, 60.543056],
       [-145.95134, 60.576779],
       [-145.886523, 60.585713],
       [-145.872572, 60.584836],
       [-145.844229, 60.586509],
       [-145.800411, 60.593996],
       [-145.794744, 60.601121],
       [-145.795287, 60.603151],
       [-145.815708, 60.612217],
       [-145.83232, 60.614851],
       [-145.856046, 60.610936],
       [-145.88835, 60.610304],
       [-145.896266, 60.611789],
       [-145.897785, 60.613653],
       [-145.89616, 60.628684],
       [-145.895243, 60.629213],
       [-145.897145, 60.651214],
       [-145.883904, 60.658185],
       [-145.86777, 60.666784],
       [-145.841345, 60.685893],
       [-145.841418, 60.689787],
       [-145.84454, 60.690169],
       [-145.851783, 60.689858],
       [-145.85816, 60.688484],
       [-145.87582, 60.683453],
       [-145.894257, 60.674164],
       [-145.899208, 60.671118],
       [-145.922006, 60.651954],
       [-145.924923, 60.648898],
       [-145.936921, 60.632053],
       [-145.937067, 60.63049],
       [-145.965559, 60.622748],
       [-146.002533, 60.615082],
       [-146.004621, 60.616231],
       [-146.005755, 60.616854],
       [-146.007675, 60.619742],
       [-146.007747, 60.625326],
       [-145.999198, 60.640832],
       [-145.968734, 60.668235],
       [-145.937031, 60.682822],
       [-145.931436, 60.685478],
       [-145.911538, 60.696647],
       [-145.899162, 60.705642],
       [-145.901279, 60.715373],
       [-145.905477, 60.715045],
       [-145.978105, 60.684712],
       [-146.016402, 60.667222],
       [-146.02502, 60.665311],
       [-146.05567, 60.658685],
       [-146.086293, 60.65203],
       [-146.116912, 60.643327],
       [-146.130941, 60.639181],
       [-146.143249, 60.633869],
       [-146.147236, 60.631407],
       [-146.187676, 60.624521],
       [-146.253074, 60.622315],
       [-146.25838, 60.626288],
       [-146.263142, 60.631932],
       [-146.268684, 60.64124],
       [-146.270257, 60.644928],
       [-146.27025, 60.648035],
       [-146.262982, 60.651569],
       [-146.188159, 60.687333],
       [-146.178676, 60.691483],
       [-146.14064, 60.707652],
       [-146.124073, 60.712417],
       [-146.101061, 60.719277],
       [-146.043736, 60.743636],
       [-146.045326, 60.75404],
       [-146.048704, 60.76377],
       [-146.064557, 60.776944],
       [-146.067221, 60.773918],
       [-146.070967, 60.770956],
       [-146.085107, 60.761063],
       [-146.08978, 60.758156],
       [-146.12039, 60.741981],
       [-146.16022, 60.726383],
       [-146.168059, 60.72535],
       [-146.191156, 60.73199],
       [-146.199026, 60.734359],
       [-146.201912, 60.735912],
       [-146.2001, 60.743081],
       [-146.20874, 60.74439],
       [-146.216811, 60.7417],
       [-146.22825, 60.735643],
       [-146.230706, 60.722008],
       [-146.239512, 60.716889],
       [-146.257663, 60.713068],
       [-146.303398, 60.713214],
       [-146.313858, 60.717926],
       [-146.3173, 60.721124],
       [-146.317949, 60.723817],
       [-146.312283, 60.734401],
       [-146.346573, 60.735747],
       [-146.386892, 60.714598],
       [-146.402873, 60.693084],
       [-146.41252, 60.69045],
       [-146.474142, 60.681539],
       [-146.499849, 60.680134],
       [-146.517848, 60.688102],
       [-146.532396, 60.689748],
       [-146.578813, 60.690212],
       [-146.607153, 60.686377],
       [-146.623266, 60.68042],
       [-146.649059, 60.683438],
       [-146.667754, 60.692761],
       [-146.699219, 60.732176],
       [-146.703597, 60.741903],
       [-146.605008, 60.758608],
       [-146.566731, 60.751198],
       [-146.500678, 60.772113],
       [-146.464824, 60.770722],
       [-146.358618, 60.786193],
       [-146.304445, 60.798038],
       [-146.255415, 60.809962],
       [-146.183158, 60.846969],
       [-146.171897, 60.862823],
       [-146.173131, 60.866071],
       [-146.188185, 60.869374],
       [-146.262572, 60.867787],
       [-146.268659, 60.863842],
       [-146.290202, 60.842694],
       [-146.313757, 60.827833],
       [-146.333424, 60.821921],
       [-146.394369, 60.812271],
       [-146.550577, 60.809402],
       [-146.555964, 60.810066],
       [-146.620419, 60.869019],
       [-146.664368, 60.870854],
       [-146.700741, 60.848345],
       [-146.718132, 60.835667],
       [-146.719532, 60.830166],
       [-146.714748, 60.820385],
       [-146.71979, 60.814475],
       [-146.724844, 60.81212],
       [-146.754847, 60.807882],
       [-146.800612, 60.80516],
       [-146.819018, 60.816346],
       [-146.819008, 60.841568],
       [-146.816305, 60.855628],
       [-146.787431, 60.865597],
       [-146.774155, 60.876225],
       [-146.757004, 60.878454],
       [-146.727226, 60.86627],
       [-146.69769, 60.872534],
       [-146.711287, 60.896465],
       [-146.736025, 60.910301],
       [-146.746758, 60.935454],
       [-146.745543, 60.957582],
       [-146.701356, 60.987009],
       [-146.65343, 61.047752],
       [-146.661518, 61.060776],
       [-146.690552, 61.064076],
       [-146.78373, 61.042936],
       [-146.848112, 61.000587],
       [-146.862709, 60.982523],
       [-146.861961, 60.976177],
       [-146.868826, 60.971448],
       [-146.879853, 60.965161],
       [-146.929789, 60.944263],
       [-146.973072, 60.934835],
       [-147.038952, 60.942079],
       [-147.055754, 60.945468],
       [-147.070552, 60.963312],
       [-147.06323, 60.974057],
       [-147.047088, 60.991209],
       [-147.062671, 61.004336],
       [-147.094863, 61.010189],
       [-147.112607, 61.002974],
       [-147.136884, 60.980968],
       [-147.144639, 60.963492],
       [-147.135571, 60.946248],
       [-147.143314, 60.939831],
       [-147.171624, 60.932877],
       [-147.181257, 60.933099],
       [-147.20493, 60.94266],
       [-147.215273, 60.948077],
       [-147.220809, 60.953121],
       [-147.226487, 60.96216],
       [-147.219575, 60.969505],
       [-147.220325, 60.981702],
       [-147.221616, 60.983541],
       [-147.252984, 60.979621],
       [-147.273646, 60.974595],
       [-147.278004, 60.961063],
       [-147.280437, 60.916963],
       [-147.378086, 60.877845],
       [-147.451569, 60.894219],
       [-147.452904, 60.897366],
       [-147.451699, 60.92588],
       [-147.453406, 60.941468],
       [-147.47309, 60.957552],
       [-147.491546, 60.957998],
       [-147.507268, 60.927235],
       [-147.50601, 60.92117],
       [-147.502365, 60.920429],
       [-147.493812, 60.912379],
       [-147.517424, 60.894819],
       [-147.525056, 60.896057],
       [-147.543002, 60.903331],
       [-147.549756, 60.908009],
       [-147.536798, 61.019346],
       [-147.534034, 61.03109],
       [-147.515782, 61.061408],
       [-147.502323, 61.072056],
       [-147.513776, 61.096127],
       [-147.525097, 61.101176],
       [-147.558201, 61.099797],
       [-147.554439, 61.091719],
       [-147.557226, 61.081402],
       [-147.59126, 61.016591],
       [-147.6188, 60.97004],
       [-147.613846, 60.951496],
       [-147.597749, 60.913905],
       [-147.587309, 60.874463],
       [-147.602405, 60.849978],
       [-147.626585, 60.845065],
       [-147.668593, 60.841563],
       [-147.671928, 60.845283],
       [-147.677292, 60.86996],
       [-147.66296, 60.874951],
       [-147.665855, 60.883774],
       [-147.730391, 60.911256],
       [-147.760843, 60.913227],
       [-147.787115, 60.873511],
       [-147.779717, 60.863435],
       [-147.766961, 60.853544],
       [-147.750212, 60.852141],
       [-147.732124, 60.824711],
       [-147.729421, 60.818252],
       [-147.733252, 60.816975],
       [-147.743256, 60.813887],
       [-147.777157, 60.811018],
       [-147.828765, 60.815947],
       [-147.85592, 60.820882],
       [-147.913399, 60.825152],
       [-147.915116, 60.818955],
       [-147.920445, 60.812442],
       [-148.033953, 60.783198],
       [-148.098148, 60.786556],
       [-148.133987, 60.791268],
       [-148.144355, 60.797089],
       [-148.151597, 60.818122],
       [-148.148298, 60.828701],
       [-148.101841, 60.899347],
       [-148.08522, 60.918613],
       [-148.065132, 60.937963],
       [-148.017276, 60.971807],
       [-147.950619, 61.029211],
       [-147.947785, 61.040625],
       [-147.961969, 61.059537],
       [-147.973392, 61.067391],
       [-147.982673, 61.070246],
       [-147.991241, 61.069533],
       [-148.001637, 61.060103],
       [-148.003216, 61.053797],
       [-148.065505, 61.003979],
       [-148.09009, 61.00511],
       [-148.095004, 61.011384],
       [-148.105388, 61.035123],
       [-148.125128, 61.070698],
       [-148.149024, 61.076672],
       [-148.165969, 61.069277],
       [-148.164452, 61.042665],
       [-148.177649, 60.999608],
       [-148.19897, 60.971584],
       [-148.218954, 60.953573],
       [-148.241664, 60.937738],
       [-148.265584, 60.936331],
       [-148.281248, 60.917792],
       [-148.294475, 60.862751],
       [-148.30971, 60.837737],
       [-148.340711, 60.809072],
       [-148.35046, 60.803991],
       [-148.375416, 60.80347],
       [-148.389517, 60.805622],
       [-148.396614, 60.813694],
       [-148.426555, 60.827113],
       [-148.446278, 60.808705],
       [-148.450122, 60.796405],
       [-148.45089, 60.789487],
       [-148.441666, 60.777956],
       [-148.431078, 60.771842],
       [-148.405576, 60.780301],
       [-148.395962, 60.779701],
       [-148.381999, 60.775768],
       [-148.366407, 60.765833],
       [-148.365314, 60.740969],
       [-148.384094, 60.687754],
       [-148.374018, 60.67264],
       [-148.347881, 60.680327],
       [-148.326357, 60.709539],
       [-148.280136, 60.753337],
       [-148.269523, 60.757389],
       [-148.229756, 60.76414],
       [-148.147662, 60.758536],
       [-148.120366, 60.748952],
       [-148.106987, 60.73977],
       [-148.091315, 60.676249],
       [-148.093732, 60.661533],
       [-148.142596, 60.622632],
       [-148.229961, 60.595062],
       [-148.237828, 60.600206],
       [-148.254852, 60.595124],
       [-148.292837, 60.565496],
       [-148.306123, 60.550702],
       [-148.328167, 60.531913],
       [-148.333245, 60.530464],
       [-148.345627, 60.502973],
       [-148.346378, 60.48873],
       [-148.328987, 60.476182],
       [-148.293534, 60.483001],
       [-148.255425, 60.49341],
       [-148.247867, 60.500504],
       [-148.250132, 60.507573],
       [-148.238554, 60.521443],
       [-148.192033, 60.557371],
       [-148.114766, 60.596029],
       [-148.102747, 60.598026],
       [-148.086378, 60.595518],
       [-147.979019, 60.519146],
       [-147.963617, 60.50275],
       [-147.971198, 60.486479],
       [-147.97725, 60.480937],
       [-147.941709, 60.444029],
       [-147.992939, 60.352596],
       [-148.025597, 60.279029],
       [-148.064494, 60.276233],
       [-148.115864, 60.279522],
       [-148.150132, 60.29621],
       [-148.153122, 60.303062],
       [-148.153624, 60.3116],
       [-148.150109, 60.320739],
       [-148.150231, 60.324182],
       [-148.170881, 60.335266],
       [-148.192669, 60.339103],
       [-148.216921, 60.331594],
       [-148.215848, 60.318269],
       [-148.211194, 60.306961],
       [-148.215152, 60.301014],
       [-148.284807, 60.270971],
       [-148.312625, 60.263084],
       [-148.325572, 60.261824],
       [-148.3621, 60.221849],
       [-148.339155, 60.21335],
       [-148.332652, 60.214],
       [-148.321208, 60.218469],
       [-148.275752, 60.24927],
       [-148.216863, 60.260006],
       [-148.208328, 60.259342],
       [-148.192, 60.2525],
       [-148.188298, 60.248574],
       [-148.192569, 60.241826],
       [-148.200779, 60.236711],
       [-148.228931, 60.235911],
       [-148.234227, 60.223689],
       [-148.19053, 60.206957],
       [-148.165099, 60.206173],
       [-148.158947, 60.211675],
       [-148.153775, 60.226236],
       [-148.153037, 60.235528],
       [-148.139869, 60.241081],
       [-148.090238, 60.215863],
       [-148.1173, 60.191335],
       [-148.133624, 60.18839],
       [-148.13499, 60.184596],
       [-148.130641, 60.169789],
       [-148.126291, 60.167063],
       [-148.090876, 60.168649],
       [-148.080188, 60.171568],
       [-148.079884, 60.184234],
       [-148.085791, 60.190041],
       [-148.082874, 60.192357],
       [-148.061865, 60.200094],
       [-148.051918, 60.202062],
       [-148.003433, 60.176167],
       [-148.006656, 60.168461],
       [-148.018404, 60.157419],
       [-148.02887, 60.150518],
       [-148.032495, 60.148423],
       [-148.064401, 60.148508],
       [-148.09723, 60.12012],
       [-148.121797, 60.073548],
       [-148.095719, 60.065935],
       [-148.079466, 60.073251],
       [-148.053431, 60.090762],
       [-148.040178, 60.112361],
       [-148.01227, 60.124734],
       [-147.961701, 60.1409],
       [-147.912824, 60.132576],
       [-147.89232, 60.119515],
       [-147.887734, 60.109683],
       [-147.892576, 60.101161],
       [-147.973112, 60.064636],
       [-147.998659, 60.062305],
       [-148.013551, 60.038159],
       [-148.023817, 60.007108],
       [-148.016035, 59.999344],
       [-147.986164, 59.999344],
       [-147.924401, 60.03623],
       [-147.892229, 60.063265],
       [-147.879679, 60.069593],
       [-147.860607, 60.076356],
       [-147.848072, 60.078962],
       [-147.822043, 60.066955],
       [-147.816451, 60.061824],
       [-147.815238, 60.058562],
       [-147.823738, 60.045035],
       [-147.863929, 60.006619],
       [-147.917538, 59.985997],
       [-148.005827, 59.961542],
       [-148.03177, 59.955862],
       [-148.036776, 59.956664],
       [-148.050706, 59.968908],
       [-148.050143, 59.976767],
       [-148.056373, 59.990423],
       [-148.069919, 59.989098],
       [-148.08582, 59.977512],
       [-148.104818, 59.969237],
       [-148.135095, 59.959055],
       [-148.153742, 59.954643],
       [-148.224838, 59.950195],
       [-148.251099, 59.952416],
       [-148.252869, 59.955614],
       [-148.213497, 59.994643],
       [-148.193842, 59.998979],
       [-148.179545, 59.996653],
       [-148.147614, 59.994952],
       [-148.1323, 59.997697],
       [-148.128693, 60.003442],
       [-148.138918, 60.012416],
       [-148.175808, 60.026337],
       [-148.212668, 60.018101],
       [-148.273844, 60.013318],
       [-148.317941, 60.028731],
       [-148.305725, 60.054468],
       [-148.290367, 60.059995],
       [-148.292816, 60.151289],
       [-148.305868, 60.161607],
       [-148.316849, 60.165437],
       [-148.346535, 60.162108],
       [-148.358188, 60.15651],
       [-148.369109, 60.120922],
       [-148.382325, 60.063299],
       [-148.401204, 59.9976],
       [-148.429106, 59.969158],
       [-148.445588, 59.963755],
       [-148.470205, 59.973708],
       [-148.480171, 59.979653],
       [-148.482505, 59.983308],
       [-148.476974, 59.989515],
       [-148.480436, 59.999394],
       [-148.508825, 60.002875],
       [-148.544134, 60.002809],
       [-148.556294, 59.984931],
       [-148.555253, 59.980657],
       [-148.599121, 59.950889],
       [-148.635842, 59.939661],
       [-148.673822, 59.944828],
       [-148.58364, 59.961477],
       [-148.562368, 60.422593],
       [-148.666606, 60.423056],
       [-148.655444, 60.734542],
       [-148.745578, 60.733881],
       [-148.746023, 60.84614],
       [-148.473461, 60.85063],
       [-148.479587, 61.165059],
       [-148.460007, 61.426972],
       [-147.206028, 61.425265],
       [-147.205707, 61.475073],
       [-146.945124, 61.474349],
       [-146.941834, 61.811907],
       [-146.961638, 62.160211],
       [-146.981731, 62.248681],
       [-146.426334, 62.247221],
       [-146.428648, 62.863288],
       [-146.484119, 63.173325],
       [-146.32926, 63.190562],
       [-146.140827, 63.184013],
       [-146.111233, 63.22125],
       [-145.148881, 63.222211],
       [-145.148422, 63.133568],
       [-144.575427, 63.133381],
       [-144.576439, 63.117871],
       [-143.876857, 63.113153],
       [-143.126854, 63.115888],
       [-143.088616, 63.008567],
       [-143.001212, 62.993787],
       [-143.027483, 62.935424],
       [-143.196314, 62.826152],
       [-143.007728, 62.766011],
       [-143.138459, 62.691159],
       [-143.159193, 62.636952],
       [-143.104753, 62.613456],
       [-142.842155, 62.597198],
       [-142.736106, 62.702023],
       [-142.629088, 62.683657],
       [-142.314531, 62.683952],
       [-142.320598, 62.598671],
       [-141.963703, 62.510628],
       [-141.978417, 62.165011],
       [-142.017011, 62.127586],
       [-141.830194, 62.12758],
       [-141.828648, 61.90103],
       [-141.00202, 61.901922],
       [-141.00185, 60.391688]]]]},
   'id': '02261'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02270',
    'STATE': '02',
    'COUNTY': '270',
    'NAME': 'Wade Hampton',
    'LSAD': 'CA',
    'CENSUSAREA': 17081.433},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-160.534142, 61.947257],
      [-160.469477, 61.869348],
      [-160.18666, 61.831693],
      [-160.35014, 61.819071],
      [-160.597733, 61.760156],
      [-160.775244, 61.738527],
      [-160.953961, 61.685669],
      [-161.126812, 61.59954],
      [-161.449611, 61.568838],
      [-161.697058, 61.530087],
      [-161.885286, 61.48281],
      [-162.013438, 61.477057],
      [-162.328294, 61.518376],
      [-162.476189, 61.503959],
      [-162.505761, 61.556426],
      [-162.75398, 61.542666],
      [-162.847199, 61.498736],
      [-163.061999, 61.479931],
      [-163.171354, 61.449071],
      [-163.431258, 61.484107],
      [-163.531412, 61.401454],
      [-163.541623, 61.349559],
      [-163.99276, 61.371763],
      [-163.94742, 61.205621],
      [-164.121482, 61.127],
      [-164.201874, 61.151613],
      [-164.211781, 61.082262],
      [-164.154702, 61.022625],
      [-164.234986, 60.988241],
      [-164.529911, 60.940796],
      [-164.616585, 60.979049],
      [-164.797619, 60.982487],
      [-165.157111, 60.917363],
      [-165.155232, 60.929186],
      [-165.172467, 60.940328],
      [-165.194945, 60.9739],
      [-165.194964, 60.979915],
      [-165.190271, 60.983073],
      [-165.133937, 61.01125],
      [-165.115681, 61.016097],
      [-165.097425, 61.016658],
      [-165.096828, 61.014944],
      [-165.083282, 61.012933],
      [-165.020265, 61.011153],
      [-164.998172, 61.013826],
      [-164.961527, 61.024166],
      [-164.951103, 61.03102],
      [-164.950573, 61.048079],
      [-164.927825, 61.084392],
      [-164.902245, 61.077902],
      [-164.87045, 61.079564],
      [-164.868009, 61.096394],
      [-164.883441, 61.105924],
      [-164.891286, 61.108246],
      [-164.941253, 61.110863],
      [-164.981718, 61.109691],
      [-164.991273, 61.107232],
      [-164.997636, 61.10443],
      [-164.998547, 61.079492],
      [-164.993599, 61.076241],
      [-164.991227, 61.072192],
      [-164.995695, 61.058035],
      [-165.011271, 61.051984],
      [-165.029551, 61.05401],
      [-165.057842, 61.059746],
      [-165.119781, 61.07864],
      [-165.167636, 61.113502],
      [-165.175321, 61.120926],
      [-165.17711, 61.125494],
      [-165.167072, 61.133487],
      [-165.165857, 61.136567],
      [-165.16886, 61.144913],
      [-165.172994, 61.146919],
      [-165.203757, 61.150341],
      [-165.2897, 61.181714],
      [-165.307976, 61.181823],
      [-165.325552, 61.169306],
      [-165.344389, 61.123691],
      [-165.350154, 61.104545],
      [-165.350113, 61.097407],
      [-165.347082, 61.084847],
      [-165.342321, 61.079994],
      [-165.336996, 61.077709],
      [-165.338136, 61.073432],
      [-165.343442, 61.070564],
      [-165.370544, 61.066821],
      [-165.403007, 61.06706],
      [-165.498726, 61.079149],
      [-165.549613, 61.088162],
      [-165.578127, 61.100361],
      [-165.590682, 61.111169],
      [-165.631996, 61.220708],
      [-165.634048, 61.237557],
      [-165.627549, 61.258125],
      [-165.620589, 61.268586],
      [-165.623317, 61.278431],
      [-165.635791, 61.285456],
      [-165.662892, 61.29457],
      [-165.787442, 61.310063],
      [-165.809373, 61.306827],
      [-165.816434, 61.303363],
      [-165.831365, 61.306719],
      [-165.858993, 61.318865],
      [-165.879599, 61.335044],
      [-165.915445, 61.387686],
      [-165.921194, 61.40308],
      [-165.92195, 61.409638],
      [-165.918612, 61.419087],
      [-165.844525, 61.440601],
      [-165.800525, 61.449657],
      [-165.791085, 61.449852],
      [-165.767226, 61.45695],
      [-165.748503, 61.476446],
      [-165.746352, 61.489304],
      [-165.754317, 61.498704],
      [-165.807627, 61.529171],
      [-165.912496, 61.5562],
      [-165.964035, 61.555919],
      [-165.981879, 61.551249],
      [-165.985948, 61.54665],
      [-165.999535, 61.53972],
      [-166.034748, 61.535221],
      [-166.075524, 61.532672],
      [-166.08868, 61.522885],
      [-166.079983, 61.513464],
      [-166.058242, 61.500419],
      [-166.075398, 61.49298],
      [-166.108269, 61.492475],
      [-166.124202, 61.504645],
      [-166.158345, 61.541537],
      [-166.165232, 61.550618],
      [-166.178627, 61.574807],
      [-166.18185, 61.581342],
      [-166.182688, 61.588481],
      [-166.158976, 61.700437],
      [-166.153178, 61.714931],
      [-166.143757, 61.724352],
      [-166.134285, 61.723919],
      [-166.13302, 61.721918],
      [-166.134402, 61.709068],
      [-166.138684, 61.667101],
      [-166.140133, 61.639562],
      [-166.139409, 61.632315],
      [-166.132162, 61.63159],
      [-166.053983, 61.638201],
      [-166.031834, 61.641199],
      [-166.015134, 61.645866],
      [-165.967894, 61.654432],
      [-165.903783, 61.663632],
      [-165.82214, 61.67061],
      [-165.809933, 61.673029],
      [-165.81, 61.68936],
      [-165.856791, 61.690734],
      [-165.934968, 61.706299],
      [-165.993851, 61.723105],
      [-166.006693, 61.729879],
      [-166.092081, 61.800733],
      [-166.094045, 61.805296],
      [-166.094312, 61.813859],
      [-166.085334, 61.816498],
      [-165.955265, 61.832408],
      [-165.870982, 61.826013],
      [-165.758413, 61.825444],
      [-165.74709, 61.82772],
      [-165.736904, 61.832901],
      [-165.736429, 61.839188],
      [-165.730439, 61.842075],
      [-165.696038, 61.847055],
      [-165.640216, 61.848041],
      [-165.608427, 61.855892],
      [-165.600043, 61.859663],
      [-165.612337, 61.871907],
      [-165.667939, 61.900275],
      [-165.703482, 61.921572],
      [-165.725818, 61.947184],
      [-165.741481, 61.971392],
      [-165.756806, 62.006337],
      [-165.756386, 62.014032],
      [-165.748641, 62.047145],
      [-165.743522, 62.06228],
      [-165.734117, 62.076873],
      [-165.706155, 62.108365],
      [-165.672037, 62.13989],
      [-165.620746, 62.172616],
      [-165.500322, 62.255451],
      [-165.373713, 62.338196],
      [-165.337722, 62.359031],
      [-165.311967, 62.378812],
      [-165.294962, 62.403353],
      [-165.26927, 62.427352],
      [-165.199804, 62.469637],
      [-165.096155, 62.522452],
      [-165.046045, 62.54042],
      [-164.868059, 62.571142],
      [-164.770232, 62.592082],
      [-164.777244, 62.609083],
      [-164.796056, 62.611486],
      [-164.842846, 62.604504],
      [-164.89374, 62.599671],
      [-164.914064, 62.60253],
      [-164.928813, 62.608992],
      [-164.935992, 62.613456],
      [-164.940464, 62.618431],
      [-164.942068, 62.624956],
      [-164.932145, 62.651071],
      [-164.91291, 62.657496],
      [-164.865896, 62.645817],
      [-164.857109, 62.635513],
      [-164.837337, 62.631446],
      [-164.81711, 62.636697],
      [-164.857182, 62.76883],
      [-164.86364, 62.77262],
      [-164.870348, 62.774135],
      [-164.8773, 62.78432],
      [-164.877773, 62.797774],
      [-164.87564, 62.806254],
      [-164.850838, 62.83951],
      [-164.836318, 62.852168],
      [-164.795229, 62.858486],
      [-164.768253, 62.871331],
      [-164.751982, 62.893169],
      [-164.742134, 62.920144],
      [-164.745514, 62.944865],
      [-164.765769, 62.954907],
      [-164.766117, 62.958228],
      [-164.716841, 63.006264],
      [-164.685213, 63.022191],
      [-164.583735, 63.058457],
      [-164.580201, 63.070127],
      [-164.611616, 63.077673],
      [-164.641186, 63.07268],
      [-164.643672, 63.074975],
      [-164.644886, 63.079268],
      [-164.640324, 63.091257],
      [-164.633943, 63.09782],
      [-164.493118, 63.17767],
      [-164.423449, 63.211977],
      [-164.363592, 63.22628],
      [-164.209475, 63.251472],
      [-164.140096, 63.259336],
      [-164.066991, 63.262276],
      [-164.036565, 63.261204],
      [-163.970266, 63.248291],
      [-163.909405, 63.232514],
      [-163.885059, 63.222308],
      [-163.788882, 63.217482],
      [-163.755283, 63.217461],
      [-163.73265, 63.213257],
      [-163.725805, 63.21062],
      [-163.724072, 63.206592],
      [-163.70398, 63.188107],
      [-163.650294, 63.157564],
      [-163.616272, 63.141213],
      [-163.590122, 63.146091],
      [-163.529938, 63.1354],
      [-163.520806, 63.12328],
      [-163.507217, 63.113685],
      [-163.474794, 63.099053],
      [-163.433968, 63.089296],
      [-163.417683, 63.083874],
      [-163.364979, 63.055805],
      [-163.316203, 63.037763],
      [-163.130853, 63.049387],
      [-163.053996, 63.058334],
      [-163.0405, 63.062151],
      [-162.998302, 63.089286],
      [-162.919727, 63.120153],
      [-162.901643, 63.125597],
      [-162.844559, 63.154191],
      [-162.83785, 63.159224],
      [-162.834926, 63.164621],
      [-162.840187, 63.187579],
      [-162.839167, 63.193004],
      [-162.834354, 63.198076],
      [-162.821122, 63.205596],
      [-162.769536, 63.217069],
      [-162.758741, 63.217187],
      [-162.747621, 63.213572],
      [-162.72408, 63.214615],
      [-162.688083, 63.220608],
      [-162.662614, 63.229906],
      [-162.587754, 63.275727],
      [-162.37771, 63.272891],
      [-162.374087, 63.186423],
      [-162.184665, 63.186448],
      [-162.177514, 63.096467],
      [-161.990032, 63.096024],
      [-161.990906, 63.012675],
      [-160.851144, 63.012689],
      [-160.941899, 62.998883],
      [-160.942287, 62.898827],
      [-160.993241, 62.897962],
      [-161.000397, 62.551764],
      [-161.04528, 62.550449],
      [-161.047821, 62.206673],
      [-160.910169, 62.204383],
      [-160.913973, 61.949378],
      [-160.534142, 61.947257]]]},
   'id': '02270'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02275',
    'STATE': '02',
    'COUNTY': '275',
    'NAME': 'Wrangell',
    'LSAD': 'Cty&Bor',
    'CENSUSAREA': 2541.483},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-132.199549, 55.638593],
       [-132.215409, 55.68227],
       [-132.224167, 55.701766],
       [-132.237532, 55.711347],
       [-132.260119, 55.732293],
       [-132.283594, 55.761774],
       [-132.280431, 55.765599],
       [-132.265071, 55.762174],
       [-132.251732, 55.756247],
       [-132.229647, 55.740488],
       [-132.206951, 55.736987],
       [-132.190479, 55.742501],
       [-132.185478, 55.753161],
       [-132.184982, 55.778776],
       [-132.187494, 55.785595],
       [-132.183163, 55.80083],
       [-132.130413, 55.811419],
       [-132.113361, 55.812718],
       [-132.08605, 55.832436],
       [-132.067412, 55.875078],
       [-132.041795, 55.958795],
       [-132.07034, 56.046733],
       [-132.038364, 56.091297],
       [-132.033368, 56.095572],
       [-132.011297, 56.077359],
       [-131.970294, 56.114042],
       [-131.935728, 56.177207],
       [-131.943402, 56.192557],
       [-131.958838, 56.194762],
       [-131.993894, 56.193351],
       [-132.01813, 56.183155],
       [-132.034849, 56.133432],
       [-132.060993, 56.129355],
       [-132.10402, 56.108109],
       [-132.176955, 56.055706],
       [-132.129697, 55.957855],
       [-132.135474, 55.941626],
       [-132.159064, 55.92256],
       [-132.170198, 55.919231],
       [-132.191893, 55.921717],
       [-132.224241, 55.930421],
       [-132.279962, 55.924839],
       [-132.320487, 55.887648],
       [-132.319799, 55.874347],
       [-132.309306, 55.865059],
       [-132.309949, 55.862301],
       [-132.323242, 55.851878],
       [-132.372298, 55.850359],
       [-132.376518, 55.853377],
       [-132.397304, 55.878867],
       [-132.398349, 55.884052],
       [-132.39708, 55.905546],
       [-132.401192, 55.950467],
       [-132.446166, 56.018666],
       [-132.492795, 56.066436],
       [-132.522076, 56.077035],
       [-132.573677, 56.0707],
       [-132.621793, 56.05614],
       [-132.621492, 56.049174],
       [-132.629155, 56.037425],
       [-132.640079, 56.033194],
       [-132.68462, 56.082323],
       [-132.708697, 56.112124],
       [-132.723396, 56.145814],
       [-132.718342, 56.217704],
       [-132.689888, 56.238744],
       [-132.672471, 56.239439],
       [-132.664212, 56.236332],
       [-132.64425, 56.232807],
       [-132.615797, 56.234172],
       [-132.601495, 56.240065],
       [-132.58207, 56.278816],
       [-132.582033, 56.285456],
       [-132.575023, 56.296468],
       [-132.543076, 56.332276],
       [-132.52936, 56.338555],
       [-132.441839, 56.353983],
       [-132.431631, 56.352163],
       [-132.422041, 56.349341],
       [-132.403678, 56.334811],
       [-132.381766, 56.310756],
       [-132.380574, 56.307785],
       [-132.382793, 56.299203],
       [-132.363966, 56.287126],
       [-132.35871, 56.2908],
       [-132.349149, 56.304456],
       [-132.340678, 56.341754],
       [-132.361132, 56.380627],
       [-132.394268, 56.485579],
       [-132.38938, 56.491367],
       [-132.382379, 56.491972],
       [-132.362556, 56.487904],
       [-132.253393, 56.449539],
       [-132.245479, 56.441215],
       [-132.233927, 56.416736],
       [-132.242, 56.41366],
       [-132.238473, 56.398706],
       [-132.223136, 56.384017],
       [-132.204367, 56.372086],
       [-132.199269, 56.371054],
       [-132.181158, 56.387128],
       [-132.17935, 56.390823],
       [-132.181647, 56.399336],
       [-132.208568, 56.457125],
       [-132.239043, 56.476671],
       [-132.259611, 56.48763],
       [-132.279753, 56.485881],
       [-132.290475, 56.487017],
       [-132.357564, 56.529008],
       [-132.361293, 56.534232],
       [-132.367088, 56.574578],
       [-132.363836, 56.588613],
       [-132.35841, 56.595266],
       [-132.319303, 56.607116],
       [-132.297288, 56.629819],
       [-132.284216, 56.636699],
       [-132.280089, 56.651834],
       [-132.281464, 56.665593],
       [-132.298664, 56.677977],
       [-132.313799, 56.676601],
       [-132.324807, 56.673849],
       [-132.348886, 56.664217],
       [-132.371589, 56.672473],
       [-132.389476, 56.672473],
       [-132.403923, 56.669721],
       [-132.452081, 56.672473],
       [-132.467904, 56.680729],
       [-132.528446, 56.702056],
       [-132.522398, 56.716256],
       [-132.322505, 56.738582],
       [-132.234041, 56.881504],
       [-132.080112, 56.924153],
       [-132.005107, 56.84292],
       [-131.936582, 56.817425],
       [-131.8865, 56.776083],
       [-131.818813, 56.664694],
       [-131.736007, 56.61317],
       [-131.581221, 56.613275],
       [-131.428413, 56.537135],
       [-131.167925, 56.448361],
       [-131.087433, 56.40742],
       [-131.09623, 56.335166],
       [-130.998654, 56.274041],
       [-131.106699, 56.195124],
       [-131.238566, 56.170968],
       [-131.253358, 56.20685],
       [-131.437095, 56.140004],
       [-131.369226, 56.06991],
       [-131.371853, 56.013252],
       [-131.498849, 56.019097],
       [-131.653403, 56.103851],
       [-131.692693, 56.050604],
       [-131.829608, 56.056307],
       [-131.904613, 55.972972],
       [-131.871938, 55.948883],
       [-132.011037, 55.854788],
       [-131.935635, 55.798431],
       [-131.962744, 55.700757],
       [-132.058825, 55.71093],
       [-132.091178, 55.660703],
       [-132.199549, 55.638593]]],
     [[[-132.977163, 56.439673],
       [-132.957364, 56.448963],
       [-132.927663, 56.456859],
       [-132.896342, 56.457978],
       [-132.871919, 56.457038],
       [-132.843184, 56.444827],
       [-132.819256, 56.439511],
       [-132.808145, 56.440801],
       [-132.791872, 56.449169],
       [-132.782864, 56.45153],
       [-132.734466, 56.458515],
       [-132.716056, 56.454861],
       [-132.668127, 56.440279],
       [-132.634335, 56.422174],
       [-132.628592, 56.416284],
       [-132.620608, 56.3912],
       [-132.65238, 56.375879],
       [-132.662178, 56.369134],
       [-132.679401, 56.354299],
       [-132.684112, 56.345671],
       [-132.676553, 56.333105],
       [-132.662478, 56.320451],
       [-132.655467, 56.303756],
       [-132.655513, 56.295575],
       [-132.662081, 56.274795],
       [-132.721254, 56.258464],
       [-132.776045, 56.254585],
       [-132.843716, 56.238933],
       [-132.877582, 56.240322],
       [-133.010587, 56.309492],
       [-133.045383, 56.320783],
       [-133.067556, 56.333573],
       [-133.070863, 56.354194],
       [-133.069441, 56.356426],
       [-133.060361, 56.358378],
       [-133.045714, 56.371451],
       [-133.006575, 56.415881],
       [-133.006314, 56.417778],
       [-133.010871, 56.421404],
       [-133.010817, 56.424264],
       [-133.002357, 56.430655],
       [-132.977163, 56.439673]]]]},
   'id': '02275'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02282',
    'STATE': '02',
    'COUNTY': '282',
    'NAME': 'Yakutat',
    'LSAD': 'Cty&Bor',
    'CENSUSAREA': 7649.457},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-137.525295, 58.906872],
      [-137.944259, 58.802349],
      [-137.944957, 58.804652],
      [-137.939353, 58.813721],
      [-137.931565, 58.819787],
      [-137.927624, 58.827187],
      [-137.924608, 58.843928],
      [-137.932593, 58.868494],
      [-137.951995, 58.886029],
      [-137.985198, 58.909525],
      [-138.066332, 58.957126],
      [-138.136246, 58.989026],
      [-138.131, 59.002613],
      [-138.117551, 59.012494],
      [-138.118853, 59.021307],
      [-138.144594, 59.028072],
      [-138.250531, 59.047031],
      [-138.636702, 59.130585],
      [-138.7059, 59.162549],
      [-138.763467, 59.19132],
      [-138.847498, 59.224835],
      [-138.919749, 59.248531],
      [-139.044593, 59.280341],
      [-139.271031, 59.337421],
      [-139.343049, 59.356608],
      [-139.420168, 59.37976],
      [-139.541156, 59.423071],
      [-139.595186, 59.445413],
      [-139.746478, 59.503415],
      [-139.855565, 59.53666],
      [-139.862547, 59.544258],
      [-139.861306, 59.546678],
      [-139.847236, 59.557304],
      [-139.837817, 59.561984],
      [-139.807161, 59.554333],
      [-139.785068, 59.564043],
      [-139.768672, 59.59761],
      [-139.737189, 59.632629],
      [-139.732271, 59.63686],
      [-139.718958, 59.641156],
      [-139.70809, 59.642657],
      [-139.667235, 59.638803],
      [-139.655218, 59.633497],
      [-139.656432, 59.62121],
      [-139.671436, 59.615682],
      [-139.67631, 59.611249],
      [-139.672408, 59.602894],
      [-139.654579, 59.598015],
      [-139.623125, 59.595909],
      [-139.614513, 59.597135],
      [-139.587135, 59.605959],
      [-139.581447, 59.609171],
      [-139.582528, 59.613542],
      [-139.589369, 59.618674],
      [-139.593488, 59.624317],
      [-139.585789, 59.642765],
      [-139.51818, 59.687814],
      [-139.524011, 59.71251],
      [-139.552648, 59.706835],
      [-139.579024, 59.712198],
      [-139.587176, 59.71565],
      [-139.59336, 59.721503],
      [-139.591988, 59.725026],
      [-139.581578, 59.735063],
      [-139.576389, 59.738179],
      [-139.559376, 59.742699],
      [-139.54611, 59.752667],
      [-139.562049, 59.774887],
      [-139.57741, 59.789332],
      [-139.59043, 59.810232],
      [-139.617214, 59.863576],
      [-139.624665, 59.884388],
      [-139.621313, 59.906725],
      [-139.616912, 59.911999],
      [-139.610762, 59.913759],
      [-139.597232, 59.913652],
      [-139.577232, 59.918265],
      [-139.535902, 59.935248],
      [-139.527455, 59.940047],
      [-139.488702, 59.995034],
      [-139.486032, 60.012407],
      [-139.505389, 60.039428],
      [-139.555157, 60.039243],
      [-139.576819, 60.015425],
      [-139.601852, 59.959866],
      [-139.60579, 59.9556],
      [-139.657451, 59.944727],
      [-139.682456, 59.943984],
      [-139.693423, 59.94073],
      [-139.705328, 59.934826],
      [-139.769537, 59.878108],
      [-139.768612, 59.85116],
      [-139.775517, 59.84521],
      [-139.801197, 59.832586],
      [-139.811185, 59.829332],
      [-139.909851, 59.80607],
      [-140.102591, 59.75491],
      [-140.14109, 59.747979],
      [-140.164657, 59.741878],
      [-140.178132, 59.735628],
      [-140.18861, 59.725248],
      [-140.210907, 59.715535],
      [-140.256351, 59.703052],
      [-140.272266, 59.700609],
      [-140.285557, 59.698717],
      [-140.3144, 59.698302],
      [-140.385022, 59.69948],
      [-140.601672, 59.712953],
      [-140.636639, 59.711409],
      [-140.72198, 59.718563],
      [-140.883583, 59.737613],
      [-140.92722, 59.745709],
      [-141.013338, 59.773338],
      [-141.156497, 59.813582],
      [-141.216148, 59.827285],
      [-141.423923, 59.867361],
      [-141.442023, 59.873324],
      [-141.450506, 59.890419],
      [-141.467528, 59.971272],
      [-141.530295, 59.977655],
      [-141.631361, 59.962762],
      [-141.709054, 59.948938],
      [-141.869766, 59.998834],
      [-141.912218, 60.009779],
      [-141.966178, 60.019129],
      [-141.998818, 60.022606],
      [-142.062454, 60.023781],
      [-142.100059, 60.026772],
      [-142.13004, 60.030327],
      [-142.24518, 60.049778],
      [-142.537534, 60.083953],
      [-142.589676, 60.088182],
      [-142.698419, 60.093333],
      [-142.809852, 60.095217],
      [-142.875248, 60.092428],
      [-142.908859, 60.090328],
      [-143.0687, 60.068603],
      [-143.135616, 60.062082],
      [-143.194276, 60.061995],
      [-143.413377, 60.051924],
      [-143.624152, 60.037257],
      [-143.69899, 60.027761],
      [-143.885474, 59.996787],
      [-143.889952, 60.0423],
      [-143.167061, 60.518816],
      [-142.817324, 60.515849],
      [-141.963079, 60.521376],
      [-141.765581, 60.527746],
      [-141.763696, 60.435027],
      [-141.213691, 60.435809],
      [-141.213615, 60.392456],
      [-141.00185, 60.391688],
      [-141.00184, 60.306105],
      [-140.53509, 60.224224],
      [-140.472292, 60.31059],
      [-139.989142, 60.18524],
      [-139.698361, 60.340421],
      [-139.086669, 60.357654],
      [-139.082246, 60.323825],
      [-139.200346, 60.090701],
      [-139.046426, 59.998235],
      [-138.796083, 59.928701],
      [-138.702053, 59.910245],
      [-138.662769, 59.813719],
      [-138.662972, 59.810225],
      [-138.620931, 59.770559],
      [-138.560226, 59.741201],
      [-138.001128, 59.452164],
      [-137.604277, 59.243057],
      [-137.498558, 58.986694],
      [-137.526424, 58.906834],
      [-137.525295, 58.906872]]]},
   'id': '02282'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US02290',
    'STATE': '02',
    'COUNTY': '290',
    'NAME': 'Yukon-Koyukuk',
    'LSAD': 'CA',
    'CENSUSAREA': 145504.789},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-153.001339, 62.72744],
      [-153.001262, 62.295331],
      [-153.067697, 62.295211],
      [-153.070317, 62.208517],
      [-153.39432, 62.209115],
      [-153.395401, 62.124776],
      [-153.740629, 62.121565],
      [-153.735846, 62.02937],
      [-155.107471, 62.029371],
      [-157.073592, 62.029567],
      [-157.074237, 62.129913],
      [-157.51702, 62.123543],
      [-158.532398, 62.118595],
      [-158.531113, 62.031708],
      [-159.26095, 62.032026],
      [-159.265098, 61.945564],
      [-160.534142, 61.947257],
      [-160.913973, 61.949378],
      [-160.910169, 62.204383],
      [-161.047821, 62.206673],
      [-161.04528, 62.550449],
      [-161.000397, 62.551764],
      [-160.993241, 62.897962],
      [-160.942287, 62.898827],
      [-160.941899, 62.998883],
      [-160.851144, 63.012689],
      [-160.847328, 63.269229],
      [-160.671305, 63.27083],
      [-160.692051, 63.536618],
      [-160.494971, 63.537148],
      [-160.493465, 63.613655],
      [-160.097874, 63.614393],
      [-160.103703, 63.702263],
      [-159.929244, 63.703494],
      [-159.930773, 63.793808],
      [-159.699291, 63.792346],
      [-159.731224, 64.052366],
      [-159.956447, 64.051022],
      [-159.978098, 64.748491],
      [-159.773803, 64.750296],
      [-159.777177, 64.923088],
      [-159.576911, 64.923743],
      [-159.578562, 65.262692],
      [-159.384765, 65.261674],
      [-159.386712, 65.52314],
      [-159.593576, 65.522689],
      [-159.595187, 65.95809],
      [-158.966298, 65.957306],
      [-158.965461, 66.123439],
      [-157.894181, 66.125284],
      [-157.892416, 66.476795],
      [-157.051694, 66.47875],
      [-157.05153, 66.302054],
      [-156.626712, 66.304931],
      [-156.624296, 66.478785],
      [-156.196191, 66.479446],
      [-156.197173, 66.394758],
      [-155.981539, 66.39803],
      [-155.981123, 66.310448],
      [-155.56243, 66.309487],
      [-155.554608, 66.481912],
      [-155.513931, 66.569279],
      [-154.865962, 66.567723],
      [-154.862595, 66.71691],
      [-154.202144, 66.716586],
      [-154.201542, 66.804621],
      [-154.141599, 66.804853],
      [-154.14522, 67.161925],
      [-154.302303, 67.160767],
      [-154.306093, 67.251225],
      [-154.748759, 67.254419],
      [-154.747501, 67.51268],
      [-154.688359, 67.512481],
      [-154.686696, 67.602173],
      [-154.911027, 67.601857],
      [-154.904736, 67.688032],
      [-155.132355, 67.686612],
      [-155.129726, 67.77497],
      [-155.352249, 67.775553],
      [-155.306992, 67.864033],
      [-155.29802, 68.001771],
      [-151.606277, 68.006862],
      [-149.620648, 67.99894],
      [-147.389781, 68.001041],
      [-145.994865, 68.001285],
      [-145.998216, 68.489871],
      [-144.297052, 68.507297],
      [-142.360513, 68.489642],
      [-141.002694, 68.498391],
      [-141.002465, 65.840075],
      [-141.002465, 65.839421],
      [-141.093233, 65.827388],
      [-141.336224, 65.711614],
      [-141.387842, 65.614395],
      [-141.78905, 65.501546],
      [-141.855761, 65.445786],
      [-142.12138, 65.47169],
      [-142.307081, 65.440633],
      [-142.487301, 65.371898],
      [-142.629971, 65.385368],
      [-142.726364, 65.307742],
      [-142.7319, 65.233639],
      [-142.847089, 65.145564],
      [-143.081816, 65.120937],
      [-143.364478, 64.996996],
      [-143.525172, 64.96008],
      [-143.503643, 64.858251],
      [-143.433715, 64.821828],
      [-143.647213, 64.669506],
      [-143.751216, 64.647777],
      [-144.061159, 64.683442],
      [-144.120089, 64.798317],
      [-143.992045, 64.977011],
      [-144.105524, 65.015542],
      [-143.884795, 65.090281],
      [-143.977969, 65.119043],
      [-144.24719, 65.118774],
      [-144.445443, 65.062319],
      [-144.891387, 65.137197],
      [-145.209906, 65.072978],
      [-145.41748, 65.084836],
      [-145.646437, 65.033682],
      [-145.749681, 65.098233],
      [-145.615545, 65.14407],
      [-145.873843, 65.214026],
      [-146.078123, 65.245244],
      [-146.13753, 65.309851],
      [-145.994261, 65.406031],
      [-146.119758, 65.405823],
      [-146.192406, 65.454475],
      [-146.490362, 65.386878],
      [-146.568819, 65.344746],
      [-146.919725, 65.27297],
      [-147.017089, 65.290432],
      [-147.334764, 65.273291],
      [-147.550245, 65.211023],
      [-148.663844, 65.211355],
      [-148.642697, 64.865694],
      [-148.65237, 64.591053],
      [-148.441058, 64.577791],
      [-148.380509, 64.520562],
      [-148.242175, 64.483426],
      [-148.229784, 64.436621],
      [-147.995157, 64.341691],
      [-149.120704, 64.343615],
      [-149.119968, 64.358796],
      [-149.667993, 64.357813],
      [-150.749736, 64.365138],
      [-151.136195, 64.133084],
      [-151.301289, 64.009971],
      [-151.525111, 64.032465],
      [-151.579286, 64.08538],
      [-151.790558, 64.08229],
      [-151.825058, 64.005365],
      [-152.047377, 64.000576],
      [-152.055519, 63.823679],
      [-152.233557, 63.823684],
      [-152.241918, 63.656679],
      [-152.85343, 63.65171],
      [-152.812007, 63.351232],
      [-152.434625, 63.305936],
      [-152.434247, 63.169794],
      [-153.001339, 62.72744]]]},
   'id': '02290'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04001',
    'STATE': '04',
    'COUNTY': '001',
    'NAME': 'Apache',
    'LSAD': 'County',
    'CENSUSAREA': 11197.521},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.045973, 36.002338],
      [-109.046011, 35.925896],
      [-109.046054, 35.92586],
      [-109.046055, 35.888721],
      [-109.046024, 35.8798],
      [-109.046295, 35.616517],
      [-109.046296, 35.614251],
      [-109.046509, 35.54644],
      [-109.046481, 35.546326],
      [-109.046082, 35.174665],
      [-109.045851, 34.959718],
      [-109.046156, 34.579291],
      [-109.046182, 34.522553],
      [-109.046182, 34.522393],
      [-109.046627, 33.778233],
      [-109.348062, 33.77752],
      [-109.49544, 33.652697],
      [-109.799782, 33.488314],
      [-109.891759, 33.567829],
      [-109.891766, 33.777777],
      [-109.859274, 33.777683],
      [-109.849387, 34.125945],
      [-109.848246, 34.473435],
      [-109.865231, 34.559689],
      [-109.844624, 34.822562],
      [-109.843764, 35.517875],
      [-109.826936, 35.662484],
      [-110.000674, 35.662657],
      [-110.000673, 35.844269],
      [-109.999188, 36.695911],
      [-110.000677, 36.997968],
      [-109.381226, 36.999148],
      [-109.378039, 36.999135],
      [-109.270097, 36.999266],
      [-109.268213, 36.999242],
      [-109.26339, 36.999263],
      [-109.246917, 36.999346],
      [-109.233848, 36.999266],
      [-109.181196, 36.999271],
      [-109.045223, 36.999084],
      [-109.045244, 36.969489],
      [-109.045272, 36.968871],
      [-109.045407, 36.874998],
      [-109.045433, 36.874589],
      [-109.045973, 36.002338]]]},
   'id': '04001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04003',
    'STATE': '04',
    'COUNTY': '003',
    'NAME': 'Cochise',
    'LSAD': 'County',
    'CENSUSAREA': 6165.69},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.047926, 32.426376],
      [-109.048286, 32.089114],
      [-109.048296, 32.084093],
      [-109.048731, 32.028174],
      [-109.048599, 32.013651],
      [-109.04859, 31.870791],
      [-109.048769, 31.861383],
      [-109.048763, 31.810776],
      [-109.049195, 31.796551],
      [-109.049813, 31.499528],
      [-109.049843, 31.499515],
      [-109.050044, 31.332502],
      [-109.426931, 31.334033],
      [-110.460172, 31.333051],
      [-110.451736, 31.731267],
      [-110.451503, 32.427354],
      [-109.227815, 32.424475],
      [-109.113987, 32.426177],
      [-109.047926, 32.426376]]]},
   'id': '04003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04005',
    'STATE': '04',
    'COUNTY': '005',
    'NAME': 'Coconino',
    'LSAD': 'County',
    'CENSUSAREA': 18618.885},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-112.538593, 37.000674],
      [-112.534545, 37.000684],
      [-112.368946, 37.001125],
      [-112.35769, 37.001025],
      [-111.412784, 37.001478],
      [-111.405869, 37.001481],
      [-111.405517, 37.001497],
      [-111.189888, 37.000959],
      [-110.75069, 37.003197],
      [-110.750698, 36.409949],
      [-110.750692, 35.814879],
      [-110.750693, 35.500008],
      [-110.750678, 34.263314],
      [-110.788078, 34.30906],
      [-110.848059, 34.267205],
      [-111.096661, 34.396431],
      [-111.147094, 34.375185],
      [-111.250878, 34.453301],
      [-111.397229, 34.426062],
      [-111.427266, 34.386149],
      [-111.423066, 34.437225],
      [-111.550328, 34.419057],
      [-111.472046, 34.462265],
      [-111.502415, 34.498057],
      [-111.555124, 34.472196],
      [-111.552106, 34.80252],
      [-111.77791, 34.803318],
      [-111.777815, 34.981315],
      [-111.809215, 34.976215],
      [-112.334536, 34.973024],
      [-112.335716, 35.148279],
      [-112.4423, 35.149408],
      [-112.440751, 35.260468],
      [-112.4727, 35.238312],
      [-112.577399, 35.243394],
      [-112.694846, 35.311586],
      [-112.754838, 35.306301],
      [-112.95341, 35.35611],
      [-112.975855, 35.392904],
      [-113.148055, 35.478595],
      [-113.174458, 35.506445],
      [-113.301303, 35.531118],
      [-113.320367, 35.53057],
      [-113.329569, 35.528108],
      [-113.334161, 35.528037],
      [-113.333922, 35.800736],
      [-113.310523, 35.86435],
      [-113.317122, 35.961385],
      [-113.354176, 36.040368],
      [-113.319971, 36.096769],
      [-113.231146, 36.089524],
      [-113.19923, 36.151389],
      [-113.13708, 36.166424],
      [-113.009038, 36.23904],
      [-112.792436, 36.285036],
      [-112.723991, 36.345992],
      [-112.681571, 36.341662],
      [-112.629727, 36.392322],
      [-112.645121, 36.457311],
      [-112.621855, 36.485017],
      [-112.660326, 36.539631],
      [-112.538593, 37.000674]]]},
   'id': '04005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04007',
    'STATE': '04',
    'COUNTY': '007',
    'NAME': 'Gila',
    'LSAD': 'County',
    'CENSUSAREA': 4757.933},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.039905, 33.466104],
      [-111.153354, 33.677606],
      [-111.222055, 33.602446],
      [-111.26283, 33.623157],
      [-111.389444, 33.776663],
      [-111.372317, 33.823924],
      [-111.450904, 33.919877],
      [-111.433271, 33.983321],
      [-111.494778, 33.999817],
      [-111.477853, 34.151108],
      [-111.720728, 34.161704],
      [-111.659514, 34.386424],
      [-111.555124, 34.472196],
      [-111.502415, 34.498057],
      [-111.472046, 34.462265],
      [-111.550328, 34.419057],
      [-111.423066, 34.437225],
      [-111.427266, 34.386149],
      [-111.397229, 34.426062],
      [-111.250878, 34.453301],
      [-111.147094, 34.375185],
      [-111.096661, 34.396431],
      [-110.848059, 34.267205],
      [-110.788078, 34.30906],
      [-110.750678, 34.263314],
      [-110.750672, 34.000048],
      [-110.00066, 34.000046],
      [-110.000649, 33.57693],
      [-110.000646, 33.465916],
      [-110.340949, 33.427066],
      [-110.441544, 33.38167],
      [-110.457194, 33.295268],
      [-110.401536, 33.196612],
      [-110.449021, 33.194526],
      [-110.525952, 33.159198],
      [-110.678006, 33.111182],
      [-110.780811, 32.983722],
      [-110.946684, 33.250053],
      [-110.974706, 33.342095],
      [-111.039905, 33.466104]]]},
   'id': '04007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04009',
    'STATE': '04',
    'COUNTY': '009',
    'NAME': 'Graham',
    'LSAD': 'County',
    'CENSUSAREA': 4622.597},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-110.449021, 33.194526],
      [-110.401536, 33.196612],
      [-110.457194, 33.295268],
      [-110.441544, 33.38167],
      [-110.340949, 33.427066],
      [-110.000646, 33.465916],
      [-110.000649, 33.57693],
      [-109.891759, 33.567829],
      [-109.799782, 33.488314],
      [-109.49544, 33.652697],
      [-109.49574, 33.078409],
      [-109.213829, 32.680661],
      [-109.22607, 32.529096],
      [-109.113987, 32.426177],
      [-109.227815, 32.424475],
      [-110.451503, 32.427354],
      [-110.451228, 32.504408],
      [-110.451221, 32.513807],
      [-110.449164, 32.513792],
      [-110.449021, 33.194526]]]},
   'id': '04009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04011',
    'STATE': '04',
    'COUNTY': '011',
    'NAME': 'Greenlee',
    'LSAD': 'County',
    'CENSUSAREA': 1843.126},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.047117, 32.777569],
      [-109.047638, 32.693439],
      [-109.047645, 32.689988],
      [-109.047653, 32.686327],
      [-109.047653, 32.681379],
      [-109.047926, 32.426376],
      [-109.113987, 32.426177],
      [-109.22607, 32.529096],
      [-109.213829, 32.680661],
      [-109.49574, 33.078409],
      [-109.49544, 33.652697],
      [-109.348062, 33.77752],
      [-109.046627, 33.778233],
      [-109.04687, 33.372654],
      [-109.047045, 33.36928],
      [-109.046909, 33.36557],
      [-109.046827, 33.365272],
      [-109.047237, 33.208965],
      [-109.047116, 33.137995],
      [-109.047117, 33.137559],
      [-109.047013, 33.092917],
      [-109.046905, 33.091931],
      [-109.047453, 33.069427],
      [-109.04748, 33.06842],
      [-109.047117, 32.77757],
      [-109.047117, 32.777569]]]},
   'id': '04011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04012',
    'STATE': '04',
    'COUNTY': '012',
    'NAME': 'La Paz',
    'LSAD': 'County',
    'CENSUSAREA': 4499.629},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.627125, 33.433554],
      [-114.622918, 33.456561],
      [-114.594534, 33.495059],
      [-114.558898, 33.531819],
      [-114.535664, 33.568788],
      [-114.535965, 33.569154],
      [-114.5403, 33.580615],
      [-114.540617, 33.591412],
      [-114.530348, 33.679245],
      [-114.523959, 33.685879],
      [-114.519113, 33.688473],
      [-114.496489, 33.696901],
      [-114.494197, 33.707922],
      [-114.50434, 33.756381],
      [-114.523365, 33.80612],
      [-114.525539, 33.838614],
      [-114.518434, 33.917518],
      [-114.499883, 33.961789],
      [-114.46361, 33.993431],
      [-114.438266, 34.022609],
      [-114.434949, 34.037784],
      [-114.435429, 34.079727],
      [-114.43338, 34.088413],
      [-114.420499, 34.103466],
      [-114.411681, 34.110031],
      [-114.401352, 34.111652],
      [-114.390565, 34.110084],
      [-114.366521, 34.118575],
      [-114.321618, 34.138093],
      [-114.312592, 34.144453],
      [-114.244191, 34.179625],
      [-114.225861, 34.201774],
      [-114.164476, 34.251667],
      [-114.133264, 34.258462],
      [-114.131489, 34.260387],
      [-114.138282, 34.30323],
      [-114.031132, 34.259819],
      [-113.603079, 34.231049],
      [-113.539524, 34.306377],
      [-113.370507, 34.291968],
      [-113.333508, 34.317877],
      [-113.333316, 34.00103],
      [-113.333753, 33.999227],
      [-113.333823, 33.911661],
      [-113.333313, 33.56571],
      [-113.33392, 33.377425],
      [-113.958046, 33.377578],
      [-113.958042, 33.464655],
      [-114.267815, 33.463574],
      [-114.268748, 33.029815],
      [-114.516912, 33.026871],
      [-114.523578, 33.030961],
      [-114.571653, 33.036624],
      [-114.578287, 33.035375],
      [-114.584765, 33.028231],
      [-114.589778, 33.026228],
      [-114.606282, 33.025703],
      [-114.62387, 33.02872],
      [-114.675104, 33.047532],
      [-114.707819, 33.091102],
      [-114.706175, 33.105335],
      [-114.696829, 33.131209],
      [-114.687074, 33.142196],
      [-114.679359, 33.159519],
      [-114.67536, 33.185489],
      [-114.672088, 33.258499],
      [-114.700103, 33.341045],
      [-114.721233, 33.396912],
      [-114.665278, 33.415358],
      [-114.627125, 33.433554]]]},
   'id': '04012'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04013',
    'STATE': '04',
    'COUNTY': '013',
    'NAME': 'Maricopa',
    'LSAD': 'County',
    'CENSUSAREA': 9200.143},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.580626, 33.465902],
      [-111.583047, 33.20545],
      [-111.686035, 33.204637],
      [-111.893085, 33.204811],
      [-112.083488, 33.20456],
      [-112.191784, 33.265039],
      [-112.203288, 33.310533],
      [-112.203719, 32.50676],
      [-113.333897, 32.504938],
      [-113.333212, 33.22721],
      [-113.33392, 33.377425],
      [-113.333313, 33.56571],
      [-113.333823, 33.911661],
      [-113.333753, 33.999227],
      [-112.743951, 33.999898],
      [-112.341876, 33.898958],
      [-112.27604, 33.882312],
      [-112.264425, 33.899094],
      [-112.26047, 33.903592],
      [-112.256668, 33.905526],
      [-112.164758, 34.04817],
      [-111.861997, 34.015108],
      [-111.72531, 33.999849],
      [-111.494778, 33.999817],
      [-111.433271, 33.983321],
      [-111.450904, 33.919877],
      [-111.372317, 33.823924],
      [-111.389444, 33.776663],
      [-111.26283, 33.623157],
      [-111.222055, 33.602446],
      [-111.153354, 33.677606],
      [-111.039905, 33.466104],
      [-111.250681, 33.464902],
      [-111.26976, 33.465538],
      [-111.580626, 33.465902]]]},
   'id': '04013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04015',
    'STATE': '04',
    'COUNTY': '015',
    'NAME': 'Mohave',
    'LSAD': 'County',
    'CENSUSAREA': 13311.084},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.0506, 37.000396],
      [-113.965907, 37.000025],
      [-113.965907, 36.999976],
      [-112.966471, 37.000219],
      [-112.899366, 37.000319],
      [-112.609787, 37.000753],
      [-112.558974, 37.000692],
      [-112.545094, 37.000734],
      [-112.540368, 37.000669],
      [-112.538593, 37.000674],
      [-112.660326, 36.539631],
      [-112.621855, 36.485017],
      [-112.645121, 36.457311],
      [-112.629727, 36.392322],
      [-112.681571, 36.341662],
      [-112.723991, 36.345992],
      [-112.792436, 36.285036],
      [-113.009038, 36.23904],
      [-113.13708, 36.166424],
      [-113.19923, 36.151389],
      [-113.231146, 36.089524],
      [-113.319971, 36.096769],
      [-113.354176, 36.040368],
      [-113.317122, 35.961385],
      [-113.310523, 35.86435],
      [-113.333922, 35.800736],
      [-113.334161, 35.528037],
      [-113.332713, 35.00011],
      [-113.333508, 34.317877],
      [-113.370507, 34.291968],
      [-113.539524, 34.306377],
      [-113.603079, 34.231049],
      [-114.031132, 34.259819],
      [-114.138282, 34.30323],
      [-114.176909, 34.349306],
      [-114.199482, 34.361373],
      [-114.264317, 34.401329],
      [-114.339627, 34.451435],
      [-114.452547, 34.653494],
      [-114.465607, 34.69226],
      [-114.552682, 34.766871],
      [-114.633051, 34.869971],
      [-114.635176, 34.875003],
      [-114.636725, 34.889107],
      [-114.630877, 34.907263],
      [-114.629015, 34.986148],
      [-114.62919, 34.991887],
      [-114.633013, 35.002085],
      [-114.633544, 35.015644],
      [-114.635469, 35.028266],
      [-114.621956, 35.094678],
      [-114.59912, 35.12105],
      [-114.5843, 35.124999],
      [-114.578524, 35.12875],
      [-114.572747, 35.138725],
      [-114.569569, 35.163053],
      [-114.569238, 35.18348],
      [-114.595931, 35.325234],
      [-114.604314, 35.353584],
      [-114.627137, 35.409504],
      [-114.652005, 35.429165],
      [-114.662125, 35.444241],
      [-114.677643, 35.489742],
      [-114.676733, 35.499063],
      [-114.674981, 35.510564],
      [-114.671147, 35.520641],
      [-114.653806, 35.59949],
      [-114.653406, 35.610789],
      [-114.657506, 35.618289],
      [-114.676707, 35.640989],
      [-114.689407, 35.651412],
      [-114.700308, 35.700387],
      [-114.70771, 35.811885],
      [-114.705611, 35.848884],
      [-114.704211, 35.851984],
      [-114.70613, 35.878712],
      [-114.731296, 35.945157],
      [-114.743576, 35.983721],
      [-114.755618, 36.087166],
      [-114.744857, 36.098693],
      [-114.736165, 36.104367],
      [-114.631716, 36.142306],
      [-114.572031, 36.15161],
      [-114.513256, 36.151217],
      [-114.381446, 36.141665],
      [-114.365835, 36.133722],
      [-114.328777, 36.105501],
      [-114.310857, 36.083787],
      [-114.307235, 36.076544],
      [-114.303614, 36.066456],
      [-114.292663, 36.051118],
      [-114.263146, 36.025937],
      [-114.252651, 36.020193],
      [-114.238799, 36.014561],
      [-114.233289, 36.014289],
      [-114.21369, 36.015613],
      [-114.15413, 36.023862],
      [-114.148774, 36.02731],
      [-114.138202, 36.041284],
      [-114.125796, 36.077531],
      [-114.120193, 36.102228],
      [-114.063021, 36.186942],
      [-114.060302, 36.189363],
      [-114.046838, 36.194069],
      [-114.047106, 36.250591],
      [-114.048515, 36.289598],
      [-114.046403, 36.371873],
      [-114.046488, 36.473449],
      [-114.050562, 36.656259],
      [-114.050578, 36.800173],
      [-114.050583, 36.843141],
      [-114.0506, 37.000396]]]},
   'id': '04015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04017',
    'STATE': '04',
    'COUNTY': '017',
    'NAME': 'Navajo',
    'LSAD': 'County',
    'CENSUSAREA': 9950.422},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-110.000674, 35.662657],
      [-109.826936, 35.662484],
      [-109.843764, 35.517875],
      [-109.844624, 34.822562],
      [-109.865231, 34.559689],
      [-109.848246, 34.473435],
      [-109.849387, 34.125945],
      [-109.859274, 33.777683],
      [-109.891766, 33.777777],
      [-109.891759, 33.567829],
      [-110.000649, 33.57693],
      [-110.00066, 34.000046],
      [-110.750672, 34.000048],
      [-110.750678, 34.263314],
      [-110.750693, 35.500008],
      [-110.750692, 35.814879],
      [-110.750698, 36.409949],
      [-110.75069, 37.003197],
      [-110.495259, 37.003875],
      [-110.33105, 36.998216],
      [-110.000677, 36.997968],
      [-109.999188, 36.695911],
      [-110.000673, 35.844269],
      [-110.000674, 35.662657]]]},
   'id': '04017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04019',
    'STATE': '04',
    'COUNTY': '019',
    'NAME': 'Pima',
    'LSAD': 'County',
    'CENSUSAREA': 9187.036},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.792534, 32.506779],
      [-111.27061, 32.501366],
      [-110.925567, 32.511391],
      [-110.844943, 32.511211],
      [-110.844923, 32.513767],
      [-110.785444, 32.513539],
      [-110.451221, 32.513807],
      [-110.451228, 32.504408],
      [-110.451503, 32.427354],
      [-110.451736, 31.731267],
      [-111.158299, 31.726007],
      [-111.164183, 31.725983],
      [-111.163995, 31.618687],
      [-111.163725, 31.521826],
      [-111.366613, 31.521291],
      [-111.366635, 31.42588],
      [-111.57953, 31.494095],
      [-112.246102, 31.704195],
      [-112.867074, 31.895488],
      [-113.125961, 31.97278],
      [-113.333794, 32.038521],
      [-113.333897, 32.504938],
      [-112.203719, 32.50676],
      [-111.792534, 32.506779]]]},
   'id': '04019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04021',
    'STATE': '04',
    'COUNTY': '021',
    'NAME': 'Pinal',
    'LSAD': 'County',
    'CENSUSAREA': 5365.612},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.27061, 32.501366],
      [-111.792534, 32.506779],
      [-112.203719, 32.50676],
      [-112.203288, 33.310533],
      [-112.191784, 33.265039],
      [-112.083488, 33.20456],
      [-111.893085, 33.204811],
      [-111.686035, 33.204637],
      [-111.583047, 33.20545],
      [-111.580626, 33.465902],
      [-111.26976, 33.465538],
      [-111.250681, 33.464902],
      [-111.039905, 33.466104],
      [-110.974706, 33.342095],
      [-110.946684, 33.250053],
      [-110.780811, 32.983722],
      [-110.678006, 33.111182],
      [-110.525952, 33.159198],
      [-110.449021, 33.194526],
      [-110.449164, 32.513792],
      [-110.451221, 32.513807],
      [-110.785444, 32.513539],
      [-110.844923, 32.513767],
      [-110.844943, 32.511211],
      [-110.925567, 32.511391],
      [-111.27061, 32.501366]]]},
   'id': '04021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04023',
    'STATE': '04',
    'COUNTY': '023',
    'NAME': 'Santa Cruz',
    'LSAD': 'County',
    'CENSUSAREA': 1236.916},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.163995, 31.618687],
      [-111.164183, 31.725983],
      [-111.158299, 31.726007],
      [-110.451736, 31.731267],
      [-110.460172, 31.333051],
      [-110.760997, 31.332765],
      [-110.976828, 31.33256],
      [-111.098097, 31.339836],
      [-111.366635, 31.42588],
      [-111.366613, 31.521291],
      [-111.163725, 31.521826],
      [-111.163995, 31.618687]]]},
   'id': '04023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04025',
    'STATE': '04',
    'COUNTY': '025',
    'NAME': 'Yavapai',
    'LSAD': 'County',
    'CENSUSAREA': 8123.499},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.861997, 34.015108],
      [-112.164758, 34.04817],
      [-112.256668, 33.905526],
      [-112.26047, 33.903592],
      [-112.264425, 33.899094],
      [-112.27604, 33.882312],
      [-112.341876, 33.898958],
      [-112.743951, 33.999898],
      [-113.333753, 33.999227],
      [-113.333316, 34.00103],
      [-113.333508, 34.317877],
      [-113.332713, 35.00011],
      [-113.334161, 35.528037],
      [-113.329569, 35.528108],
      [-113.320367, 35.53057],
      [-113.301303, 35.531118],
      [-113.174458, 35.506445],
      [-113.148055, 35.478595],
      [-112.975855, 35.392904],
      [-112.95341, 35.35611],
      [-112.754838, 35.306301],
      [-112.694846, 35.311586],
      [-112.577399, 35.243394],
      [-112.4727, 35.238312],
      [-112.440751, 35.260468],
      [-112.4423, 35.149408],
      [-112.335716, 35.148279],
      [-112.334536, 34.973024],
      [-111.809215, 34.976215],
      [-111.777815, 34.981315],
      [-111.77791, 34.803318],
      [-111.552106, 34.80252],
      [-111.555124, 34.472196],
      [-111.659514, 34.386424],
      [-111.720728, 34.161704],
      [-111.477853, 34.151108],
      [-111.494778, 33.999817],
      [-111.72531, 33.999849],
      [-111.861997, 34.015108]]]},
   'id': '04025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US04027',
    'STATE': '04',
    'COUNTY': '027',
    'NAME': 'Yuma',
    'LSAD': 'County',
    'CENSUSAREA': 5513.992},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.719633, 32.718763],
      [-114.678632, 32.736614],
      [-114.677091, 32.736218],
      [-114.65884, 32.73383],
      [-114.65826, 32.733799],
      [-114.615585, 32.728446],
      [-114.615733, 32.729427],
      [-114.496827, 32.822119],
      [-114.496284, 32.822326],
      [-114.465715, 32.879191],
      [-114.465715, 32.87942],
      [-114.46289, 32.905797],
      [-114.468605, 32.971649],
      [-114.511343, 33.023455],
      [-114.516912, 33.026871],
      [-114.268748, 33.029815],
      [-114.267815, 33.463574],
      [-113.958042, 33.464655],
      [-113.958046, 33.377578],
      [-113.33392, 33.377425],
      [-113.333212, 33.22721],
      [-113.333897, 32.504938],
      [-113.333794, 32.038521],
      [-113.493196, 32.088943],
      [-114.250775, 32.32391],
      [-114.813613, 32.494277],
      [-114.809393, 32.617119],
      [-114.80739, 32.621332],
      [-114.799302, 32.625115],
      [-114.781872, 32.62505],
      [-114.753111, 32.658304],
      [-114.748, 32.664184],
      [-114.719633, 32.718763]]]},
   'id': '04027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05001',
    'STATE': '05',
    'COUNTY': '001',
    'NAME': 'Arkansas',
    'LSAD': 'County',
    'CENSUSAREA': 988.77},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.056276, 34.336605],
      [-91.060626, 34.216766],
      [-91.117905, 34.119105],
      [-91.194278, 34.070938],
      [-91.132686, 33.955221],
      [-91.347628, 33.954941],
      [-91.421715, 34.014472],
      [-91.431239, 34.020363],
      [-91.437131, 34.034663],
      [-91.434621, 34.052702],
      [-91.435887, 34.06844],
      [-91.445614, 34.080147],
      [-91.540178, 34.224599],
      [-91.711795, 34.233919],
      [-91.705185, 34.48267],
      [-91.678037, 34.48192],
      [-91.59552, 34.48051],
      [-91.594429, 34.56805],
      [-91.37782, 34.56348],
      [-91.209161, 34.483221],
      [-91.107762, 34.353404],
      [-91.056276, 34.336605]]]},
   'id': '05001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05003',
    'STATE': '05',
    'COUNTY': '003',
    'NAME': 'Ashley',
    'LSAD': 'County',
    'CENSUSAREA': 925.349},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.46037, 33.006246],
      [-91.559494, 33.00684],
      [-91.572326, 33.006908],
      [-91.579639, 33.006472],
      [-91.579802, 33.006518],
      [-91.609001, 33.006556],
      [-91.617615, 33.006717],
      [-91.62667, 33.006639],
      [-91.950001, 33.00752],
      [-91.951958, 33.007428],
      [-92.069105, 33.008163],
      [-92.109611, 33.034054],
      [-92.137527, 33.162956],
      [-92.128464, 33.208775],
      [-91.977284, 33.302026],
      [-91.990167, 33.398214],
      [-91.45737, 33.388974],
      [-91.46037, 33.006246]]]},
   'id': '05003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05005',
    'STATE': '05',
    'COUNTY': '005',
    'NAME': 'Baxter',
    'LSAD': 'County',
    'CENSUSAREA': 554.283},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.150295, 36.498634],
      [-92.159215, 36.261311],
      [-92.15699, 36.261248],
      [-92.19543, 36.132798],
      [-92.197649, 36.059287],
      [-92.304951, 36.06108],
      [-92.30722, 35.974022],
      [-92.414324, 35.975865],
      [-92.412542, 36.027228],
      [-92.411502, 36.062756],
      [-92.411852, 36.162123],
      [-92.469262, 36.250904],
      [-92.543034, 36.269342],
      [-92.593128, 36.358337],
      [-92.533175, 36.386563],
      [-92.529145, 36.497739],
      [-92.318415, 36.497711],
      [-92.309424, 36.497894],
      [-92.216412, 36.498417],
      [-92.214143, 36.498372],
      [-92.211449, 36.498395],
      [-92.199396, 36.498351],
      [-92.150295, 36.498634]]]},
   'id': '05005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05007',
    'STATE': '05',
    'COUNTY': '007',
    'NAME': 'Benton',
    'LSAD': 'County',
    'CENSUSAREA': 847.357},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.552184, 36.102235],
      [-94.561165, 36.15211],
      [-94.562803, 36.161749],
      [-94.562828, 36.161895],
      [-94.565655, 36.178439],
      [-94.566588, 36.183774],
      [-94.571253, 36.210901],
      [-94.571806, 36.213748],
      [-94.574395, 36.229996],
      [-94.57488, 36.232741],
      [-94.575071, 36.233682],
      [-94.576003, 36.24007],
      [-94.577899, 36.249548],
      [-94.577883, 36.25008],
      [-94.5862, 36.299969],
      [-94.593397, 36.345742],
      [-94.599723, 36.387587],
      [-94.601984, 36.40212],
      [-94.602623, 36.405283],
      [-94.605408, 36.421949],
      [-94.611609, 36.461528],
      [-94.61383, 36.476248],
      [-94.615311, 36.484992],
      [-94.617919, 36.499414],
      [-94.55929, 36.499496],
      [-94.519478, 36.499214],
      [-94.111473, 36.498597],
      [-94.110673, 36.498587],
      [-94.100252, 36.49867],
      [-94.098588, 36.498676],
      [-94.077089, 36.49873],
      [-93.96392, 36.498717],
      [-93.95919, 36.498717],
      [-93.92184, 36.498718],
      [-93.906128, 36.498718],
      [-93.866758, 36.498789],
      [-93.861698, 36.339266],
      [-93.815605, 36.306563],
      [-93.887775, 36.235046],
      [-93.973298, 36.203852],
      [-94.333565, 36.214727],
      [-94.391125, 36.099396],
      [-94.552184, 36.102235]]]},
   'id': '05007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05009',
    'STATE': '05',
    'COUNTY': '009',
    'NAME': 'Boone',
    'LSAD': 'County',
    'CENSUSAREA': 590.231},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.296117, 36.498389],
      [-93.088988, 36.498184],
      [-93.087635, 36.498239],
      [-93.069512, 36.498242],
      [-93.068455, 36.49825],
      [-93.013742, 36.49813],
      [-92.894336, 36.497867],
      [-92.894001, 36.49785],
      [-92.854049, 36.497983],
      [-92.884954, 36.490891],
      [-92.890695, 36.114132],
      [-92.944666, 36.115123],
      [-92.948256, 36.115526],
      [-93.300072, 36.121264],
      [-93.300828, 36.125038],
      [-93.296117, 36.498389]]]},
   'id': '05009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05011',
    'STATE': '05',
    'COUNTY': '011',
    'NAME': 'Bradley',
    'LSAD': 'County',
    'CENSUSAREA': 649.231},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.975844, 33.704414],
      [-91.97608, 33.529687],
      [-92.00785, 33.529396],
      [-91.990167, 33.398214],
      [-91.977284, 33.302026],
      [-92.128464, 33.208775],
      [-92.137527, 33.162956],
      [-92.22406, 33.251782],
      [-92.350432, 33.298941],
      [-92.374467, 33.37865],
      [-92.311079, 33.499782],
      [-92.330839, 33.707806],
      [-91.975844, 33.704414]]]},
   'id': '05011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05013',
    'STATE': '05',
    'COUNTY': '013',
    'NAME': 'Calhoun',
    'LSAD': 'County',
    'CENSUSAREA': 628.581},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.350432, 33.298941],
      [-92.445399, 33.274859],
      [-92.567156, 33.3672],
      [-92.653211, 33.433968],
      [-92.705093, 33.431215],
      [-92.776729, 33.537648],
      [-92.717454, 33.552444],
      [-92.735657, 33.624295],
      [-92.647931, 33.663785],
      [-92.58503, 33.736514],
      [-92.583054, 33.802198],
      [-92.334249, 33.795065],
      [-92.330839, 33.707806],
      [-92.311079, 33.499782],
      [-92.374467, 33.37865],
      [-92.350432, 33.298941]]]},
   'id': '05013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05015',
    'STATE': '05',
    'COUNTY': '015',
    'NAME': 'Carroll',
    'LSAD': 'County',
    'CENSUSAREA': 630.087},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.866758, 36.498789],
      [-93.728022, 36.499037],
      [-93.727552, 36.499055],
      [-93.718893, 36.499178],
      [-93.709956, 36.499179],
      [-93.700171, 36.499135],
      [-93.584282, 36.498896],
      [-93.584281, 36.498896],
      [-93.514512, 36.498881],
      [-93.507408, 36.498911],
      [-93.426989, 36.498585],
      [-93.396079, 36.498669],
      [-93.394718, 36.498519],
      [-93.315337, 36.498408],
      [-93.315324, 36.498408],
      [-93.296117, 36.498389],
      [-93.300828, 36.125038],
      [-93.300072, 36.121264],
      [-93.479528, 36.125072],
      [-93.551135, 36.126271],
      [-93.619974, 36.201208],
      [-93.657689, 36.303082],
      [-93.815605, 36.306563],
      [-93.861698, 36.339266],
      [-93.866758, 36.498789]]]},
   'id': '05015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05017',
    'STATE': '05',
    'COUNTY': '017',
    'NAME': 'Chicot',
    'LSAD': 'County',
    'CENSUSAREA': 644.304},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.215671, 33.529423],
      [-91.125109, 33.472842],
      [-91.118495, 33.449116],
      [-91.131885, 33.430063],
      [-91.184427, 33.419576],
      [-91.141216, 33.298397],
      [-91.110561, 33.24593],
      [-91.085984, 33.221644],
      [-91.087589, 33.145177],
      [-91.125656, 33.038276],
      [-91.157662, 33.011217],
      [-91.166073, 33.004106],
      [-91.265018, 33.005084],
      [-91.284398, 33.005007],
      [-91.312016, 33.005262],
      [-91.322506, 33.005341],
      [-91.325037, 33.005364],
      [-91.326396, 33.005376],
      [-91.329767, 33.005421],
      [-91.333011, 33.005529],
      [-91.376016, 33.005794],
      [-91.425466, 33.006016],
      [-91.435782, 33.006099],
      [-91.46037, 33.006246],
      [-91.45737, 33.388974],
      [-91.453438, 33.563703],
      [-91.34954, 33.563646],
      [-91.35081, 33.519476],
      [-91.24576, 33.517148],
      [-91.244582, 33.561425],
      [-91.228287, 33.559937],
      [-91.232295, 33.552788],
      [-91.215671, 33.529423]]]},
   'id': '05017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05019',
    'STATE': '05',
    'COUNTY': '019',
    'NAME': 'Clark',
    'LSAD': 'County',
    'CENSUSAREA': 866.074},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.373406, 33.95707],
      [-93.434165, 34.049739],
      [-93.478646, 34.340851],
      [-93.439996, 34.340048],
      [-93.439461, 34.340212],
      [-93.433178, 34.339866],
      [-93.408124, 34.339527],
      [-93.35684, 34.280306],
      [-93.198278, 34.277337],
      [-93.199428, 34.248057],
      [-93.035039, 34.236664],
      [-93.042025, 34.159852],
      [-92.886285, 34.155877],
      [-92.893116, 33.983284],
      [-92.961185, 33.97482],
      [-92.89314, 33.902751],
      [-92.893534, 33.809943],
      [-93.10429, 33.777011],
      [-93.290571, 33.845133],
      [-93.373406, 33.95707]]]},
   'id': '05019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05021',
    'STATE': '05',
    'COUNTY': '021',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 639.465},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.57618, 36.498446],
      [-90.576112, 36.498446],
      [-90.50016, 36.498399],
      [-90.495027, 36.498371],
      [-90.494575, 36.498368],
      [-90.339892, 36.498213],
      [-90.228943, 36.497771],
      [-90.220732, 36.497858],
      [-90.220702, 36.497858],
      [-90.217323, 36.497797],
      [-90.193943, 36.497823],
      [-90.152481, 36.497952],
      [-90.154409, 36.496832],
      [-90.156369, 36.487748],
      [-90.133993, 36.437906],
      [-90.072897, 36.393007],
      [-90.064514, 36.382085],
      [-90.06398, 36.303038],
      [-90.076301, 36.280708],
      [-90.083731, 36.272332],
      [-90.114922, 36.265595],
      [-90.198735, 36.201382],
      [-90.32096, 36.200575],
      [-90.31982, 36.259144],
      [-90.806615, 36.266865],
      [-90.751803, 36.27996],
      [-90.748637, 36.412764],
      [-90.784398, 36.498524],
      [-90.782454, 36.498523],
      [-90.765672, 36.498494],
      [-90.711226, 36.498318],
      [-90.693005, 36.49851],
      [-90.653246, 36.498488],
      [-90.648494, 36.498447],
      [-90.612554, 36.498559],
      [-90.60545, 36.498459],
      [-90.5943, 36.498459],
      [-90.585342, 36.498497],
      [-90.57618, 36.498446]]]},
   'id': '05021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05023',
    'STATE': '05',
    'COUNTY': '023',
    'NAME': 'Cleburne',
    'LSAD': 'County',
    'CENSUSAREA': 553.692},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.837179, 35.704932],
      [-91.789823, 35.711734],
      [-91.793958, 35.534114],
      [-91.795855, 35.455574],
      [-91.850144, 35.436442],
      [-91.851958, 35.358287],
      [-92.111463, 35.362725],
      [-92.252759, 35.363718],
      [-92.24052, 35.71219],
      [-91.837179, 35.704932]]]},
   'id': '05023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05025',
    'STATE': '05',
    'COUNTY': '025',
    'NAME': 'Cleveland',
    'LSAD': 'County',
    'CENSUSAREA': 597.783},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.953799, 34.064141],
      [-91.976439, 33.977297],
      [-91.975974, 33.791787],
      [-91.975844, 33.704414],
      [-92.330839, 33.707806],
      [-92.334249, 33.795065],
      [-92.400798, 33.91356],
      [-92.475602, 33.972696],
      [-92.471667, 34.057054],
      [-92.336765, 34.059633],
      [-92.233376, 34.062312],
      [-91.953799, 34.064141]]]},
   'id': '05025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05027',
    'STATE': '05',
    'COUNTY': '027',
    'NAME': 'Columbia',
    'LSAD': 'County',
    'CENSUSAREA': 766.053},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.238607, 33.017992],
      [-93.308181, 33.018156],
      [-93.308398, 33.018179],
      [-93.340353, 33.018337],
      [-93.377134, 33.018234],
      [-93.467042, 33.018611],
      [-93.489506, 33.018443],
      [-93.49052, 33.018442],
      [-93.48176, 33.259991],
      [-93.442019, 33.258165],
      [-93.365585, 33.444459],
      [-93.116361, 33.452909],
      [-93.119014, 33.380293],
      [-92.978469, 33.37728],
      [-92.988708, 33.017298],
      [-93.070686, 33.017792],
      [-93.073167, 33.017898],
      [-93.081428, 33.017928],
      [-93.100981, 33.017786],
      [-93.101443, 33.01774],
      [-93.154351, 33.017856],
      [-93.197402, 33.017951],
      [-93.238607, 33.017992]]]},
   'id': '05027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05029',
    'STATE': '05',
    'COUNTY': '029',
    'NAME': 'Conway',
    'LSAD': 'County',
    'CENSUSAREA': 552.25},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.040525, 35.076923],
      [-92.896109, 35.170678],
      [-92.855, 35.172777],
      [-92.850624, 35.46295],
      [-92.479268, 35.455357],
      [-92.481469, 35.368392],
      [-92.484259, 35.280706],
      [-92.554685, 35.113277],
      [-92.716331, 35.071742],
      [-93.040525, 35.076923]]]},
   'id': '05029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05031',
    'STATE': '05',
    'COUNTY': '031',
    'NAME': 'Craighead',
    'LSAD': 'County',
    'CENSUSAREA': 707.206},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.288947, 35.996418],
      [-90.286736, 35.699914],
      [-91.036967, 35.708418],
      [-91.032499, 35.88507],
      [-90.872785, 35.88087],
      [-90.852064, 35.968092],
      [-90.387378, 35.964708],
      [-90.368718, 35.995812],
      [-90.342616, 35.995895],
      [-90.339434, 35.996033],
      [-90.292376, 35.996397],
      [-90.288947, 35.996418]]]},
   'id': '05031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05033',
    'STATE': '05',
    'COUNTY': '033',
    'NAME': 'Crawford',
    'LSAD': 'County',
    'CENSUSAREA': 593.094},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.431789, 35.397659],
      [-94.463318, 35.58266],
      [-94.464097, 35.587265],
      [-94.464457, 35.588909],
      [-94.465272, 35.594037],
      [-94.472647, 35.638556],
      [-94.487585, 35.726147],
      [-94.48821, 35.72924],
      [-94.492932, 35.759166],
      [-94.124871, 35.750426],
      [-93.962892, 35.76093],
      [-93.910836, 35.759752],
      [-93.984204, 35.660783],
      [-94.073703, 35.662463],
      [-94.076209, 35.575489],
      [-94.023014, 35.574204],
      [-94.074895, 35.445403],
      [-94.223751, 35.353694],
      [-94.321186, 35.357476],
      [-94.403468, 35.449994],
      [-94.431789, 35.397659]]]},
   'id': '05033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05035',
    'STATE': '05',
    'COUNTY': '035',
    'NAME': 'Crittenden',
    'LSAD': 'County',
    'CENSUSAREA': 609.76},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.074262, 35.218316],
      [-90.073354, 35.211004],
      [-90.064612, 35.140621],
      [-90.065392, 35.137691],
      [-90.08342, 35.12167],
      [-90.09061, 35.118287],
      [-90.100593, 35.116691],
      [-90.109393, 35.118891],
      [-90.142794, 35.135091],
      [-90.160058, 35.12883],
      [-90.174594, 35.116682],
      [-90.193859, 35.061646],
      [-90.295596, 35.040093],
      [-90.309877, 35.00975],
      [-90.309297, 34.995694],
      [-90.253969, 34.954988],
      [-90.244476, 34.937596],
      [-90.250095, 34.90732],
      [-90.293918, 34.860563],
      [-90.307384, 34.846195],
      [-90.407964, 34.832767],
      [-90.40854, 34.904121],
      [-90.400434, 35.148196],
      [-90.502993, 35.144214],
      [-90.502429, 35.441726],
      [-90.500104, 35.441763],
      [-90.286899, 35.438573],
      [-90.152386, 35.436789],
      [-90.169002, 35.421853],
      [-90.179265, 35.385194],
      [-90.178341, 35.382092],
      [-90.166246, 35.374745],
      [-90.143633, 35.374745],
      [-90.13551, 35.376668],
      [-90.093589, 35.393333],
      [-90.089612, 35.379842],
      [-90.086691, 35.369935],
      [-90.114893, 35.303887],
      [-90.153394, 35.302588],
      [-90.158913, 35.300637],
      [-90.163812, 35.296115],
      [-90.168871, 35.281997],
      [-90.166594, 35.274588],
      [-90.158865, 35.262577],
      [-90.152094, 35.255989],
      [-90.140394, 35.252289],
      [-90.116493, 35.255788],
      [-90.105093, 35.254288],
      [-90.097947, 35.249983],
      [-90.07741, 35.225479],
      [-90.074262, 35.218316]]]},
   'id': '05035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05037',
    'STATE': '05',
    'COUNTY': '037',
    'NAME': 'Cross',
    'LSAD': 'County',
    'CENSUSAREA': 616.381},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.039783, 35.354256],
      [-91.03923, 35.444717],
      [-90.502429, 35.441726],
      [-90.502993, 35.144214],
      [-91.04267, 35.148189],
      [-91.039783, 35.354256]]]},
   'id': '05037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05039',
    'STATE': '05',
    'COUNTY': '039',
    'NAME': 'Dallas',
    'LSAD': 'County',
    'CENSUSAREA': 667.386},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.336765, 34.059633],
      [-92.471667, 34.057054],
      [-92.475602, 33.972696],
      [-92.400798, 33.91356],
      [-92.334249, 33.795065],
      [-92.583054, 33.802198],
      [-92.893534, 33.809943],
      [-92.89314, 33.902751],
      [-92.961185, 33.97482],
      [-92.893116, 33.983284],
      [-92.886285, 34.155877],
      [-92.813986, 34.15166],
      [-92.678383, 34.149622],
      [-92.493672, 34.144234],
      [-92.336765, 34.059633]]]},
   'id': '05039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05041',
    'STATE': '05',
    'COUNTY': '041',
    'NAME': 'Desha',
    'LSAD': 'County',
    'CENSUSAREA': 768.152},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.224121, 33.567369],
      [-91.228287, 33.559937],
      [-91.244582, 33.561425],
      [-91.24576, 33.517148],
      [-91.35081, 33.519476],
      [-91.34954, 33.563646],
      [-91.453438, 33.563703],
      [-91.450325, 33.780415],
      [-91.557648, 33.783384],
      [-91.548668, 33.976799],
      [-91.421715, 34.014472],
      [-91.347628, 33.954941],
      [-91.132686, 33.955221],
      [-91.194278, 34.070938],
      [-91.117905, 34.119105],
      [-90.95517, 34.118833],
      [-90.933116, 34.124488],
      [-90.931969, 34.120017],
      [-90.928793, 34.107631],
      [-90.912057, 34.095512],
      [-90.888396, 34.087433],
      [-90.879163, 34.065503],
      [-90.887413, 34.032505],
      [-90.964708, 34.007952],
      [-91.01889, 34.003151],
      [-91.089119, 33.972653],
      [-91.088164, 33.960078],
      [-91.036821, 33.914656],
      [-91.067511, 33.840443],
      [-91.139869, 33.777117],
      [-91.144682, 33.750108],
      [-91.136118, 33.728632],
      [-91.126805, 33.707814],
      [-91.1279, 33.695762],
      [-91.132831, 33.688092],
      [-91.139953, 33.683709],
      [-91.14817, 33.679327],
      [-91.17611, 33.684257],
      [-91.185971, 33.679327],
      [-91.18871, 33.669466],
      [-91.193093, 33.656866],
      [-91.186519, 33.645909],
      [-91.157484, 33.626187],
      [-91.130445, 33.606034],
      [-91.134043, 33.594489],
      [-91.152148, 33.582721],
      [-91.224121, 33.567369]]]},
   'id': '05041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05043',
    'STATE': '05',
    'COUNTY': '043',
    'NAME': 'Drew',
    'LSAD': 'County',
    'CENSUSAREA': 828.356},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.975844, 33.704414],
      [-91.975974, 33.791787],
      [-91.663738, 33.792246],
      [-91.557648, 33.783384],
      [-91.450325, 33.780415],
      [-91.453438, 33.563703],
      [-91.45737, 33.388974],
      [-91.990167, 33.398214],
      [-92.00785, 33.529396],
      [-91.97608, 33.529687],
      [-91.975844, 33.704414]]]},
   'id': '05043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05045',
    'STATE': '05',
    'COUNTY': '045',
    'NAME': 'Faulkner',
    'LSAD': 'County',
    'CENSUSAREA': 647.884},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.119719, 35.066493],
      [-92.121336, 35.01221],
      [-92.227541, 35.014484],
      [-92.229893, 34.927558],
      [-92.544341, 34.953319],
      [-92.593585, 35.011761],
      [-92.554685, 35.113277],
      [-92.484259, 35.280706],
      [-92.481469, 35.368392],
      [-92.252759, 35.363718],
      [-92.111463, 35.362725],
      [-92.119719, 35.066493]]]},
   'id': '05045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05047',
    'STATE': '05',
    'COUNTY': '047',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 608.857},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.910836, 35.759752],
      [-93.910588, 35.774246],
      [-93.695981, 35.768649],
      [-93.710076, 35.375242],
      [-93.806849, 35.430011],
      [-93.810087, 35.313095],
      [-93.917127, 35.319046],
      [-93.920167, 35.229427],
      [-94.028547, 35.213826],
      [-94.082798, 35.215913],
      [-94.074895, 35.445403],
      [-94.023014, 35.574204],
      [-94.076209, 35.575489],
      [-94.073703, 35.662463],
      [-93.984204, 35.660783],
      [-93.910836, 35.759752]]]},
   'id': '05047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05049',
    'STATE': '05',
    'COUNTY': '049',
    'NAME': 'Fulton',
    'LSAD': 'County',
    'CENSUSAREA': 618.194},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.120415, 36.498863],
      [-92.120306, 36.498864],
      [-92.098356, 36.498803],
      [-92.074934, 36.498761],
      [-92.057178, 36.49867],
      [-92.055789, 36.49867],
      [-92.028847, 36.498642],
      [-92.019375, 36.498524],
      [-91.988751, 36.498498],
      [-91.985802, 36.498431],
      [-91.865995, 36.498783],
      [-91.864385, 36.498789],
      [-91.805981, 36.498987],
      [-91.80204, 36.498963],
      [-91.7995, 36.498952],
      [-91.784713, 36.499074],
      [-91.766111, 36.499114],
      [-91.726663, 36.499209],
      [-91.687615, 36.499397],
      [-91.686026, 36.499374],
      [-91.672343, 36.499463],
      [-91.64259, 36.499335],
      [-91.631439, 36.499198],
      [-91.601317, 36.499343],
      [-91.596213, 36.499162],
      [-91.549163, 36.499161],
      [-91.539359, 36.499116],
      [-91.53687, 36.499156],
      [-91.529774, 36.499022],
      [-91.450005, 36.497538],
      [-91.454437, 36.335465],
      [-91.565866, 36.3374],
      [-91.566078, 36.249945],
      [-91.691435, 36.253301],
      [-92.15699, 36.261248],
      [-92.159215, 36.261311],
      [-92.150295, 36.498634],
      [-92.137741, 36.498706],
      [-92.120415, 36.498863]]]},
   'id': '05049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05051',
    'STATE': '05',
    'COUNTY': '051',
    'NAME': 'Garland',
    'LSAD': 'County',
    'CENSUSAREA': 677.781},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.394289, 34.743393],
      [-93.394456, 34.772355],
      [-93.287785, 34.773193],
      [-93.269886, 34.771993],
      [-93.075178, 34.771892],
      [-92.96925, 34.772266],
      [-92.979902, 34.637222],
      [-92.875456, 34.635124],
      [-92.808028, 34.590406],
      [-92.793197, 34.503606],
      [-92.915079, 34.506114],
      [-92.948071, 34.389255],
      [-93.407227, 34.396853],
      [-93.394289, 34.743393]]]},
   'id': '05051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05053',
    'STATE': '05',
    'COUNTY': '053',
    'NAME': 'Grant',
    'LSAD': 'County',
    'CENSUSAREA': 631.809},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.245818, 34.493506],
      [-92.208041, 34.492765],
      [-92.212906, 34.2304],
      [-92.233376, 34.062312],
      [-92.336765, 34.059633],
      [-92.493672, 34.144234],
      [-92.678383, 34.149622],
      [-92.668711, 34.414237],
      [-92.589418, 34.455641],
      [-92.40468, 34.451916],
      [-92.403557, 34.495795],
      [-92.245818, 34.493506]]]},
   'id': '05053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05055',
    'STATE': '05',
    'COUNTY': '055',
    'NAME': 'Greene',
    'LSAD': 'County',
    'CENSUSAREA': 577.699},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.198735, 36.201382],
      [-90.220425, 36.184764],
      [-90.319168, 36.089976],
      [-90.36443, 36.013625],
      [-90.368718, 35.995812],
      [-90.387378, 35.964708],
      [-90.852064, 35.968092],
      [-90.820763, 36.07977],
      [-90.747425, 36.149116],
      [-90.809816, 36.149567],
      [-90.806615, 36.266865],
      [-90.31982, 36.259144],
      [-90.32096, 36.200575],
      [-90.198735, 36.201382]]]},
   'id': '05055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05057',
    'STATE': '05',
    'COUNTY': '057',
    'NAME': 'Hempstead',
    'LSAD': 'County',
    'CENSUSAREA': 727.52},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.957315, 33.75094],
      [-93.831452, 33.747709],
      [-93.823076, 34.008893],
      [-93.528752, 33.943171],
      [-93.456709, 33.956837],
      [-93.483097, 33.476075],
      [-93.722867, 33.481963],
      [-93.772686, 33.498513],
      [-93.773641, 33.504671],
      [-93.780289, 33.519624],
      [-93.778832, 33.524717],
      [-93.792415, 33.535869],
      [-93.792725, 33.541963],
      [-93.792725, 33.547109],
      [-93.79833, 33.542149],
      [-93.807741, 33.545243],
      [-93.803789, 33.549384],
      [-93.798272, 33.552493],
      [-93.814202, 33.56475],
      [-93.827726, 33.57162],
      [-93.823259, 33.580544],
      [-93.817579, 33.586153],
      [-93.812503, 33.603351],
      [-93.816087, 33.610843],
      [-93.822178, 33.613548],
      [-93.825884, 33.609853],
      [-93.965637, 33.669736],
      [-93.957315, 33.75094]]]},
   'id': '05057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05059',
    'STATE': '05',
    'COUNTY': '059',
    'NAME': 'Hot Spring',
    'LSAD': 'County',
    'CENSUSAREA': 615.202},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.793197, 34.503606],
      [-92.685284, 34.473105],
      [-92.668711, 34.414237],
      [-92.678383, 34.149622],
      [-92.813986, 34.15166],
      [-92.886285, 34.155877],
      [-93.042025, 34.159852],
      [-93.035039, 34.236664],
      [-93.199428, 34.248057],
      [-93.198278, 34.277337],
      [-93.35684, 34.280306],
      [-93.408124, 34.339527],
      [-93.407227, 34.396853],
      [-92.948071, 34.389255],
      [-92.915079, 34.506114],
      [-92.793197, 34.503606]]]},
   'id': '05059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05061',
    'STATE': '05',
    'COUNTY': '061',
    'NAME': 'Howard',
    'LSAD': 'County',
    'CENSUSAREA': 588.554},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.935371, 34.350097],
      [-93.92583, 34.186496],
      [-93.820722, 34.183802],
      [-93.823076, 34.008893],
      [-93.831452, 33.747709],
      [-93.957315, 33.75094],
      [-93.958828, 33.750994],
      [-93.964699, 33.796211],
      [-94.070085, 33.926994],
      [-94.090096, 34.187141],
      [-94.243739, 34.192501],
      [-94.254668, 34.355481],
      [-93.935371, 34.350097]]]},
   'id': '05061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05063',
    'STATE': '05',
    'COUNTY': '063',
    'NAME': 'Independence',
    'LSAD': 'County',
    'CENSUSAREA': 763.953},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.793958, 35.534114],
      [-91.789823, 35.711734],
      [-91.837179, 35.704932],
      [-91.870983, 35.810562],
      [-91.849448, 35.867411],
      [-91.753345, 35.942883],
      [-91.710552, 35.941759],
      [-91.463198, 35.93681],
      [-91.464678, 35.892497],
      [-91.35723, 35.890621],
      [-91.198556, 35.890024],
      [-91.232392, 35.812664],
      [-91.348281, 35.719127],
      [-91.36957, 35.526362],
      [-91.58188, 35.530447],
      [-91.793958, 35.534114]]]},
   'id': '05063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05065',
    'STATE': '05',
    'COUNTY': '065',
    'NAME': 'Izard',
    'LSAD': 'County',
    'CENSUSAREA': 580.577},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.849448, 35.867411],
      [-91.95302, 35.931644],
      [-92.108622, 35.931328],
      [-92.063576, 36.024372],
      [-92.19543, 36.132798],
      [-92.15699, 36.261248],
      [-91.691435, 36.253301],
      [-91.682277, 36.000535],
      [-91.710552, 35.941759],
      [-91.753345, 35.942883],
      [-91.849448, 35.867411]]]},
   'id': '05065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05067',
    'STATE': '05',
    'COUNTY': '067',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 633.938},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.58188, 35.530447],
      [-91.36957, 35.526362],
      [-91.348281, 35.719127],
      [-91.232392, 35.812664],
      [-91.198556, 35.890024],
      [-91.169061, 35.889794],
      [-91.032499, 35.88507],
      [-91.036967, 35.708418],
      [-91.03923, 35.444717],
      [-91.039783, 35.354256],
      [-91.251555, 35.357561],
      [-91.252927, 35.445845],
      [-91.347257, 35.439106],
      [-91.584687, 35.442311],
      [-91.58188, 35.530447]]]},
   'id': '05067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05069',
    'STATE': '05',
    'COUNTY': '069',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 870.746},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.029996, 34.489352],
      [-91.705185, 34.48267],
      [-91.711795, 34.233919],
      [-91.540178, 34.224599],
      [-91.445614, 34.080147],
      [-91.727276, 34.174093],
      [-91.74499, 34.094021],
      [-91.953629, 34.09338],
      [-91.953799, 34.064141],
      [-92.233376, 34.062312],
      [-92.212906, 34.2304],
      [-92.208041, 34.492765],
      [-92.029996, 34.489352]]]},
   'id': '05069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05071',
    'STATE': '05',
    'COUNTY': '071',
    'NAME': 'Johnson',
    'LSAD': 'County',
    'CENSUSAREA': 659.804},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.710076, 35.375242],
      [-93.695981, 35.768649],
      [-93.519204, 35.763521],
      [-93.519575, 35.734422],
      [-93.164452, 35.728831],
      [-93.1678, 35.597695],
      [-93.22117, 35.598938],
      [-93.223633, 35.468593],
      [-93.29591, 35.469915],
      [-93.299014, 35.327425],
      [-93.417895, 35.326779],
      [-93.43041, 35.423737],
      [-93.710076, 35.375242]]]},
   'id': '05071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05073',
    'STATE': '05',
    'COUNTY': '073',
    'NAME': 'Lafayette',
    'LSAD': 'County',
    'CENSUSAREA': 528.268},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.49052, 33.018442],
      [-93.490893, 33.018442],
      [-93.520971, 33.018616],
      [-93.520994, 33.018616],
      [-93.524916, 33.018637],
      [-93.531499, 33.018643],
      [-93.80493, 33.019347],
      [-93.860409, 33.092602],
      [-93.850076, 33.145343],
      [-93.734079, 33.155551],
      [-93.750177, 33.183949],
      [-93.665518, 33.327021],
      [-93.733317, 33.42088],
      [-93.722867, 33.481963],
      [-93.483097, 33.476075],
      [-93.483974, 33.447223],
      [-93.365585, 33.444459],
      [-93.442019, 33.258165],
      [-93.48176, 33.259991],
      [-93.49052, 33.018442]]]},
   'id': '05073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05075',
    'STATE': '05',
    'COUNTY': '075',
    'NAME': 'Lawrence',
    'LSAD': 'County',
    'CENSUSAREA': 587.614},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.35723, 35.890621],
      [-91.349834, 36.230967],
      [-91.25892, 36.25788],
      [-91.082681, 36.150871],
      [-90.809816, 36.149567],
      [-90.747425, 36.149116],
      [-90.820763, 36.07977],
      [-90.852064, 35.968092],
      [-90.872785, 35.88087],
      [-91.032499, 35.88507],
      [-91.169061, 35.889794],
      [-91.198556, 35.890024],
      [-91.35723, 35.890621]]]},
   'id': '05075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05077',
    'STATE': '05',
    'COUNTY': '077',
    'NAME': 'Lee',
    'LSAD': 'County',
    'CENSUSAREA': 602.621},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.407964, 34.832767],
      [-90.414864, 34.831846],
      [-90.423879, 34.834606],
      [-90.436431, 34.85506],
      [-90.461451, 34.856728],
      [-90.473961, 34.852558],
      [-90.478131, 34.832542],
      [-90.467289, 34.782502],
      [-90.479799, 34.769158],
      [-90.494811, 34.76749],
      [-90.501325, 34.769931],
      [-90.519831, 34.782502],
      [-90.537345, 34.78417],
      [-90.549855, 34.76332],
      [-90.554859, 34.727458],
      [-90.533175, 34.707442],
      [-90.509823, 34.689928],
      [-90.508989, 34.679086],
      [-90.521499, 34.66324],
      [-90.539013, 34.65907],
      [-90.549855, 34.662406],
      [-90.564033, 34.665742],
      [-90.576543, 34.657402],
      [-90.575786, 34.641749],
      [-90.583224, 34.641389],
      [-91.051918, 34.645721],
      [-91.049474, 34.734184],
      [-91.102542, 34.734864],
      [-91.099961, 34.86712],
      [-91.099201, 34.911796],
      [-90.40854, 34.904121],
      [-90.407964, 34.832767]]]},
   'id': '05077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05079',
    'STATE': '05',
    'COUNTY': '079',
    'NAME': 'Lincoln',
    'LSAD': 'County',
    'CENSUSAREA': 561.517},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.445614, 34.080147],
      [-91.435887, 34.06844],
      [-91.434621, 34.052702],
      [-91.437131, 34.034663],
      [-91.431239, 34.020363],
      [-91.421715, 34.014472],
      [-91.548668, 33.976799],
      [-91.557648, 33.783384],
      [-91.663738, 33.792246],
      [-91.975974, 33.791787],
      [-91.976439, 33.977297],
      [-91.953799, 34.064141],
      [-91.953629, 34.09338],
      [-91.74499, 34.094021],
      [-91.727276, 34.174093],
      [-91.445614, 34.080147]]]},
   'id': '05079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05081',
    'STATE': '05',
    'COUNTY': '081',
    'NAME': 'Little River',
    'LSAD': 'County',
    'CENSUSAREA': 532.253},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.04345, 33.552253],
      [-94.066846, 33.568909],
      [-94.085243, 33.575546],
      [-94.181805, 33.593217],
      [-94.252656, 33.586144],
      [-94.257801, 33.582508],
      [-94.355945, 33.54318],
      [-94.409329, 33.568265],
      [-94.464336, 33.598819],
      [-94.470963, 33.60594],
      [-94.478366, 33.620847],
      [-94.485875, 33.637867],
      [-94.485577, 33.65331],
      [-94.485528, 33.663388],
      [-94.48452, 33.687909],
      [-94.484616, 33.691592],
      [-94.48384, 33.711332],
      [-94.483874, 33.716733],
      [-94.48287, 33.750564],
      [-94.482862, 33.75078],
      [-94.482777, 33.753638],
      [-94.482682, 33.756286],
      [-94.481842, 33.789008],
      [-94.481543, 33.795719],
      [-94.481361, 33.802649],
      [-94.481355, 33.802887],
      [-94.480574, 33.830166],
      [-94.479954, 33.85133],
      [-94.478994, 33.881197],
      [-94.478842, 33.881485],
      [-94.477387, 33.937759],
      [-94.477318, 33.940932],
      [-94.237445, 33.802074],
      [-94.040849, 33.782046],
      [-93.958828, 33.750994],
      [-93.957315, 33.75094],
      [-93.965637, 33.669736],
      [-93.825884, 33.609853],
      [-93.951474, 33.549282],
      [-94.04345, 33.552253]]]},
   'id': '05081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05083',
    'STATE': '05',
    'COUNTY': '083',
    'NAME': 'Logan',
    'LSAD': 'County',
    'CENSUSAREA': 708.125},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.704885, 35.019715],
      [-94.074347, 35.026585],
      [-94.140571, 35.099678],
      [-94.139307, 35.143361],
      [-94.031236, 35.140857],
      [-94.028547, 35.213826],
      [-93.920167, 35.229427],
      [-93.917127, 35.319046],
      [-93.810087, 35.313095],
      [-93.806849, 35.430011],
      [-93.710076, 35.375242],
      [-93.43041, 35.423737],
      [-93.417895, 35.326779],
      [-93.299014, 35.327425],
      [-93.294201, 35.325319],
      [-93.282758, 35.318273],
      [-93.278293, 35.317402],
      [-93.279959, 35.212552],
      [-93.457022, 35.215782],
      [-93.529838, 35.145441],
      [-93.706692, 35.134943],
      [-93.704885, 35.019715]]]},
   'id': '05083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05085',
    'STATE': '05',
    'COUNTY': '085',
    'NAME': 'Lonoke',
    'LSAD': 'County',
    'CENSUSAREA': 770.728},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.121336, 35.01221],
      [-92.119719, 35.066493],
      [-92.013056, 35.076317],
      [-91.87888, 35.024577],
      [-91.802505, 35.030425],
      [-91.803703, 34.921524],
      [-91.693705, 34.919605],
      [-91.700828, 34.672029],
      [-91.638531, 34.626093],
      [-91.678037, 34.48192],
      [-91.705185, 34.48267],
      [-92.029996, 34.489352],
      [-92.02954, 34.621403],
      [-92.113313, 34.622966],
      [-92.078711, 34.729983],
      [-92.070805, 35.011802],
      [-92.121336, 35.01221]]]},
   'id': '05085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05087',
    'STATE': '05',
    'COUNTY': '087',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 834.255},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.962892, 35.76093],
      [-93.944177, 36.091103],
      [-93.887775, 36.235046],
      [-93.815605, 36.306563],
      [-93.657689, 36.303082],
      [-93.619974, 36.201208],
      [-93.551135, 36.126271],
      [-93.479528, 36.125072],
      [-93.450715, 35.967493],
      [-93.523639, 35.881592],
      [-93.519204, 35.763521],
      [-93.695981, 35.768649],
      [-93.910588, 35.774246],
      [-93.910836, 35.759752],
      [-93.962892, 35.76093]]]},
   'id': '05087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05089',
    'STATE': '05',
    'COUNTY': '089',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 597.009},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.854049, 36.497983],
      [-92.838876, 36.498033],
      [-92.838621, 36.498079],
      [-92.772341, 36.497772],
      [-92.772333, 36.497772],
      [-92.529145, 36.497739],
      [-92.533175, 36.386563],
      [-92.593128, 36.358337],
      [-92.543034, 36.269342],
      [-92.469262, 36.250904],
      [-92.411852, 36.162123],
      [-92.411502, 36.062756],
      [-92.837776, 36.070124],
      [-92.890695, 36.114132],
      [-92.884954, 36.490891],
      [-92.854049, 36.497983]]]},
   'id': '05089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05091',
    'STATE': '05',
    'COUNTY': '091',
    'NAME': 'Miller',
    'LSAD': 'County',
    'CENSUSAREA': 625.578},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.043036, 33.079485],
      [-94.04287, 33.092727],
      [-94.043007, 33.13389],
      [-94.043077, 33.138162],
      [-94.043185, 33.143476],
      [-94.042875, 33.199785],
      [-94.042892, 33.202666],
      [-94.042876, 33.215219],
      [-94.04273, 33.241823],
      [-94.043004, 33.250128],
      [-94.04305, 33.260904],
      [-94.04299, 33.271227],
      [-94.04299, 33.271243],
      [-94.043067, 33.330498],
      [-94.043067, 33.347351],
      [-94.043067, 33.352097],
      [-94.043128, 33.358757],
      [-94.042869, 33.37117],
      [-94.043053, 33.377716],
      [-94.042887, 33.420225],
      [-94.042988, 33.431024],
      [-94.042988, 33.435824],
      [-94.043188, 33.470324],
      [-94.043279, 33.49103],
      [-94.043009, 33.493039],
      [-94.043375, 33.542315],
      [-94.043428, 33.551425],
      [-94.04345, 33.552253],
      [-93.951474, 33.549282],
      [-93.825884, 33.609853],
      [-93.822178, 33.613548],
      [-93.816087, 33.610843],
      [-93.812503, 33.603351],
      [-93.817579, 33.586153],
      [-93.823259, 33.580544],
      [-93.827726, 33.57162],
      [-93.814202, 33.56475],
      [-93.798272, 33.552493],
      [-93.803789, 33.549384],
      [-93.807741, 33.545243],
      [-93.79833, 33.542149],
      [-93.792725, 33.547109],
      [-93.792725, 33.541963],
      [-93.792415, 33.535869],
      [-93.778832, 33.524717],
      [-93.780289, 33.519624],
      [-93.773641, 33.504671],
      [-93.772686, 33.498513],
      [-93.722867, 33.481963],
      [-93.733317, 33.42088],
      [-93.665518, 33.327021],
      [-93.750177, 33.183949],
      [-93.734079, 33.155551],
      [-93.850076, 33.145343],
      [-93.860409, 33.092602],
      [-93.80493, 33.019347],
      [-93.814553, 33.019372],
      [-94.024475, 33.019207],
      [-94.027983, 33.019139],
      [-94.035839, 33.019145],
      [-94.041444, 33.019188],
      [-94.042964, 33.019219],
      [-94.043036, 33.079485]]]},
   'id': '05091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05093',
    'STATE': '05',
    'COUNTY': '093',
    'NAME': 'Mississippi',
    'LSAD': 'County',
    'CENSUSAREA': 900.574},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.933572, 35.533299],
      [-89.957347, 35.528683],
      [-90.017312, 35.555996],
      [-90.02862, 35.555249],
      [-90.032938, 35.55344],
      [-90.039744, 35.548041],
      [-90.034976, 35.480705],
      [-90.034014, 35.468821],
      [-90.04768, 35.459255],
      [-90.059068, 35.457889],
      [-90.067798, 35.466224],
      [-90.072154, 35.470752],
      [-90.07442, 35.472518],
      [-90.107723, 35.476935],
      [-90.152386, 35.436789],
      [-90.286899, 35.438573],
      [-90.287039, 35.439933],
      [-90.286736, 35.699914],
      [-90.288947, 35.996418],
      [-90.2888, 35.996419],
      [-90.158812, 35.997375],
      [-90.127331, 35.997635],
      [-90.12635, 35.997596],
      [-89.972563, 35.998994],
      [-89.965327, 35.998813],
      [-89.961075, 35.999135],
      [-89.959893, 35.99902],
      [-89.959377, 35.99902],
      [-89.959375, 35.99902],
      [-89.901183, 35.999365],
      [-89.896508, 35.999432],
      [-89.875586, 35.999562],
      [-89.875085, 35.999578],
      [-89.87459, 35.999575],
      [-89.86901, 35.99964],
      [-89.770255, 36.000524],
      [-89.769973, 36.000536],
      [-89.737648, 36.000567],
      [-89.737564, 36.000522],
      [-89.733095, 36.000608],
      [-89.71997, 35.97462],
      [-89.686924, 35.947716],
      [-89.687939, 35.905384],
      [-89.688141, 35.896946],
      [-89.714934, 35.906247],
      [-89.73361, 35.904699],
      [-89.756036, 35.896817],
      [-89.765689, 35.891299],
      [-89.771726, 35.879724],
      [-89.773564, 35.871697],
      [-89.772467, 35.865098],
      [-89.769413, 35.861558],
      [-89.749424, 35.852955],
      [-89.729517, 35.847632],
      [-89.709261, 35.838911],
      [-89.702883, 35.834153],
      [-89.701045, 35.828227],
      [-89.703875, 35.820281],
      [-89.821216, 35.756716],
      [-89.865631, 35.746577],
      [-89.889023, 35.750558],
      [-89.905538, 35.759063],
      [-89.909996, 35.759396],
      [-89.950278, 35.738493],
      [-89.956254, 35.733386],
      [-89.958882, 35.723834],
      [-89.955753, 35.690621],
      [-89.937383, 35.665711],
      [-89.922749, 35.655293],
      [-89.906147, 35.651145],
      [-89.89051, 35.652408],
      [-89.884932, 35.655107],
      [-89.909797, 35.537914],
      [-89.933572, 35.533299]]]},
   'id': '05093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05095',
    'STATE': '05',
    'COUNTY': '095',
    'NAME': 'Monroe',
    'LSAD': 'County',
    'CENSUSAREA': 607.122},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.056276, 34.336605],
      [-91.107762, 34.353404],
      [-91.209161, 34.483221],
      [-91.37782, 34.56348],
      [-91.447795, 34.609185],
      [-91.446983, 34.667531],
      [-91.374765, 34.665964],
      [-91.36856, 34.912735],
      [-91.29479, 34.912452],
      [-91.293111, 34.985091],
      [-91.149842, 35.00247],
      [-91.152457, 34.911847],
      [-91.099961, 34.86712],
      [-91.102542, 34.734864],
      [-91.049474, 34.734184],
      [-91.051918, 34.645721],
      [-91.054774, 34.47088],
      [-91.000459, 34.469372],
      [-91.002693, 34.336353],
      [-91.056276, 34.336605]]]},
   'id': '05095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05097',
    'STATE': '05',
    'COUNTY': '097',
    'NAME': 'Montgomery',
    'LSAD': 'County',
    'CENSUSAREA': 779.88},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.710297, 34.745296],
      [-93.394289, 34.743393],
      [-93.407227, 34.396853],
      [-93.408124, 34.339527],
      [-93.433178, 34.339866],
      [-93.439461, 34.340212],
      [-93.439996, 34.340048],
      [-93.478646, 34.340851],
      [-93.935371, 34.350097],
      [-93.930509, 34.665608],
      [-93.870197, 34.712699],
      [-93.710297, 34.745296]]]},
   'id': '05097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05099',
    'STATE': '05',
    'COUNTY': '099',
    'NAME': 'Nevada',
    'LSAD': 'County',
    'CENSUSAREA': 617.837},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.365585, 33.444459],
      [-93.483974, 33.447223],
      [-93.483097, 33.476075],
      [-93.456709, 33.956837],
      [-93.373406, 33.95707],
      [-93.290571, 33.845133],
      [-93.10429, 33.777011],
      [-93.116361, 33.452909],
      [-93.365585, 33.444459]]]},
   'id': '05099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05101',
    'STATE': '05',
    'COUNTY': '101',
    'NAME': 'Newton',
    'LSAD': 'County',
    'CENSUSAREA': 820.896},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.944666, 36.115123],
      [-92.951315, 35.724663],
      [-93.164452, 35.728831],
      [-93.519575, 35.734422],
      [-93.519204, 35.763521],
      [-93.523639, 35.881592],
      [-93.450715, 35.967493],
      [-93.479528, 36.125072],
      [-93.300072, 36.121264],
      [-92.948256, 36.115526],
      [-92.944666, 36.115123]]]},
   'id': '05101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05103',
    'STATE': '05',
    'COUNTY': '103',
    'NAME': 'Ouachita',
    'LSAD': 'County',
    'CENSUSAREA': 732.783},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.567156, 33.3672],
      [-92.660238, 33.355613],
      [-92.978469, 33.37728],
      [-93.119014, 33.380293],
      [-93.116361, 33.452909],
      [-93.10429, 33.777011],
      [-92.893534, 33.809943],
      [-92.583054, 33.802198],
      [-92.58503, 33.736514],
      [-92.647931, 33.663785],
      [-92.735657, 33.624295],
      [-92.717454, 33.552444],
      [-92.776729, 33.537648],
      [-92.705093, 33.431215],
      [-92.653211, 33.433968],
      [-92.567156, 33.3672]]]},
   'id': '05103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05105',
    'STATE': '05',
    'COUNTY': '105',
    'NAME': 'Perry',
    'LSAD': 'County',
    'CENSUSAREA': 551.402},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.544341, 34.953319],
      [-92.753626, 34.911248],
      [-92.739779, 34.853459],
      [-93.073877, 34.858091],
      [-93.075178, 34.771892],
      [-93.269886, 34.771993],
      [-93.287785, 34.773193],
      [-93.288284, 34.860992],
      [-93.181478, 34.97639],
      [-93.040525, 35.076923],
      [-92.716331, 35.071742],
      [-92.554685, 35.113277],
      [-92.593585, 35.011761],
      [-92.544341, 34.953319]]]},
   'id': '05105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05107',
    'STATE': '05',
    'COUNTY': '107',
    'NAME': 'Phillips',
    'LSAD': 'County',
    'CENSUSAREA': 695.663},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.575786, 34.641749],
      [-90.570133, 34.524829],
      [-90.565809, 34.4354],
      [-90.575336, 34.415152],
      [-90.613944, 34.390723],
      [-90.658542, 34.375705],
      [-90.764143, 34.363396],
      [-90.856367, 34.238928],
      [-90.868775, 34.228245],
      [-90.894744, 34.229977],
      [-90.91148, 34.223051],
      [-90.913212, 34.210355],
      [-90.895898, 34.191888],
      [-90.880894, 34.180346],
      [-90.880317, 34.169381],
      [-90.893013, 34.155531],
      [-90.918405, 34.154376],
      [-90.934564, 34.130138],
      [-90.933116, 34.124488],
      [-90.95517, 34.118833],
      [-91.117905, 34.119105],
      [-91.060626, 34.216766],
      [-91.056276, 34.336605],
      [-91.002693, 34.336353],
      [-91.000459, 34.469372],
      [-91.054774, 34.47088],
      [-91.051918, 34.645721],
      [-90.583224, 34.641389],
      [-90.575786, 34.641749]]]},
   'id': '05107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05109',
    'STATE': '05',
    'COUNTY': '109',
    'NAME': 'Pike',
    'LSAD': 'County',
    'CENSUSAREA': 600.618},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.935371, 34.350097],
      [-93.478646, 34.340851],
      [-93.434165, 34.049739],
      [-93.373406, 33.95707],
      [-93.456709, 33.956837],
      [-93.528752, 33.943171],
      [-93.823076, 34.008893],
      [-93.820722, 34.183802],
      [-93.92583, 34.186496],
      [-93.935371, 34.350097]]]},
   'id': '05109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05111',
    'STATE': '05',
    'COUNTY': '111',
    'NAME': 'Poinsett',
    'LSAD': 'County',
    'CENSUSAREA': 758.389},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.036967, 35.708418],
      [-90.286736, 35.699914],
      [-90.287039, 35.439933],
      [-90.286899, 35.438573],
      [-90.500104, 35.441763],
      [-90.502429, 35.441726],
      [-91.03923, 35.444717],
      [-91.036967, 35.708418]]]},
   'id': '05111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05113',
    'STATE': '05',
    'COUNTY': '113',
    'NAME': 'Polk',
    'LSAD': 'County',
    'CENSUSAREA': 857.679},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.465847, 34.352073],
      [-94.465425, 34.359548],
      [-94.464176, 34.402713],
      [-94.463816, 34.414465],
      [-94.463671, 34.419585],
      [-94.461149, 34.507457],
      [-94.460058, 34.545264],
      [-94.460052, 34.547869],
      [-94.4575, 34.634945],
      [-94.45753, 34.642961],
      [-94.454576, 34.728962],
      [-94.317659, 34.697408],
      [-94.018168, 34.692469],
      [-93.930509, 34.665608],
      [-93.935371, 34.350097],
      [-94.254668, 34.355481],
      [-94.243739, 34.192501],
      [-94.470292, 34.189864],
      [-94.465847, 34.352073]]]},
   'id': '05113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05115',
    'STATE': '05',
    'COUNTY': '115',
    'NAME': 'Pope',
    'LSAD': 'County',
    'CENSUSAREA': 812.548},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.896109, 35.170678],
      [-93.084678, 35.12739],
      [-93.156078, 35.235307],
      [-93.278293, 35.317402],
      [-93.282758, 35.318273],
      [-93.294201, 35.325319],
      [-93.299014, 35.327425],
      [-93.29591, 35.469915],
      [-93.223633, 35.468593],
      [-93.22117, 35.598938],
      [-93.1678, 35.597695],
      [-93.164452, 35.728831],
      [-92.951315, 35.724663],
      [-92.809763, 35.722401],
      [-92.813417, 35.549],
      [-92.850624, 35.46295],
      [-92.855, 35.172777],
      [-92.896109, 35.170678]]]},
   'id': '05115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05117',
    'STATE': '05',
    'COUNTY': '117',
    'NAME': 'Prairie',
    'LSAD': 'County',
    'CENSUSAREA': 647.958},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.465114, 35.089454],
      [-91.363778, 35.051891],
      [-91.36856, 34.912735],
      [-91.374765, 34.665964],
      [-91.446983, 34.667531],
      [-91.447795, 34.609185],
      [-91.37782, 34.56348],
      [-91.594429, 34.56805],
      [-91.59552, 34.48051],
      [-91.678037, 34.48192],
      [-91.638531, 34.626093],
      [-91.700828, 34.672029],
      [-91.693705, 34.919605],
      [-91.803703, 34.921524],
      [-91.802505, 35.030425],
      [-91.695463, 35.062344],
      [-91.5851, 35.025234],
      [-91.584005, 35.091584],
      [-91.465114, 35.089454]]]},
   'id': '05117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05119',
    'STATE': '05',
    'COUNTY': '119',
    'NAME': 'Pulaski',
    'LSAD': 'County',
    'CENSUSAREA': 759.763},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.245818, 34.493506],
      [-92.244209, 34.58089],
      [-92.348749, 34.58229],
      [-92.346814, 34.625611],
      [-92.445148, 34.62694],
      [-92.443265, 34.672041],
      [-92.551963, 34.689432],
      [-92.549856, 34.761699],
      [-92.654324, 34.764541],
      [-92.651248, 34.851682],
      [-92.739779, 34.853459],
      [-92.753626, 34.911248],
      [-92.544341, 34.953319],
      [-92.229893, 34.927558],
      [-92.227541, 35.014484],
      [-92.121336, 35.01221],
      [-92.070805, 35.011802],
      [-92.078711, 34.729983],
      [-92.113313, 34.622966],
      [-92.02954, 34.621403],
      [-92.029996, 34.489352],
      [-92.208041, 34.492765],
      [-92.245818, 34.493506]]]},
   'id': '05119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05121',
    'STATE': '05',
    'COUNTY': '121',
    'NAME': 'Randolph',
    'LSAD': 'County',
    'CENSUSAREA': 652.191},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.407137, 36.497112],
      [-91.405141, 36.497165],
      [-91.404915, 36.49712],
      [-91.227398, 36.497617],
      [-91.218645, 36.497564],
      [-91.21736, 36.497511],
      [-91.126529, 36.497712],
      [-91.096277, 36.497893],
      [-91.09588, 36.49787],
      [-91.017974, 36.498062],
      [-91.008558, 36.49827],
      [-90.963063, 36.498418],
      [-90.960648, 36.498426],
      [-90.87922, 36.498378],
      [-90.876867, 36.498423],
      [-90.876567, 36.498313],
      [-90.873775, 36.498074],
      [-90.850434, 36.498548],
      [-90.784398, 36.498524],
      [-90.748637, 36.412764],
      [-90.751803, 36.27996],
      [-90.806615, 36.266865],
      [-90.809816, 36.149567],
      [-91.082681, 36.150871],
      [-91.25892, 36.25788],
      [-91.308733, 36.420363],
      [-91.407137, 36.497112]]]},
   'id': '05121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05123',
    'STATE': '05',
    'COUNTY': '123',
    'NAME': 'St. Francis',
    'LSAD': 'County',
    'CENSUSAREA': 634.771},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.40854, 34.904121],
      [-91.099201, 34.911796],
      [-91.099961, 34.86712],
      [-91.152457, 34.911847],
      [-91.149842, 35.00247],
      [-91.04543, 35.00104],
      [-91.04267, 35.148189],
      [-90.502993, 35.144214],
      [-90.400434, 35.148196],
      [-90.40854, 34.904121]]]},
   'id': '05123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05125',
    'STATE': '05',
    'COUNTY': '125',
    'NAME': 'Saline',
    'LSAD': 'County',
    'CENSUSAREA': 723.604},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.245818, 34.493506],
      [-92.403557, 34.495795],
      [-92.40468, 34.451916],
      [-92.589418, 34.455641],
      [-92.668711, 34.414237],
      [-92.685284, 34.473105],
      [-92.793197, 34.503606],
      [-92.808028, 34.590406],
      [-92.875456, 34.635124],
      [-92.979902, 34.637222],
      [-92.96925, 34.772266],
      [-93.075178, 34.771892],
      [-93.073877, 34.858091],
      [-92.739779, 34.853459],
      [-92.651248, 34.851682],
      [-92.654324, 34.764541],
      [-92.549856, 34.761699],
      [-92.551963, 34.689432],
      [-92.443265, 34.672041],
      [-92.445148, 34.62694],
      [-92.346814, 34.625611],
      [-92.348749, 34.58229],
      [-92.244209, 34.58089],
      [-92.245818, 34.493506]]]},
   'id': '05125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05127',
    'STATE': '05',
    'COUNTY': '127',
    'NAME': 'Scott',
    'LSAD': 'County',
    'CENSUSAREA': 892.32},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.449253, 34.895869],
      [-94.447889, 34.933941],
      [-94.230524, 34.968527],
      [-94.222869, 35.079115],
      [-94.140571, 35.099678],
      [-94.074347, 35.026585],
      [-93.704885, 35.019715],
      [-93.710297, 34.745296],
      [-93.870197, 34.712699],
      [-93.930509, 34.665608],
      [-94.018168, 34.692469],
      [-94.317659, 34.697408],
      [-94.454576, 34.728962],
      [-94.450233, 34.855413],
      [-94.45014, 34.858694],
      [-94.450065, 34.861335],
      [-94.44963, 34.875253],
      [-94.449058, 34.890556],
      [-94.449086, 34.894152],
      [-94.449253, 34.895869]]]},
   'id': '05127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05129',
    'STATE': '05',
    'COUNTY': '129',
    'NAME': 'Searcy',
    'LSAD': 'County',
    'CENSUSAREA': 666.095},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.414324, 35.975865],
      [-92.416719, 35.78859],
      [-92.629837, 35.790823],
      [-92.631207, 35.718365],
      [-92.809763, 35.722401],
      [-92.951315, 35.724663],
      [-92.944666, 36.115123],
      [-92.890695, 36.114132],
      [-92.837776, 36.070124],
      [-92.411502, 36.062756],
      [-92.412542, 36.027228],
      [-92.414324, 35.975865]]]},
   'id': '05129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05131',
    'STATE': '05',
    'COUNTY': '131',
    'NAME': 'Sebastian',
    'LSAD': 'County',
    'CENSUSAREA': 531.911},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.433742, 35.386467],
      [-94.433915, 35.387391],
      [-94.431215, 35.39429],
      [-94.431789, 35.397659],
      [-94.403468, 35.449994],
      [-94.321186, 35.357476],
      [-94.223751, 35.353694],
      [-94.074895, 35.445403],
      [-94.082798, 35.215913],
      [-94.028547, 35.213826],
      [-94.031236, 35.140857],
      [-94.139307, 35.143361],
      [-94.140571, 35.099678],
      [-94.222869, 35.079115],
      [-94.230524, 34.968527],
      [-94.447889, 34.933941],
      [-94.441232, 35.119724],
      [-94.440754, 35.128806],
      [-94.43955, 35.169037],
      [-94.439509, 35.171807],
      [-94.439056, 35.193588],
      [-94.439084, 35.197298],
      [-94.43847, 35.208587],
      [-94.438247, 35.210992],
      [-94.437774, 35.239271],
      [-94.437578, 35.242202],
      [-94.435812, 35.2713],
      [-94.435706, 35.274267],
      [-94.435316, 35.275893],
      [-94.43528, 35.287485],
      [-94.43517, 35.291494],
      [-94.434115, 35.306493],
      [-94.431815, 35.362891],
      [-94.432685, 35.380806],
      [-94.433742, 35.386467]]]},
   'id': '05131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05133',
    'STATE': '05',
    'COUNTY': '133',
    'NAME': 'Sevier',
    'LSAD': 'County',
    'CENSUSAREA': 565.126},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.477318, 33.940932],
      [-94.477038, 33.953838],
      [-94.476957, 33.957365],
      [-94.474895, 34.019655],
      [-94.474896, 34.021838],
      [-94.474896, 34.021877],
      [-94.470292, 34.189864],
      [-94.243739, 34.192501],
      [-94.090096, 34.187141],
      [-94.070085, 33.926994],
      [-93.964699, 33.796211],
      [-93.958828, 33.750994],
      [-94.040849, 33.782046],
      [-94.237445, 33.802074],
      [-94.477318, 33.940932]]]},
   'id': '05133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05135',
    'STATE': '05',
    'COUNTY': '135',
    'NAME': 'Sharp',
    'LSAD': 'County',
    'CENSUSAREA': 604.439},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.407137, 36.497112],
      [-91.308733, 36.420363],
      [-91.25892, 36.25788],
      [-91.349834, 36.230967],
      [-91.35723, 35.890621],
      [-91.464678, 35.892497],
      [-91.463198, 35.93681],
      [-91.710552, 35.941759],
      [-91.682277, 36.000535],
      [-91.691435, 36.253301],
      [-91.566078, 36.249945],
      [-91.565866, 36.3374],
      [-91.454437, 36.335465],
      [-91.450005, 36.497538],
      [-91.446284, 36.497469],
      [-91.436502, 36.497377],
      [-91.433298, 36.497262],
      [-91.407261, 36.497123],
      [-91.407137, 36.497112]]]},
   'id': '05135'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05137',
    'STATE': '05',
    'COUNTY': '137',
    'NAME': 'Stone',
    'LSAD': 'County',
    'CENSUSAREA': 606.405},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.19543, 36.132798],
      [-92.063576, 36.024372],
      [-92.108622, 35.931328],
      [-91.95302, 35.931644],
      [-91.849448, 35.867411],
      [-91.870983, 35.810562],
      [-91.837179, 35.704932],
      [-92.24052, 35.71219],
      [-92.418408, 35.716046],
      [-92.416719, 35.78859],
      [-92.414324, 35.975865],
      [-92.30722, 35.974022],
      [-92.304951, 36.06108],
      [-92.197649, 36.059287],
      [-92.19543, 36.132798]]]},
   'id': '05137'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05139',
    'STATE': '05',
    'COUNTY': '139',
    'NAME': 'Union',
    'LSAD': 'County',
    'CENSUSAREA': 1039.214},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.724743, 33.014347],
      [-92.724994, 33.014351],
      [-92.733197, 33.014347],
      [-92.830798, 33.015661],
      [-92.844073, 33.016034],
      [-92.844286, 33.01607],
      [-92.854167, 33.016132],
      [-92.86751, 33.016062],
      [-92.946553, 33.016807],
      [-92.971137, 33.017192],
      [-92.988708, 33.017298],
      [-92.978469, 33.37728],
      [-92.660238, 33.355613],
      [-92.567156, 33.3672],
      [-92.445399, 33.274859],
      [-92.350432, 33.298941],
      [-92.22406, 33.251782],
      [-92.137527, 33.162956],
      [-92.109611, 33.034054],
      [-92.069105, 33.008163],
      [-92.222825, 33.00908],
      [-92.292664, 33.010103],
      [-92.335893, 33.010349],
      [-92.362865, 33.010628],
      [-92.37029, 33.010717],
      [-92.469762, 33.01201],
      [-92.501383, 33.01216],
      [-92.503776, 33.012161],
      [-92.711289, 33.014307],
      [-92.715884, 33.014398],
      [-92.723553, 33.014328],
      [-92.724743, 33.014347]]]},
   'id': '05139'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05141',
    'STATE': '05',
    'COUNTY': '141',
    'NAME': 'Van Buren',
    'LSAD': 'County',
    'CENSUSAREA': 708.143},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.850624, 35.46295],
      [-92.813417, 35.549],
      [-92.809763, 35.722401],
      [-92.631207, 35.718365],
      [-92.629837, 35.790823],
      [-92.416719, 35.78859],
      [-92.418408, 35.716046],
      [-92.24052, 35.71219],
      [-92.252759, 35.363718],
      [-92.481469, 35.368392],
      [-92.479268, 35.455357],
      [-92.850624, 35.46295]]]},
   'id': '05141'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05143',
    'STATE': '05',
    'COUNTY': '143',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 941.966},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.962892, 35.76093],
      [-94.124871, 35.750426],
      [-94.492932, 35.759166],
      [-94.493362, 35.761892],
      [-94.494549, 35.768303],
      [-94.499045, 35.79346],
      [-94.499647, 35.79691],
      [-94.500526, 35.802642],
      [-94.500764, 35.80382],
      [-94.501162, 35.80643],
      [-94.503011, 35.81721],
      [-94.504438, 35.826369],
      [-94.505642, 35.833628],
      [-94.507631, 35.845901],
      [-94.522658, 35.93425],
      [-94.522658, 35.934799],
      [-94.522634, 35.934892],
      [-94.52291, 35.936127],
      [-94.524344, 35.94405],
      [-94.52464, 35.945727],
      [-94.528162, 35.965665],
      [-94.528305, 35.966054],
      [-94.532071, 35.987852],
      [-94.533646, 35.996804],
      [-94.534852, 36.002678],
      [-94.535724, 36.007807],
      [-94.547715, 36.077271],
      [-94.547871, 36.078281],
      [-94.552184, 36.102235],
      [-94.391125, 36.099396],
      [-94.333565, 36.214727],
      [-93.973298, 36.203852],
      [-93.887775, 36.235046],
      [-93.944177, 36.091103],
      [-93.962892, 35.76093]]]},
   'id': '05143'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05145',
    'STATE': '05',
    'COUNTY': '145',
    'NAME': 'White',
    'LSAD': 'County',
    'CENSUSAREA': 1035.075},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.465114, 35.089454],
      [-91.584005, 35.091584],
      [-91.5851, 35.025234],
      [-91.695463, 35.062344],
      [-91.802505, 35.030425],
      [-91.87888, 35.024577],
      [-92.013056, 35.076317],
      [-92.119719, 35.066493],
      [-92.111463, 35.362725],
      [-91.851958, 35.358287],
      [-91.850144, 35.436442],
      [-91.795855, 35.455574],
      [-91.793958, 35.534114],
      [-91.58188, 35.530447],
      [-91.584687, 35.442311],
      [-91.347257, 35.439106],
      [-91.438202, 35.369378],
      [-91.390375, 35.251624],
      [-91.371035, 35.262981],
      [-91.465114, 35.089454]]]},
   'id': '05145'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05147',
    'STATE': '05',
    'COUNTY': '147',
    'NAME': 'Woodruff',
    'LSAD': 'County',
    'CENSUSAREA': 586.791},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.36856, 34.912735],
      [-91.363778, 35.051891],
      [-91.465114, 35.089454],
      [-91.371035, 35.262981],
      [-91.390375, 35.251624],
      [-91.438202, 35.369378],
      [-91.347257, 35.439106],
      [-91.252927, 35.445845],
      [-91.251555, 35.357561],
      [-91.039783, 35.354256],
      [-91.04267, 35.148189],
      [-91.04543, 35.00104],
      [-91.149842, 35.00247],
      [-91.293111, 34.985091],
      [-91.29479, 34.912452],
      [-91.36856, 34.912735]]]},
   'id': '05147'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US05149',
    'STATE': '05',
    'COUNTY': '149',
    'NAME': 'Yell',
    'LSAD': 'County',
    'CENSUSAREA': 929.984},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.896109, 35.170678],
      [-93.040525, 35.076923],
      [-93.181478, 34.97639],
      [-93.288284, 34.860992],
      [-93.287785, 34.773193],
      [-93.394456, 34.772355],
      [-93.394289, 34.743393],
      [-93.710297, 34.745296],
      [-93.704885, 35.019715],
      [-93.706692, 35.134943],
      [-93.529838, 35.145441],
      [-93.457022, 35.215782],
      [-93.279959, 35.212552],
      [-93.278293, 35.317402],
      [-93.156078, 35.235307],
      [-93.084678, 35.12739],
      [-92.896109, 35.170678]]]},
   'id': '05149'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06001',
    'STATE': '06',
    'COUNTY': '001',
    'NAME': 'Alameda',
    'LSAD': 'County',
    'CENSUSAREA': 739.017},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.855762, 37.484537],
      [-122.045271, 37.460276],
      [-122.052648, 37.459656],
      [-122.081473, 37.477838],
      [-122.109574, 37.497637],
      [-122.116112, 37.505386],
      [-122.111344, 37.50758],
      [-122.111998, 37.528851],
      [-122.128688, 37.560594],
      [-122.133924, 37.562885],
      [-122.137524, 37.567467],
      [-122.144396, 37.581866],
      [-122.147014, 37.588411],
      [-122.145378, 37.600846],
      [-122.14636, 37.607391],
      [-122.152905, 37.640771],
      [-122.163049, 37.667933],
      [-122.170904, 37.676114],
      [-122.179085, 37.680041],
      [-122.197411, 37.692804],
      [-122.203971, 37.697769],
      [-122.213774, 37.698695],
      [-122.221628, 37.705567],
      [-122.246826, 37.72193],
      [-122.255989, 37.735674],
      [-122.257953, 37.739601],
      [-122.257134, 37.745001],
      [-122.252226, 37.747619],
      [-122.244938, 37.750294],
      [-122.242638, 37.753744],
      [-122.253753, 37.761218],
      [-122.264101, 37.764667],
      [-122.275408, 37.76735],
      [-122.286139, 37.769458],
      [-122.293996, 37.770416],
      [-122.304345, 37.774632],
      [-122.318909, 37.77904],
      [-122.329159, 37.783173],
      [-122.33079, 37.78383],
      [-122.330963, 37.786035],
      [-122.331748, 37.796052],
      [-122.33555, 37.799538],
      [-122.335675, 37.799652],
      [-122.333711, 37.809797],
      [-122.323567, 37.823214],
      [-122.317676, 37.826814],
      [-122.306222, 37.827469],
      [-122.303931, 37.830087],
      [-122.301313, 37.847758],
      [-122.310477, 37.873938],
      [-122.309986, 37.892755],
      [-122.313258, 37.89701],
      [-122.313496, 37.897211],
      [-122.310881, 37.897825],
      [-122.30618, 37.898225],
      [-122.185977, 37.820726],
      [-122.004228, 37.770058],
      [-122.010771, 37.755127],
      [-122.001071, 37.739028],
      [-121.977999, 37.729579],
      [-121.96077, 37.718629],
      [-121.910138, 37.73046],
      [-121.881567, 37.737328],
      [-121.623724, 37.799291],
      [-121.55916, 37.818927],
      [-121.556936, 37.817218],
      [-121.556655, 37.542732],
      [-121.471925, 37.481783],
      [-121.472648, 37.48217],
      [-121.855762, 37.484537]]]},
   'id': '06001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06003',
    'STATE': '06',
    'COUNTY': '003',
    'NAME': 'Alpine',
    'LSAD': 'County',
    'CENSUSAREA': 738.332},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.072392, 38.702767],
      [-119.880303, 38.864776],
      [-119.904315, 38.933324],
      [-119.587679, 38.714734],
      [-119.587066, 38.714345],
      [-119.585437, 38.713212],
      [-119.619066, 38.603529],
      [-119.542862, 38.499694],
      [-119.639205, 38.32688],
      [-119.753481, 38.416759],
      [-119.884749, 38.356185],
      [-120.019951, 38.433521],
      [-120.072484, 38.509869],
      [-120.072392, 38.702767]]]},
   'id': '06003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06005',
    'STATE': '06',
    'COUNTY': '005',
    'NAME': 'Amador',
    'LSAD': 'County',
    'CENSUSAREA': 594.583},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.995497, 38.225405],
      [-121.027084, 38.300252],
      [-121.027507, 38.508292],
      [-120.813554, 38.562193],
      [-120.627604, 38.503143],
      [-120.510596, 38.511467],
      [-120.301721, 38.549109],
      [-120.098322, 38.709029],
      [-120.072392, 38.702767],
      [-120.072484, 38.509869],
      [-120.380707, 38.461042],
      [-120.423215, 38.473322],
      [-120.893792, 38.221277],
      [-120.995497, 38.225405]]]},
   'id': '06005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06007',
    'STATE': '06',
    'COUNTY': '007',
    'NAME': 'Butte',
    'LSAD': 'County',
    'CENSUSAREA': 1636.464},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.076695, 39.597264],
      [-121.149907, 39.526446],
      [-121.305122, 39.519585],
      [-121.333427, 39.468729],
      [-121.407527, 39.339754],
      [-121.62376, 39.295621],
      [-121.908269, 39.303878],
      [-121.890013, 39.383864],
      [-121.856532, 39.536904],
      [-121.994021, 39.533926],
      [-121.950951, 39.715004],
      [-122.046471, 39.797648],
      [-122.044865, 39.883771],
      [-121.804041, 39.884344],
      [-121.703241, 39.98423],
      [-121.646032, 39.982527],
      [-121.586407, 40.100522],
      [-121.436886, 40.151905],
      [-121.366818, 40.086054],
      [-121.430012, 39.914833],
      [-121.360516, 39.84074],
      [-121.076695, 39.597264]]]},
   'id': '06007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06009',
    'STATE': '06',
    'COUNTY': '009',
    'NAME': 'Calaveras',
    'LSAD': 'County',
    'CENSUSAREA': 1020.012},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.652673, 37.831422],
      [-120.926449, 38.077421],
      [-120.93885, 38.088321],
      [-120.995497, 38.225405],
      [-120.893792, 38.221277],
      [-120.423215, 38.473322],
      [-120.380707, 38.461042],
      [-120.072484, 38.509869],
      [-120.019951, 38.433521],
      [-120.176177, 38.374014],
      [-120.504516, 37.991144],
      [-120.534814, 37.991174],
      [-120.514952, 37.95339],
      [-120.652673, 37.831422]]]},
   'id': '06009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06011',
    'STATE': '06',
    'COUNTY': '011',
    'NAME': 'Colusa',
    'LSAD': 'County',
    'CENSUSAREA': 1150.731},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.908269, 39.303878],
      [-121.945509, 39.180959],
      [-121.847964, 39.070817],
      [-121.835488, 38.924481],
      [-122.337967, 38.923945],
      [-122.340172, 38.924246],
      [-122.492215, 39.054092],
      [-122.476083, 39.172609],
      [-122.680927, 39.238726],
      [-122.775043, 39.311778],
      [-122.78509, 39.382975],
      [-122.739062, 39.383266],
      [-122.136006, 39.385494],
      [-122.136161, 39.414499],
      [-121.890013, 39.383864],
      [-121.908269, 39.303878]]]},
   'id': '06011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06013',
    'STATE': '06',
    'COUNTY': '013',
    'NAME': 'Contra Costa',
    'LSAD': 'County',
    'CENSUSAREA': 715.937},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.910138, 37.73046],
      [-121.96077, 37.718629],
      [-121.977999, 37.729579],
      [-122.001071, 37.739028],
      [-122.010771, 37.755127],
      [-122.004228, 37.770058],
      [-122.185977, 37.820726],
      [-122.30618, 37.898225],
      [-122.310881, 37.897825],
      [-122.313496, 37.897211],
      [-122.32373, 37.905845],
      [-122.33453, 37.908791],
      [-122.35711, 37.908791],
      [-122.362346, 37.904209],
      [-122.367582, 37.903882],
      [-122.378709, 37.905191],
      [-122.385908, 37.908136],
      [-122.389181, 37.9101],
      [-122.39049, 37.922535],
      [-122.395071, 37.927117],
      [-122.401289, 37.928426],
      [-122.413725, 37.937262],
      [-122.417371, 37.943513],
      [-122.430087, 37.963115],
      [-122.42976, 37.965405],
      [-122.415361, 37.963115],
      [-122.411761, 37.960497],
      [-122.408383, 37.957544],
      [-122.399832, 37.956009],
      [-122.367582, 37.978168],
      [-122.361905, 37.989991],
      [-122.363001, 37.994375],
      [-122.366928, 37.998458],
      [-122.368891, 38.007948],
      [-122.367909, 38.01253],
      [-122.363655, 38.014166],
      [-122.359493, 38.009941],
      [-122.340093, 38.003694],
      [-122.331912, 38.00533],
      [-122.321112, 38.012857],
      [-122.315549, 38.013511],
      [-122.300823, 38.010893],
      [-122.283478, 38.022674],
      [-122.262861, 38.0446],
      [-122.262861, 38.051473],
      [-122.266669, 38.06007],
      [-122.123973, 38.035717],
      [-122.050386, 38.060198],
      [-121.869469, 38.054519],
      [-121.865189, 38.059909],
      [-121.862462, 38.06603],
      [-121.737824, 38.02663],
      [-121.679265, 38.089319],
      [-121.580022, 38.094414],
      [-121.579943, 37.976113],
      [-121.574823, 37.973025],
      [-121.569889, 37.957495],
      [-121.56364, 37.94611],
      [-121.561937, 37.937612],
      [-121.55987, 37.920862],
      [-121.569113, 37.901521],
      [-121.574849, 37.885021],
      [-121.575463, 37.863118],
      [-121.56937, 37.858881],
      [-121.561813, 37.857135],
      [-121.549517, 37.856986],
      [-121.538026, 37.849622],
      [-121.536595, 37.844723],
      [-121.538931, 37.839563],
      [-121.550971, 37.831155],
      [-121.556936, 37.817218],
      [-121.55916, 37.818927],
      [-121.623724, 37.799291],
      [-121.881567, 37.737328],
      [-121.910138, 37.73046]]]},
   'id': '06013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06015',
    'STATE': '06',
    'COUNTY': '015',
    'NAME': 'Del Norte',
    'LSAD': 'County',
    'CENSUSAREA': 1006.373},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-124.065521, 41.464739],
      [-124.066057, 41.470258],
      [-124.075917, 41.501757],
      [-124.081427, 41.511228],
      [-124.081987, 41.547761],
      [-124.092404, 41.553615],
      [-124.101123, 41.569192],
      [-124.101403, 41.578524],
      [-124.097385, 41.585251],
      [-124.100961, 41.602499],
      [-124.114413, 41.616768],
      [-124.116037, 41.628849],
      [-124.120225, 41.640354],
      [-124.135552, 41.657307],
      [-124.139354, 41.671652],
      [-124.138373, 41.678881],
      [-124.143479, 41.709284],
      [-124.147412, 41.717955],
      [-124.154246, 41.728801],
      [-124.164716, 41.740126],
      [-124.17739, 41.745756],
      [-124.185363, 41.739351],
      [-124.19104, 41.736079],
      [-124.194953, 41.736778],
      [-124.203843, 41.747035],
      [-124.23972, 41.7708],
      [-124.242288, 41.772034],
      [-124.248704, 41.771459],
      [-124.255994, 41.783014],
      [-124.245027, 41.7923],
      [-124.230678, 41.818681],
      [-124.219592, 41.846432],
      [-124.208439, 41.888192],
      [-124.203402, 41.940964],
      [-124.204948, 41.983441],
      [-124.211605, 41.99846],
      [-124.100921, 41.996956],
      [-124.100216, 41.996842],
      [-124.087827, 41.996891],
      [-124.086661, 41.996869],
      [-123.821472, 41.995473],
      [-123.624554, 41.999837],
      [-123.518075, 42.000436],
      [-123.565442, 41.903141],
      [-123.642812, 41.889353],
      [-123.703768, 41.829117],
      [-123.660205, 41.714055],
      [-123.719089, 41.595258],
      [-123.612395, 41.448954],
      [-123.661363, 41.38209],
      [-123.770239, 41.380776],
      [-123.770551, 41.464193],
      [-124.065521, 41.464739]]]},
   'id': '06015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06017',
    'STATE': '06',
    'COUNTY': '017',
    'NAME': 'El Dorado',
    'LSAD': 'County',
    'CENSUSAREA': 1707.883},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.141009, 38.71198],
      [-121.040406, 38.915651],
      [-120.746395, 39.010352],
      [-120.642458, 38.944404],
      [-120.556321, 38.915164],
      [-120.470985, 38.965507],
      [-120.43524, 39.028397],
      [-120.184098, 39.031014],
      [-120.143663, 39.067285],
      [-120.002461, 39.067489],
      [-120.001014, 38.999574],
      [-119.904315, 38.933324],
      [-119.880303, 38.864776],
      [-120.072392, 38.702767],
      [-120.098322, 38.709029],
      [-120.301721, 38.549109],
      [-120.510596, 38.511467],
      [-120.627604, 38.503143],
      [-120.813554, 38.562193],
      [-121.027507, 38.508292],
      [-121.118617, 38.717118],
      [-121.133264, 38.705427],
      [-121.141009, 38.71198]]]},
   'id': '06017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06019',
    'STATE': '06',
    'COUNTY': '019',
    'NAME': 'Fresno',
    'LSAD': 'County',
    'CENSUSAREA': 5957.991},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-119.573194, 36.488835],
      [-119.66629, 36.41896],
      [-119.905119, 36.401741],
      [-119.959227, 36.400975],
      [-119.95921, 36.181403],
      [-120.315068, 35.907186],
      [-120.648784, 36.10799],
      [-120.62691, 36.203227],
      [-120.678582, 36.267319],
      [-120.596562, 36.328488],
      [-120.603706, 36.488242],
      [-120.918731, 36.740381],
      [-120.65595, 36.952832],
      [-120.590566, 36.952641],
      [-120.541696, 37.044505],
      [-120.422187, 36.840139],
      [-120.229179, 36.769687],
      [-120.132898, 36.809841],
      [-120.079458, 36.825345],
      [-120.027775, 36.814505],
      [-120.013334, 36.828228],
      [-119.932551, 36.84299],
      [-119.823421, 36.848333],
      [-119.733852, 36.948558],
      [-119.537677, 37.104019],
      [-119.559412, 37.143619],
      [-119.470844, 37.110548],
      [-119.43306, 37.161516],
      [-119.361916, 37.167849],
      [-119.330573, 37.205791],
      [-119.335189, 37.310774],
      [-119.286658, 37.374943],
      [-119.022363, 37.585737],
      [-118.775014, 37.463052],
      [-118.786736, 37.34338],
      [-118.716016, 37.328208],
      [-118.665167, 37.261009],
      [-118.654593, 37.141826],
      [-118.437137, 37.059818],
      [-118.360586, 36.744773],
      [-118.982441, 36.741646],
      [-118.984779, 36.657147],
      [-119.304625, 36.660606],
      [-119.305102, 36.573725],
      [-119.466322, 36.575238],
      [-119.573194, 36.488835]]]},
   'id': '06019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06021',
    'STATE': '06',
    'COUNTY': '021',
    'NAME': 'Glenn',
    'LSAD': 'County',
    'CENSUSAREA': 1313.947},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.937654, 39.798156],
      [-122.046471, 39.797648],
      [-121.950951, 39.715004],
      [-121.994021, 39.533926],
      [-121.856532, 39.536904],
      [-121.890013, 39.383864],
      [-122.136161, 39.414499],
      [-122.136006, 39.385494],
      [-122.739062, 39.383266],
      [-122.735639, 39.580668],
      [-122.885352, 39.580108],
      [-122.892676, 39.708898],
      [-122.937654, 39.798156]]]},
   'id': '06021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06023',
    'STATE': '06',
    'COUNTY': '023',
    'NAME': 'Humboldt',
    'LSAD': 'County',
    'CENSUSAREA': 3567.987},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-123.544458, 40.001923],
      [-124.023938, 40.001284],
      [-124.035904, 40.013319],
      [-124.056408, 40.024305],
      [-124.065069, 40.024785],
      [-124.068908, 40.021307],
      [-124.072509, 40.022657],
      [-124.079983, 40.029773],
      [-124.080709, 40.06611],
      [-124.087086, 40.078442],
      [-124.110549, 40.103765],
      [-124.139952, 40.11635],
      [-124.170767, 40.124207],
      [-124.187874, 40.130542],
      [-124.214895, 40.160902],
      [-124.231095, 40.171581],
      [-124.258405, 40.184277],
      [-124.296497, 40.208816],
      [-124.320912, 40.226617],
      [-124.327691, 40.23737],
      [-124.34307, 40.243979],
      [-124.352715, 40.250453],
      [-124.363414, 40.260974],
      [-124.363634, 40.276212],
      [-124.347853, 40.314634],
      [-124.353124, 40.331425],
      [-124.356595, 40.335016],
      [-124.362796, 40.350046],
      [-124.365357, 40.374855],
      [-124.373599, 40.392923],
      [-124.379082, 40.398828],
      [-124.391496, 40.407047],
      [-124.402623, 40.422105],
      [-124.409591, 40.438076],
      [-124.408601, 40.443201],
      [-124.396642, 40.462119],
      [-124.38494, 40.48982],
      [-124.383224, 40.499852],
      [-124.387023, 40.504954],
      [-124.382816, 40.519],
      [-124.379096, 40.522865],
      [-124.363545, 40.548698],
      [-124.329404, 40.61643],
      [-124.315141, 40.639526],
      [-124.312558, 40.641333],
      [-124.289119, 40.67963],
      [-124.248406, 40.735166],
      [-124.228244, 40.76939],
      [-124.201921, 40.805111],
      [-124.176715, 40.843618],
      [-124.158322, 40.876069],
      [-124.137066, 40.925732],
      [-124.118147, 40.989263],
      [-124.112165, 41.028173],
      [-124.125448, 41.048504],
      [-124.132946, 41.052482],
      [-124.138217, 41.054342],
      [-124.142867, 41.054032],
      [-124.147216, 41.052884],
      [-124.148939, 41.051467],
      [-124.151266, 41.051101],
      [-124.153622, 41.05355],
      [-124.154028, 41.059923],
      [-124.154513, 41.087159],
      [-124.160556, 41.099011],
      [-124.159065, 41.121957],
      [-124.165414, 41.129822],
      [-124.163988, 41.138675],
      [-124.158539, 41.143021],
      [-124.149674, 41.140845],
      [-124.1438, 41.144686],
      [-124.122677, 41.189726],
      [-124.106986, 41.229678],
      [-124.106389, 41.240682],
      [-124.092284, 41.287695],
      [-124.079015, 41.347135],
      [-124.072294, 41.374844],
      [-124.063076, 41.439579],
      [-124.065521, 41.464739],
      [-123.770551, 41.464193],
      [-123.770239, 41.380776],
      [-123.661363, 41.38209],
      [-123.474085, 41.366193],
      [-123.408291, 41.179944],
      [-123.481457, 40.914957],
      [-123.560163, 40.950257],
      [-123.623826, 40.929421],
      [-123.55985, 40.829584],
      [-123.544059, 40.739386],
      [-123.544458, 40.001923]]]},
   'id': '06023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06025',
    'STATE': '06',
    'COUNTY': '025',
    'NAME': 'Imperial',
    'LSAD': 'County',
    'CENSUSAREA': 4176.603},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.103137, 32.904115],
      [-116.08109, 33.074833],
      [-116.085165, 33.425932],
      [-115.467506, 33.426992],
      [-114.627125, 33.433554],
      [-114.665278, 33.415358],
      [-114.721233, 33.396912],
      [-114.700103, 33.341045],
      [-114.672088, 33.258499],
      [-114.67536, 33.185489],
      [-114.679359, 33.159519],
      [-114.687074, 33.142196],
      [-114.696829, 33.131209],
      [-114.706175, 33.105335],
      [-114.707819, 33.091102],
      [-114.675104, 33.047532],
      [-114.62387, 33.02872],
      [-114.606282, 33.025703],
      [-114.589778, 33.026228],
      [-114.584765, 33.028231],
      [-114.578287, 33.035375],
      [-114.571653, 33.036624],
      [-114.523578, 33.030961],
      [-114.516912, 33.026871],
      [-114.511343, 33.023455],
      [-114.468605, 32.971649],
      [-114.46289, 32.905797],
      [-114.465715, 32.87942],
      [-114.465715, 32.879191],
      [-114.496284, 32.822326],
      [-114.496827, 32.822119],
      [-114.615733, 32.729427],
      [-114.615585, 32.728446],
      [-114.65826, 32.733799],
      [-114.65884, 32.73383],
      [-114.677091, 32.736218],
      [-114.678632, 32.736614],
      [-114.719633, 32.718763],
      [-115.465164, 32.6671],
      [-115.875842, 32.636424],
      [-116.106159, 32.618328],
      [-116.103137, 32.904115]]]},
   'id': '06025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06027',
    'STATE': '06',
    'COUNTY': '027',
    'NAME': 'Inyo',
    'LSAD': 'County',
    'CENSUSAREA': 10180.879},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.832726, 37.464929],
      [-117.500909, 37.220282],
      [-117.166187, 36.970862],
      [-117.000895, 36.847694],
      [-116.488233, 36.459097],
      [-116.097216, 36.158346],
      [-116.093601, 36.155805],
      [-115.912858, 36.015359],
      [-115.892975, 35.999967],
      [-115.84608, 35.963596],
      [-115.689302, 35.842003],
      [-115.648029, 35.809629],
      [-115.648925, 35.809128],
      [-115.735745, 35.809097],
      [-115.735891, 35.79362],
      [-117.632996, 35.797251],
      [-118.008043, 35.789161],
      [-117.998258, 35.868782],
      [-117.980761, 35.867515],
      [-118.003577, 35.983718],
      [-118.033611, 36.008944],
      [-118.127147, 36.279656],
      [-118.100317, 36.346137],
      [-118.21482, 36.435036],
      [-118.274624, 36.597334],
      [-118.366328, 36.691635],
      [-118.360586, 36.744773],
      [-118.437137, 37.059818],
      [-118.654593, 37.141826],
      [-118.665167, 37.261009],
      [-118.716016, 37.328208],
      [-118.786736, 37.34338],
      [-118.775014, 37.463052],
      [-117.832726, 37.464929]]]},
   'id': '06027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06029',
    'STATE': '06',
    'COUNTY': '029',
    'NAME': 'Kern',
    'LSAD': 'County',
    'CENSUSAREA': 8131.916},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.667292, 34.822526],
      [-118.140074, 34.82078],
      [-118.854253, 34.817772],
      [-118.881364, 34.790629],
      [-118.976721, 34.812199],
      [-119.243645, 34.814178],
      [-119.276946, 34.879675],
      [-119.442352, 34.901274],
      [-119.472754, 34.901174],
      [-119.472719, 35.076885],
      [-119.560975, 35.087673],
      [-119.553641, 35.179975],
      [-119.667056, 35.174809],
      [-119.666663, 35.262527],
      [-119.809449, 35.263584],
      [-119.809346, 35.350865],
      [-119.880172, 35.351211],
      [-119.880045, 35.439133],
      [-119.997392, 35.439495],
      [-119.997382, 35.468702],
      [-120.086674, 35.526554],
      [-120.085922, 35.614524],
      [-120.193918, 35.614359],
      [-120.193892, 35.726513],
      [-120.193934, 35.749393],
      [-120.194053, 35.749964],
      [-120.194146, 35.789204],
      [-119.538116, 35.789567],
      [-119.534559, 35.789758],
      [-119.214033, 35.790489],
      [-118.270456, 35.790009],
      [-118.008043, 35.789161],
      [-117.632996, 35.797251],
      [-117.651986, 35.709934],
      [-117.616195, 35.680856],
      [-117.630126, 35.564071],
      [-117.632011, 34.82227],
      [-117.667292, 34.822526]]]},
   'id': '06029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06031',
    'STATE': '06',
    'COUNTY': '031',
    'NAME': 'Kings',
    'LSAD': 'County',
    'CENSUSAREA': 1389.42},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-119.905119, 36.401741],
      [-119.66629, 36.41896],
      [-119.573194, 36.488835],
      [-119.528792, 36.401465],
      [-119.474892, 36.400953],
      [-119.474607, 36.269025],
      [-119.529358, 36.26985],
      [-119.538116, 35.789567],
      [-120.194146, 35.789204],
      [-120.213979, 35.789276],
      [-120.243275, 35.877669],
      [-120.315068, 35.907186],
      [-119.95921, 36.181403],
      [-119.959227, 36.400975],
      [-119.905119, 36.401741]]]},
   'id': '06031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06033',
    'STATE': '06',
    'COUNTY': '033',
    'NAME': 'Lake',
    'LSAD': 'County',
    'CENSUSAREA': 1256.464},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.627396, 38.667506],
      [-122.821592, 38.85014],
      [-122.948865, 38.90022],
      [-122.98664, 38.997283],
      [-123.028035, 38.996593],
      [-123.093013, 39.071994],
      [-123.077812, 39.173791],
      [-122.994839, 39.235924],
      [-123.075114, 39.407683],
      [-123.063181, 39.503539],
      [-122.89031, 39.529014],
      [-122.885352, 39.580108],
      [-122.735639, 39.580668],
      [-122.739062, 39.383266],
      [-122.78509, 39.382975],
      [-122.775043, 39.311778],
      [-122.680927, 39.238726],
      [-122.476083, 39.172609],
      [-122.492215, 39.054092],
      [-122.340172, 38.924246],
      [-122.395056, 38.864245],
      [-122.46389, 38.705203],
      [-122.627396, 38.667506]]]},
   'id': '06033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06035',
    'STATE': '06',
    'COUNTY': '035',
    'NAME': 'Lassen',
    'LSAD': 'County',
    'CENSUSAREA': 4541.184},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.001319, 39.72242],
      [-120.001319, 39.722416],
      [-120.147149, 39.707658],
      [-120.110627, 39.765779],
      [-120.108761, 39.93951],
      [-120.201264, 40.013474],
      [-120.209641, 40.086008],
      [-120.341385, 40.115243],
      [-120.445892, 40.176854],
      [-120.510817, 40.248945],
      [-120.652158, 40.307656],
      [-120.764403, 40.31601],
      [-120.928582, 40.191931],
      [-121.061493, 40.256417],
      [-121.061417, 40.446536],
      [-121.327826, 40.445367],
      [-121.319972, 40.905886],
      [-121.331786, 41.183886],
      [-119.999866, 41.183974],
      [-119.999358, 40.873101],
      [-119.999232, 40.867454],
      [-119.999231, 40.865899],
      [-119.995926, 40.499901],
      [-119.996155, 40.321838],
      [-119.996155, 40.32125],
      [-119.996182, 40.263532],
      [-119.996183, 40.262461],
      [-119.997124, 40.126363],
      [-119.997234, 40.091591],
      [-119.997175, 40.077245],
      [-119.997291, 40.071803],
      [-120.000607, 39.780779],
      [-120.000502, 39.779956],
      [-120.001319, 39.72242]]]},
   'id': '06035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06037',
    'STATE': '06',
    'COUNTY': '037',
    'NAME': 'Los Angeles',
    'LSAD': 'County',
    'CENSUSAREA': 4057.884},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-118.524531, 32.895488],
       [-118.535823, 32.90628],
       [-118.551134, 32.945155],
       [-118.560887, 32.957891],
       [-118.573522, 32.969183],
       [-118.586928, 33.008281],
       [-118.596037, 33.015357],
       [-118.606559, 33.01469],
       [-118.605534, 33.030999],
       [-118.594033, 33.035951],
       [-118.57516, 33.033961],
       [-118.569013, 33.029151],
       [-118.564445, 33.024914],
       [-118.564527, 33.018637],
       [-118.559171, 33.006291],
       [-118.540069, 32.980933],
       [-118.529228, 32.970921],
       [-118.496811, 32.933847],
       [-118.485288, 32.923545],
       [-118.479039, 32.920363],
       [-118.460623, 32.90951],
       [-118.446771, 32.895424],
       [-118.369984, 32.839273],
       [-118.353504, 32.821962],
       [-118.356541, 32.817311],
       [-118.36053, 32.819921],
       [-118.379968, 32.824545],
       [-118.387375, 32.825327],
       [-118.394565, 32.823978],
       [-118.401268, 32.820338],
       [-118.425634, 32.800595],
       [-118.42943, 32.805429],
       [-118.428372, 32.806872],
       [-118.44492, 32.820593],
       [-118.476074, 32.841754],
       [-118.487908, 32.84459],
       [-118.496298, 32.851572],
       [-118.506902, 32.868503],
       [-118.508095, 32.871321],
       [-118.507193, 32.876264],
       [-118.524641, 32.893175],
       [-118.524531, 32.895488]]],
     [[[-118.500212, 33.449592],
       [-118.499669, 33.447879],
       [-118.48557, 33.446213],
       [-118.477646, 33.448392],
       [-118.445812, 33.428907],
       [-118.423576, 33.427258],
       [-118.382037, 33.409883],
       [-118.370323, 33.409285],
       [-118.368301, 33.40711],
       [-118.365094, 33.388374],
       [-118.32446, 33.348782],
       [-118.316083, 33.342928],
       [-118.310213, 33.335795],
       [-118.303174, 33.320264],
       [-118.305084, 33.310323],
       [-118.316787, 33.301137],
       [-118.325244, 33.299075],
       [-118.343249, 33.305234],
       [-118.360332, 33.31533],
       [-118.374768, 33.320065],
       [-118.402941, 33.320901],
       [-118.440047, 33.318638],
       [-118.456309, 33.32182],
       [-118.465368, 33.326056],
       [-118.481886, 33.344123],
       [-118.48877, 33.356649],
       [-118.482609, 33.369914],
       [-118.478465, 33.38632],
       [-118.484949, 33.412131],
       [-118.48875, 33.419826],
       [-118.503952, 33.424234],
       [-118.515914, 33.422417],
       [-118.516267, 33.425075],
       [-118.52323, 33.430733],
       [-118.53738, 33.434608],
       [-118.558715, 33.433419],
       [-118.563442, 33.434381],
       [-118.570927, 33.439351],
       [-118.575901, 33.448261],
       [-118.593969, 33.467198],
       [-118.601185, 33.469853],
       [-118.60403, 33.47654],
       [-118.603375, 33.478098],
       [-118.598783, 33.477939],
       [-118.585936, 33.473819],
       [-118.54453, 33.474119],
       [-118.530702, 33.468071],
       [-118.500212, 33.449592]]],
     [[[-118.796692, 34.616559],
       [-118.881364, 34.790629],
       [-118.854253, 34.817772],
       [-118.140074, 34.82078],
       [-117.667292, 34.822526],
       [-117.658798, 34.44058],
       [-117.650459, 34.339025],
       [-117.711067, 34.079536],
       [-117.719481, 34.059731],
       [-117.72601, 34.041128],
       [-117.735846, 34.018554],
       [-117.767752, 34.019429],
       [-117.783287, 33.946411],
       [-117.97653, 33.928034],
       [-117.976498, 33.919171],
       [-117.976571, 33.911205],
       [-117.976692, 33.910614],
       [-117.976588, 33.909757],
       [-117.976586, 33.906225],
       [-118.063268, 33.82422],
       [-118.063162, 33.81961],
       [-118.072597, 33.815115],
       [-118.084597, 33.803216],
       [-118.093008, 33.786289],
       [-118.099107, 33.776518],
       [-118.09197, 33.758472],
       [-118.116703, 33.743549],
       [-118.132698, 33.753217],
       [-118.1569, 33.760317],
       [-118.1755, 33.763617],
       [-118.180831, 33.763072],
       [-118.187701, 33.749218],
       [-118.1837, 33.736118],
       [-118.181367, 33.717367],
       [-118.207476, 33.716905],
       [-118.258687, 33.703741],
       [-118.277208, 33.707091],
       [-118.297104, 33.708319],
       [-118.317205, 33.712818],
       [-118.354705, 33.732317],
       [-118.360505, 33.736817],
       [-118.385006, 33.741417],
       [-118.396606, 33.735917],
       [-118.411211, 33.741985],
       [-118.428407, 33.774715],
       [-118.423407, 33.782015],
       [-118.405007, 33.800215],
       [-118.394376, 33.804289],
       [-118.394307, 33.804315],
       [-118.391507, 33.815415],
       [-118.392107, 33.840915],
       [-118.412708, 33.883913],
       [-118.44241, 33.940312],
       [-118.460611, 33.969111],
       [-118.482729, 33.995912],
       [-118.484212, 33.99771],
       [-118.502813, 34.015509],
       [-118.519514, 34.027509],
       [-118.543115, 34.038508],
       [-118.569235, 34.04164],
       [-118.603572, 34.039048],
       [-118.609652, 34.036424],
       [-118.668358, 34.038887],
       [-118.67543, 34.037479],
       [-118.679366, 34.033255],
       [-118.706215, 34.029383],
       [-118.732391, 34.032743],
       [-118.744952, 34.032103],
       [-118.783433, 34.021543],
       [-118.787094, 34.019545],
       [-118.805114, 34.001239],
       [-118.821579, 34.013959],
       [-118.84038, 34.027527],
       [-118.854653, 34.034215],
       [-118.896159, 34.039207],
       [-118.928048, 34.045847],
       [-118.938081, 34.043383],
       [-118.944887, 34.04534],
       [-118.940965, 34.07483],
       [-118.788889, 34.168214],
       [-118.668152, 34.168195],
       [-118.633473, 34.269626],
       [-118.636789, 34.291804],
       [-118.650859, 34.320484],
       [-118.796692, 34.616559]]]]},
   'id': '06037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06039',
    'STATE': '06',
    'COUNTY': '039',
    'NAME': 'Madera',
    'LSAD': 'County',
    'CENSUSAREA': 2137.069},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-119.733852, 36.948558],
      [-119.823421, 36.848333],
      [-119.932551, 36.84299],
      [-120.013334, 36.828228],
      [-120.027775, 36.814505],
      [-120.079458, 36.825345],
      [-120.132898, 36.809841],
      [-120.229179, 36.769687],
      [-120.422187, 36.840139],
      [-120.541696, 37.044505],
      [-120.400758, 37.117764],
      [-120.052055, 37.183108],
      [-119.761809, 37.417114],
      [-119.651191, 37.417832],
      [-119.651172, 37.461351],
      [-119.58422, 37.494696],
      [-119.583585, 37.560335],
      [-119.308995, 37.777986],
      [-119.293382, 37.767929],
      [-119.288381, 37.74503],
      [-119.268979, 37.73923],
      [-119.124312, 37.733944],
      [-119.022363, 37.585737],
      [-119.286658, 37.374943],
      [-119.335189, 37.310774],
      [-119.330573, 37.205791],
      [-119.361916, 37.167849],
      [-119.43306, 37.161516],
      [-119.470844, 37.110548],
      [-119.559412, 37.143619],
      [-119.537677, 37.104019],
      [-119.733852, 36.948558]]]},
   'id': '06039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06041',
    'STATE': '06',
    'COUNTY': '041',
    'NAME': 'Marin',
    'LSAD': 'County',
    'CENSUSAREA': 520.306},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.490727, 38.109755],
      [-122.491283, 38.108087],
      [-122.489974, 38.096961],
      [-122.486702, 38.090088],
      [-122.483757, 38.071762],
      [-122.492265, 38.056381],
      [-122.499465, 38.032165],
      [-122.497828, 38.019402],
      [-122.494556, 38.015148],
      [-122.481466, 38.007621],
      [-122.462812, 38.003367],
      [-122.452995, 37.996167],
      [-122.448413, 37.988313],
      [-122.448413, 37.984713],
      [-122.456595, 37.978823],
      [-122.462485, 37.981441],
      [-122.471975, 37.981768],
      [-122.488665, 37.966714],
      [-122.490302, 37.964751],
      [-122.490302, 37.959188],
      [-122.487684, 37.948716],
      [-122.480484, 37.945443],
      [-122.479175, 37.941516],
      [-122.48572, 37.937589],
      [-122.499465, 37.939225],
      [-122.503064, 37.936607],
      [-122.503064, 37.928753],
      [-122.493574, 37.921881],
      [-122.486375, 37.921881],
      [-122.478193, 37.918608],
      [-122.471975, 37.910427],
      [-122.472303, 37.902573],
      [-122.458558, 37.894064],
      [-122.448413, 37.89341],
      [-122.43925, 37.88392],
      [-122.438268, 37.880974],
      [-122.45005, 37.871157],
      [-122.462158, 37.868866],
      [-122.474266, 37.874429],
      [-122.480811, 37.873448],
      [-122.483429, 37.868866],
      [-122.483102, 37.863957],
      [-122.476536, 37.832812],
      [-122.476473, 37.832513],
      [-122.479151, 37.825428],
      [-122.47986, 37.825641],
      [-122.483483, 37.826728],
      [-122.492474, 37.82484],
      [-122.505383, 37.822128],
      [-122.522836, 37.824717],
      [-122.523585, 37.824828],
      [-122.537285, 37.830328],
      [-122.548986, 37.836227],
      [-122.561487, 37.851827],
      [-122.584289, 37.859227],
      [-122.60129, 37.875126],
      [-122.627113, 37.88608],
      [-122.639977, 37.897349],
      [-122.656519, 37.904519],
      [-122.678474, 37.906604],
      [-122.682171, 37.90645],
      [-122.693569, 37.901171],
      [-122.70264, 37.89382],
      [-122.727297, 37.904626],
      [-122.732898, 37.920225],
      [-122.736898, 37.925825],
      [-122.754606, 37.935527],
      [-122.766138, 37.938004],
      [-122.783244, 37.951334],
      [-122.791739, 37.969422],
      [-122.797405, 37.976657],
      [-122.821383, 37.996735],
      [-122.856573, 38.016717],
      [-122.882114, 38.025273],
      [-122.939711, 38.031908],
      [-122.956811, 38.02872],
      [-122.972378, 38.020247],
      [-122.981776, 38.009119],
      [-122.982386, 38.004274],
      [-122.980147, 38.000831],
      [-122.976764, 37.99568],
      [-122.97439, 37.992429],
      [-123.024066, 37.994878],
      [-123.020562, 37.999544],
      [-123.016303, 38.001691],
      [-123.011533, 38.003438],
      [-122.99242, 38.041758],
      [-122.960889, 38.112962],
      [-122.952086, 38.138562],
      [-122.949074, 38.15406],
      [-122.949626, 38.164041],
      [-122.953629, 38.17567],
      [-122.965408, 38.187113],
      [-122.96637, 38.198514],
      [-122.968112, 38.202428],
      [-122.991953, 38.233185],
      [-122.993959, 38.237602],
      [-122.993235, 38.239686],
      [-122.987149, 38.237538],
      [-122.968569, 38.242879],
      [-122.967203, 38.250691],
      [-122.977082, 38.267902],
      [-122.986319, 38.273164],
      [-122.994603, 38.283096],
      [-122.997106, 38.289458],
      [-123.002911, 38.295708],
      [-122.901726, 38.316943],
      [-122.7399, 38.207018],
      [-122.648986, 38.181077],
      [-122.565093, 38.182217],
      [-122.490727, 38.109755]]]},
   'id': '06041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06043',
    'STATE': '06',
    'COUNTY': '043',
    'NAME': 'Mariposa',
    'LSAD': 'County',
    'CENSUSAREA': 1448.816},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.38767, 37.633364],
      [-120.387329, 37.633499],
      [-120.387613, 37.633704],
      [-120.391931, 37.683559],
      [-120.325943, 37.648966],
      [-120.345437, 37.724787],
      [-120.127226, 37.781566],
      [-120.079508, 37.828808],
      [-119.907013, 37.757926],
      [-119.809409, 37.755025],
      [-119.667203, 37.801224],
      [-119.646203, 37.846823],
      [-119.535699, 37.904122],
      [-119.308995, 37.777986],
      [-119.583585, 37.560335],
      [-119.58422, 37.494696],
      [-119.651172, 37.461351],
      [-119.651191, 37.417832],
      [-119.761809, 37.417114],
      [-120.052055, 37.183108],
      [-120.143826, 37.239192],
      [-120.26601, 37.400607],
      [-120.38767, 37.633364]]]},
   'id': '06043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06045',
    'STATE': '06',
    'COUNTY': '045',
    'NAME': 'Mendocino',
    'LSAD': 'County',
    'CENSUSAREA': 3506.343},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.821592, 38.85014],
      [-123.080997, 38.852438],
      [-123.136253, 38.809136],
      [-123.26871, 38.808369],
      [-123.533535, 38.768408],
      [-123.541837, 38.776764],
      [-123.571987, 38.798189],
      [-123.579856, 38.802835],
      [-123.58638, 38.802857],
      [-123.600221, 38.814115],
      [-123.601569, 38.81899],
      [-123.605317, 38.822765],
      [-123.638637, 38.843865],
      [-123.642676, 38.844005],
      [-123.647387, 38.845472],
      [-123.652212, 38.854582],
      [-123.654696, 38.865638],
      [-123.659846, 38.872529],
      [-123.688099, 38.893594],
      [-123.71054, 38.91323],
      [-123.725367, 38.917438],
      [-123.72763, 38.9295],
      [-123.726315, 38.936367],
      [-123.738886, 38.95412],
      [-123.732892, 38.954994],
      [-123.729053, 38.956667],
      [-123.721347, 38.963879],
      [-123.711149, 38.977316],
      [-123.6969, 39.004401],
      [-123.69074, 39.021293],
      [-123.690095, 39.031157],
      [-123.693969, 39.057363],
      [-123.713392, 39.108422],
      [-123.721505, 39.125327],
      [-123.735936, 39.139644],
      [-123.737913, 39.143442],
      [-123.742221, 39.164885],
      [-123.76101, 39.191595],
      [-123.765891, 39.193657],
      [-123.774998, 39.212083],
      [-123.777368, 39.237214],
      [-123.787893, 39.264327],
      [-123.798991, 39.271355],
      [-123.803848, 39.278771],
      [-123.801757, 39.28353],
      [-123.803081, 39.291747],
      [-123.811387, 39.312825],
      [-123.808772, 39.324368],
      [-123.817369, 39.3388],
      [-123.822085, 39.343857],
      [-123.825331, 39.360814],
      [-123.826306, 39.36871],
      [-123.822325, 39.379987],
      [-123.821887, 39.406809],
      [-123.81469, 39.446538],
      [-123.795639, 39.492215],
      [-123.78417, 39.509419],
      [-123.778521, 39.521478],
      [-123.766475, 39.552803],
      [-123.76721, 39.559852],
      [-123.787417, 39.604552],
      [-123.78354, 39.609517],
      [-123.782322, 39.621486],
      [-123.78636, 39.659932],
      [-123.792659, 39.684122],
      [-123.808208, 39.710715],
      [-123.824744, 39.718128],
      [-123.829545, 39.723071],
      [-123.831599, 39.730629],
      [-123.835092, 39.738768],
      [-123.838089, 39.752409],
      [-123.83715, 39.776232],
      [-123.839797, 39.795637],
      [-123.851714, 39.832041],
      [-123.853764, 39.8341],
      [-123.881458, 39.845422],
      [-123.907664, 39.863028],
      [-123.915142, 39.875313],
      [-123.915853, 39.881114],
      [-123.930047, 39.909697],
      [-123.954952, 39.922373],
      [-123.962655, 39.937635],
      [-123.980031, 39.962458],
      [-123.99586, 39.973045],
      [-124.023938, 40.001284],
      [-123.544458, 40.001923],
      [-123.544563, 39.977015],
      [-122.934013, 39.978131],
      [-122.937654, 39.798156],
      [-122.892676, 39.708898],
      [-122.885352, 39.580108],
      [-122.89031, 39.529014],
      [-123.063181, 39.503539],
      [-123.075114, 39.407683],
      [-122.994839, 39.235924],
      [-123.077812, 39.173791],
      [-123.093013, 39.071994],
      [-123.028035, 38.996593],
      [-122.98664, 38.997283],
      [-122.948865, 38.90022],
      [-122.821592, 38.85014]]]},
   'id': '06045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06047',
    'STATE': '06',
    'COUNTY': '047',
    'NAME': 'Merced',
    'LSAD': 'County',
    'CENSUSAREA': 1934.972},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.931374, 37.421753],
      [-120.38767, 37.633364],
      [-120.26601, 37.400607],
      [-120.143826, 37.239192],
      [-120.052055, 37.183108],
      [-120.400758, 37.117764],
      [-120.541696, 37.044505],
      [-120.590566, 36.952641],
      [-120.65595, 36.952832],
      [-120.918731, 36.740381],
      [-121.141523, 36.836656],
      [-121.215406, 36.961248],
      [-121.226804, 37.134774],
      [-120.964223, 37.345782],
      [-120.931374, 37.421753]]]},
   'id': '06047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06049',
    'STATE': '06',
    'COUNTY': '049',
    'NAME': 'Modoc',
    'LSAD': 'County',
    'CENSUSAREA': 3917.77},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.44754, 41.997169],
      [-121.43961, 41.99708],
      [-121.434977, 41.997022],
      [-121.376101, 41.997026],
      [-121.360253, 41.99668],
      [-121.340517, 41.99622],
      [-121.335734, 41.996518],
      [-121.334385, 41.996655],
      [-121.154347, 41.996352],
      [-121.035195, 41.993323],
      [-120.879481, 41.993781],
      [-120.693941, 41.993676],
      [-120.692219, 41.993677],
      [-120.326005, 41.993122],
      [-120.286424, 41.993058],
      [-119.999168, 41.99454],
      [-119.999866, 41.183974],
      [-121.331786, 41.183886],
      [-121.446495, 41.183484],
      [-121.44754, 41.997169]]]},
   'id': '06049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06051',
    'STATE': '06',
    'COUNTY': '051',
    'NAME': 'Mono',
    'LSAD': 'County',
    'CENSUSAREA': 3048.982},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-119.156863, 38.414743],
      [-119.125982, 38.39317],
      [-118.746598, 38.124926],
      [-118.428581, 37.895613],
      [-118.039798, 37.615273],
      [-118.039849, 37.615245],
      [-117.832726, 37.464929],
      [-118.775014, 37.463052],
      [-119.022363, 37.585737],
      [-119.124312, 37.733944],
      [-119.268979, 37.73923],
      [-119.20128, 37.804329],
      [-119.200283, 37.885827],
      [-119.308389, 37.946824],
      [-119.30459, 38.023891],
      [-119.345922, 38.083113],
      [-119.632671, 38.198858],
      [-119.639205, 38.32688],
      [-119.542862, 38.499694],
      [-119.619066, 38.603529],
      [-119.585437, 38.713212],
      [-119.494183, 38.649852],
      [-119.494022, 38.649734],
      [-119.450612, 38.619964],
      [-119.450623, 38.619965],
      [-119.328498, 38.534648],
      [-119.156863, 38.414743]]]},
   'id': '06051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06053',
    'STATE': '06',
    'COUNTY': '053',
    'NAME': 'Monterey',
    'LSAD': 'County',
    'CENSUSAREA': 3280.595},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.213979, 35.789276],
      [-121.175695, 35.794102],
      [-121.346363, 35.795183],
      [-121.356737, 35.804187],
      [-121.388053, 35.823483],
      [-121.406823, 35.844623],
      [-121.413146, 35.855316],
      [-121.426955, 35.860103],
      [-121.439584, 35.86695],
      [-121.462264, 35.885618],
      [-121.461227, 35.896906],
      [-121.463452, 35.904416],
      [-121.472435, 35.91989],
      [-121.4862, 35.970348],
      [-121.503112, 36.000299],
      [-121.51159, 36.006598],
      [-121.531876, 36.014368],
      [-121.553716, 36.019798],
      [-121.569612, 36.021539],
      [-121.574602, 36.025156],
      [-121.590395, 36.050363],
      [-121.589183, 36.053775],
      [-121.592853, 36.065062],
      [-121.606845, 36.072065],
      [-121.618672, 36.087767],
      [-121.622009, 36.099695],
      [-121.629634, 36.114452],
      [-121.680145, 36.165818],
      [-121.717176, 36.195146],
      [-121.779851, 36.227407],
      [-121.797059, 36.234211],
      [-121.806979, 36.232907],
      [-121.813734, 36.234235],
      [-121.826425, 36.24186],
      [-121.835785, 36.250748],
      [-121.83935, 36.260478],
      [-121.851967, 36.277831],
      [-121.874797, 36.289064],
      [-121.888491, 36.30281],
      [-121.894714, 36.317806],
      [-121.892917, 36.340428],
      [-121.905446, 36.358269],
      [-121.902669, 36.363901],
      [-121.901813, 36.381879],
      [-121.903195, 36.393603],
      [-121.905657, 36.398206],
      [-121.914378, 36.404344],
      [-121.917463, 36.414809],
      [-121.91474, 36.42589],
      [-121.9255, 36.453918],
      [-121.937205, 36.472488],
      [-121.9416, 36.485602],
      [-121.939216, 36.496896],
      [-121.938763, 36.506423],
      [-121.943678, 36.511802],
      [-121.944666, 36.521861],
      [-121.928769, 36.523147],
      [-121.925937, 36.525173],
      [-121.932508, 36.559935],
      [-121.942533, 36.566435],
      [-121.949659, 36.567602],
      [-121.95146, 36.564009],
      [-121.957335, 36.564482],
      [-121.972594, 36.57337],
      [-121.978592, 36.580488],
      [-121.970427, 36.582754],
      [-121.941666, 36.618059],
      [-121.938551, 36.633908],
      [-121.93643, 36.636746],
      [-121.929666, 36.636959],
      [-121.923866, 36.634559],
      [-121.890164, 36.609259],
      [-121.889064, 36.601759],
      [-121.886764, 36.601459],
      [-121.871364, 36.604559],
      [-121.860604, 36.611136],
      [-121.842263, 36.630059],
      [-121.831995, 36.644856],
      [-121.825052, 36.657207],
      [-121.814462, 36.682858],
      [-121.807062, 36.714157],
      [-121.805643, 36.750239],
      [-121.788278, 36.803994],
      [-121.791544, 36.815186],
      [-121.809363, 36.848654],
      [-121.810552, 36.850648],
      [-121.745288, 36.909341],
      [-121.644001, 36.893996],
      [-121.597698, 36.83735],
      [-121.45134, 36.724793],
      [-121.468086, 36.685518],
      [-121.350092, 36.648357],
      [-121.318373, 36.610026],
      [-121.311788, 36.502736],
      [-121.244091, 36.506911],
      [-121.193465, 36.445751],
      [-121.040797, 36.323969],
      [-121.02724, 36.259893],
      [-120.920551, 36.311012],
      [-120.86508, 36.292578],
      [-120.761483, 36.20358],
      [-120.718169, 36.196848],
      [-120.75834, 36.308604],
      [-120.678582, 36.267319],
      [-120.62691, 36.203227],
      [-120.648784, 36.10799],
      [-120.315068, 35.907186],
      [-120.243275, 35.877669],
      [-120.213979, 35.789276]]]},
   'id': '06053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06055',
    'STATE': '06',
    'COUNTY': '055',
    'NAME': 'Napa',
    'LSAD': 'County',
    'CENSUSAREA': 748.362},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.103281, 38.513348],
      [-122.088835, 38.384151],
      [-122.064779, 38.315912],
      [-122.205982, 38.315713],
      [-122.19538, 38.155017],
      [-122.406786, 38.155632],
      [-122.378987, 38.250714],
      [-122.543893, 38.519966],
      [-122.646268, 38.59912],
      [-122.627396, 38.667506],
      [-122.46389, 38.705203],
      [-122.395056, 38.864245],
      [-122.287999, 38.839932],
      [-122.164944, 38.642462],
      [-122.168349, 38.619297],
      [-122.151772, 38.625297],
      [-122.128123, 38.583697],
      [-122.111563, 38.524051],
      [-122.103281, 38.513348]]]},
   'id': '06055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06057',
    'STATE': '06',
    'COUNTY': '057',
    'NAME': 'Nevada',
    'LSAD': 'County',
    'CENSUSAREA': 957.772},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.279533, 39.034618],
      [-121.266911, 39.271609],
      [-121.127481, 39.380237],
      [-121.022085, 39.391558],
      [-120.755729, 39.452663],
      [-120.654332, 39.526889],
      [-120.575059, 39.52228],
      [-120.505445, 39.446117],
      [-120.003117, 39.445045],
      [-120.005318, 39.316479],
      [-120.645795, 39.315155],
      [-120.691606, 39.303981],
      [-120.857909, 39.206235],
      [-120.986348, 39.102234],
      [-121.068788, 39.005177],
      [-121.137397, 39.037858],
      [-121.279533, 39.034618]]]},
   'id': '06057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06059',
    'STATE': '06',
    'COUNTY': '059',
    'NAME': 'Orange',
    'LSAD': 'County',
    'CENSUSAREA': 790.568},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-118.093008, 33.786289],
      [-118.084597, 33.803216],
      [-118.072597, 33.815115],
      [-118.063162, 33.81961],
      [-118.063268, 33.82422],
      [-117.976586, 33.906225],
      [-117.976588, 33.909757],
      [-117.976692, 33.910614],
      [-117.976571, 33.911205],
      [-117.976498, 33.919171],
      [-117.97653, 33.928034],
      [-117.783287, 33.946411],
      [-117.680289, 33.877412],
      [-117.673749, 33.870831],
      [-117.533999, 33.710355],
      [-117.474573, 33.703811],
      [-117.459817, 33.691714],
      [-117.412987, 33.659045],
      [-117.509722, 33.505019],
      [-117.59588, 33.386629],
      [-117.607905, 33.406317],
      [-117.631682, 33.430528],
      [-117.645582, 33.440728],
      [-117.645592, 33.440733],
      [-117.684584, 33.461927],
      [-117.689284, 33.460155],
      [-117.691984, 33.456627],
      [-117.691384, 33.454028],
      [-117.715349, 33.460556],
      [-117.726486, 33.483427],
      [-117.761387, 33.516326],
      [-117.784888, 33.541525],
      [-117.801288, 33.546324],
      [-117.814188, 33.552224],
      [-117.840289, 33.573523],
      [-117.87679, 33.592322],
      [-117.89979, 33.599622],
      [-117.927091, 33.605521],
      [-117.940591, 33.620021],
      [-117.957114, 33.629466],
      [-118.000593, 33.654319],
      [-118.029694, 33.676418],
      [-118.064895, 33.711018],
      [-118.088896, 33.729817],
      [-118.101097, 33.734117],
      [-118.116703, 33.743549],
      [-118.09197, 33.758472],
      [-118.099107, 33.776518],
      [-118.093008, 33.786289]]]},
   'id': '06059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06061',
    'STATE': '06',
    'COUNTY': '061',
    'NAME': 'Placer',
    'LSAD': 'County',
    'CENSUSAREA': 1407.009},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.005318, 39.316479],
      [-120.00532, 39.31635],
      [-120.005413, 39.313848],
      [-120.005414, 39.313345],
      [-120.005743, 39.228664],
      [-120.005746, 39.22521],
      [-120.004504, 39.165599],
      [-120.003402, 39.112687],
      [-120.002461, 39.067489],
      [-120.143663, 39.067285],
      [-120.184098, 39.031014],
      [-120.43524, 39.028397],
      [-120.470985, 38.965507],
      [-120.556321, 38.915164],
      [-120.642458, 38.944404],
      [-120.746395, 39.010352],
      [-121.040406, 38.915651],
      [-121.141009, 38.71198],
      [-121.151857, 38.711502],
      [-121.188571, 38.714308],
      [-121.242795, 38.718241],
      [-121.484396, 38.734598],
      [-121.469356, 38.925992],
      [-121.414885, 38.996429],
      [-121.279533, 39.034618],
      [-121.137397, 39.037858],
      [-121.068788, 39.005177],
      [-120.986348, 39.102234],
      [-120.857909, 39.206235],
      [-120.691606, 39.303981],
      [-120.645795, 39.315155],
      [-120.005318, 39.316479]]]},
   'id': '06061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06063',
    'STATE': '06',
    'COUNTY': '063',
    'NAME': 'Plumas',
    'LSAD': 'County',
    'CENSUSAREA': 2553.043},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.076695, 39.597264],
      [-121.360516, 39.84074],
      [-121.430012, 39.914833],
      [-121.366818, 40.086054],
      [-121.436886, 40.151905],
      [-121.368395, 40.21223],
      [-121.345571, 40.312667],
      [-121.470395, 40.350213],
      [-121.497635, 40.445591],
      [-121.327826, 40.445367],
      [-121.061417, 40.446536],
      [-121.061493, 40.256417],
      [-120.928582, 40.191931],
      [-120.764403, 40.31601],
      [-120.652158, 40.307656],
      [-120.510817, 40.248945],
      [-120.445892, 40.176854],
      [-120.341385, 40.115243],
      [-120.209641, 40.086008],
      [-120.201264, 40.013474],
      [-120.108761, 39.93951],
      [-120.110627, 39.765779],
      [-120.147149, 39.707658],
      [-120.792484, 39.709794],
      [-120.873618, 39.775875],
      [-121.009477, 39.639459],
      [-121.050922, 39.613801],
      [-121.05267, 39.612334],
      [-121.076695, 39.597264]]]},
   'id': '06063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06065',
    'STATE': '06',
    'COUNTY': '065',
    'NAME': 'Riverside',
    'LSAD': 'County',
    'CENSUSAREA': 7206.48},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.284475, 34.019015],
      [-117.225372, 34.004314],
      [-116.929357, 34.004914],
      [-116.929558, 34.034113],
      [-116.457775, 34.032881],
      [-115.316212, 34.03411],
      [-115.316065, 34.077843],
      [-114.435429, 34.079727],
      [-114.434949, 34.037784],
      [-114.438266, 34.022609],
      [-114.46361, 33.993431],
      [-114.499883, 33.961789],
      [-114.518434, 33.917518],
      [-114.525539, 33.838614],
      [-114.523365, 33.80612],
      [-114.50434, 33.756381],
      [-114.494197, 33.707922],
      [-114.496489, 33.696901],
      [-114.519113, 33.688473],
      [-114.523959, 33.685879],
      [-114.530348, 33.679245],
      [-114.540617, 33.591412],
      [-114.5403, 33.580615],
      [-114.535965, 33.569154],
      [-114.535664, 33.568788],
      [-114.558898, 33.531819],
      [-114.594534, 33.495059],
      [-114.622918, 33.456561],
      [-114.627125, 33.433554],
      [-115.467506, 33.426992],
      [-116.085165, 33.425932],
      [-116.197591, 33.428893],
      [-116.617687, 33.427354],
      [-117.079721, 33.43033],
      [-117.241271, 33.431993],
      [-117.370925, 33.490549],
      [-117.509722, 33.505019],
      [-117.412987, 33.659045],
      [-117.459817, 33.691714],
      [-117.474573, 33.703811],
      [-117.533999, 33.710355],
      [-117.673749, 33.870831],
      [-117.600066, 33.975316],
      [-117.558312, 34.033451],
      [-117.336161, 34.019378],
      [-117.284475, 34.019015]]]},
   'id': '06065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06067',
    'STATE': '06',
    'COUNTY': '067',
    'NAME': 'Sacramento',
    'LSAD': 'County',
    'CENSUSAREA': 964.644},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.242795, 38.718241],
      [-121.188571, 38.714308],
      [-121.151857, 38.711502],
      [-121.141009, 38.71198],
      [-121.133264, 38.705427],
      [-121.118617, 38.717118],
      [-121.027507, 38.508292],
      [-121.027084, 38.300252],
      [-121.344024, 38.22826],
      [-121.484317, 38.241509],
      [-121.580022, 38.094414],
      [-121.679265, 38.089319],
      [-121.737824, 38.02663],
      [-121.862462, 38.06603],
      [-121.713926, 38.084542],
      [-121.688233, 38.145421],
      [-121.602763, 38.230219],
      [-121.603208, 38.237283],
      [-121.602121, 38.241674],
      [-121.601993, 38.252426],
      [-121.600249, 38.257817],
      [-121.60401, 38.270103],
      [-121.60073, 38.278375],
      [-121.605258, 38.295352],
      [-121.593273, 38.313089],
      [-121.521641, 38.360104],
      [-121.504139, 38.466563],
      [-121.538766, 38.474707],
      [-121.559167, 38.498007],
      [-121.51129, 38.54629],
      [-121.520965, 38.566205],
      [-121.506269, 38.586305],
      [-121.527667, 38.604604],
      [-121.549869, 38.599405],
      [-121.576068, 38.648604],
      [-121.594069, 38.644106],
      [-121.62576, 38.673133],
      [-121.630446, 38.697571],
      [-121.605774, 38.718319],
      [-121.602894, 38.735838],
      [-121.521767, 38.736401],
      [-121.484396, 38.734598],
      [-121.242795, 38.718241]]]},
   'id': '06067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06069',
    'STATE': '06',
    'COUNTY': '069',
    'NAME': 'San Benito',
    'LSAD': 'County',
    'CENSUSAREA': 1388.71},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.581354, 36.899152],
      [-121.501488, 36.971895],
      [-121.215406, 36.961248],
      [-121.141523, 36.836656],
      [-120.918731, 36.740381],
      [-120.603706, 36.488242],
      [-120.596562, 36.328488],
      [-120.678582, 36.267319],
      [-120.75834, 36.308604],
      [-120.718169, 36.196848],
      [-120.761483, 36.20358],
      [-120.86508, 36.292578],
      [-120.920551, 36.311012],
      [-121.02724, 36.259893],
      [-121.040797, 36.323969],
      [-121.193465, 36.445751],
      [-121.244091, 36.506911],
      [-121.311788, 36.502736],
      [-121.318373, 36.610026],
      [-121.350092, 36.648357],
      [-121.468086, 36.685518],
      [-121.45134, 36.724793],
      [-121.597698, 36.83735],
      [-121.644001, 36.893996],
      [-121.629489, 36.911681],
      [-121.607354, 36.899452],
      [-121.581354, 36.899152]]]},
   'id': '06069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06071',
    'STATE': '06',
    'COUNTY': '071',
    'NAME': 'San Bernardino',
    'LSAD': 'County',
    'CENSUSAREA': 20056.938},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-115.648029, 35.809629],
      [-115.647683, 35.809358],
      [-115.647202, 35.808995],
      [-115.406079, 35.618613],
      [-115.404537, 35.617605],
      [-115.393996, 35.609344],
      [-115.391535, 35.607271],
      [-115.388866, 35.605171],
      [-115.303743, 35.538207],
      [-115.271342, 35.51266],
      [-115.225273, 35.475907],
      [-115.160599, 35.424313],
      [-115.160068, 35.424129],
      [-115.146788, 35.413662],
      [-115.145813, 35.413182],
      [-114.92548, 35.237054],
      [-114.925381, 35.237039],
      [-114.80503, 35.140284],
      [-114.804249, 35.139689],
      [-114.633013, 35.002085],
      [-114.62919, 34.991887],
      [-114.629015, 34.986148],
      [-114.630877, 34.907263],
      [-114.636725, 34.889107],
      [-114.635176, 34.875003],
      [-114.633051, 34.869971],
      [-114.552682, 34.766871],
      [-114.465607, 34.69226],
      [-114.452547, 34.653494],
      [-114.339627, 34.451435],
      [-114.264317, 34.401329],
      [-114.199482, 34.361373],
      [-114.176909, 34.349306],
      [-114.138282, 34.30323],
      [-114.131489, 34.260387],
      [-114.133264, 34.258462],
      [-114.164476, 34.251667],
      [-114.225861, 34.201774],
      [-114.244191, 34.179625],
      [-114.312592, 34.144453],
      [-114.321618, 34.138093],
      [-114.366521, 34.118575],
      [-114.390565, 34.110084],
      [-114.401352, 34.111652],
      [-114.411681, 34.110031],
      [-114.420499, 34.103466],
      [-114.43338, 34.088413],
      [-114.435429, 34.079727],
      [-115.316065, 34.077843],
      [-115.316212, 34.03411],
      [-116.457775, 34.032881],
      [-116.929558, 34.034113],
      [-116.929357, 34.004914],
      [-117.225372, 34.004314],
      [-117.284475, 34.019015],
      [-117.336161, 34.019378],
      [-117.558312, 34.033451],
      [-117.600066, 33.975316],
      [-117.673749, 33.870831],
      [-117.680289, 33.877412],
      [-117.783287, 33.946411],
      [-117.767752, 34.019429],
      [-117.735846, 34.018554],
      [-117.72601, 34.041128],
      [-117.719481, 34.059731],
      [-117.711067, 34.079536],
      [-117.650459, 34.339025],
      [-117.658798, 34.44058],
      [-117.667292, 34.822526],
      [-117.632011, 34.82227],
      [-117.630126, 35.564071],
      [-117.616195, 35.680856],
      [-117.651986, 35.709934],
      [-117.632996, 35.797251],
      [-115.735891, 35.79362],
      [-115.735745, 35.809097],
      [-115.648925, 35.809128],
      [-115.648029, 35.809629]]]},
   'id': '06071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06073',
    'STATE': '06',
    'COUNTY': '073',
    'NAME': 'San Diego',
    'LSAD': 'County',
    'CENSUSAREA': 4206.63},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.106159, 32.618328],
      [-116.390091, 32.59602],
      [-117.118865, 32.534661],
      [-117.124862, 32.534156],
      [-117.133363, 32.575625],
      [-117.132963, 32.597054],
      [-117.136664, 32.618754],
      [-117.139464, 32.627054],
      [-117.159865, 32.660652],
      [-117.168866, 32.671952],
      [-117.180366, 32.681652],
      [-117.192967, 32.687751],
      [-117.196767, 32.688851],
      [-117.213068, 32.687751],
      [-117.223868, 32.683051],
      [-117.236239, 32.671353],
      [-117.246069, 32.669352],
      [-117.255169, 32.700051],
      [-117.25757, 32.72605],
      [-117.25537, 32.745449],
      [-117.25257, 32.752949],
      [-117.25497, 32.786948],
      [-117.26107, 32.803148],
      [-117.280971, 32.822247],
      [-117.28217, 32.839547],
      [-117.28117, 32.843047],
      [-117.27387, 32.851447],
      [-117.26497, 32.848947],
      [-117.26067, 32.852647],
      [-117.25617, 32.859447],
      [-117.25167, 32.874346],
      [-117.25447, 32.900146],
      [-117.26047, 32.931245],
      [-117.262547, 32.939542],
      [-117.28077, 33.012343],
      [-117.29337, 33.034642],
      [-117.309771, 33.07454],
      [-117.315278, 33.093504],
      [-117.328359, 33.121842],
      [-117.359484, 33.164231],
      [-117.362572, 33.168437],
      [-117.39148, 33.202762],
      [-117.401926, 33.213598],
      [-117.445583, 33.268517],
      [-117.469794, 33.296417],
      [-117.50565, 33.334063],
      [-117.547693, 33.365491],
      [-117.571722, 33.378988],
      [-117.59588, 33.386629],
      [-117.509722, 33.505019],
      [-117.370925, 33.490549],
      [-117.241271, 33.431993],
      [-117.079721, 33.43033],
      [-116.617687, 33.427354],
      [-116.197591, 33.428893],
      [-116.085165, 33.425932],
      [-116.08109, 33.074833],
      [-116.103137, 32.904115],
      [-116.106159, 32.618328]]]},
   'id': '06073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06075',
    'STATE': '06',
    'COUNTY': '075',
    'NAME': 'San Francisco',
    'LSAD': 'County',
    'CENSUSAREA': 46.873},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-122.418698, 37.852717],
       [-122.434403, 37.852434],
       [-122.443302, 37.855448],
       [-122.446316, 37.861046],
       [-122.438565, 37.868367],
       [-122.430958, 37.872242],
       [-122.421439, 37.869969],
       [-122.421341, 37.869946],
       [-122.41847, 37.861764],
       [-122.41847, 37.852721],
       [-122.418698, 37.852717]]],
     [[[-123.013916, 37.700355],
       [-123.013897, 37.704478],
       [-123.012194, 37.706749],
       [-123.004489, 37.706262],
       [-123.00019, 37.702937],
       [-122.997189, 37.697909],
       [-123.000677, 37.690203],
       [-123.005543, 37.689392],
       [-123.011464, 37.691907],
       [-123.014303, 37.696205],
       [-123.013916, 37.700355]]],
     [[[-122.3785, 37.826505],
       [-122.377879, 37.830648],
       [-122.369941, 37.832137],
       [-122.363244, 37.823951],
       [-122.358779, 37.814278],
       [-122.362661, 37.807577],
       [-122.372422, 37.811301],
       [-122.37267, 37.81651],
       [-122.3785, 37.826505]]],
     [[[-122.502427, 37.708133],
       [-122.506483, 37.723731],
       [-122.509397, 37.748841],
       [-122.511983, 37.77113],
       [-122.514483, 37.780829],
       [-122.50531, 37.788312],
       [-122.492883, 37.787929],
       [-122.485783, 37.790629],
       [-122.478083, 37.810828],
       [-122.470336, 37.808671],
       [-122.463793, 37.804653],
       [-122.425942, 37.810979],
       [-122.407452, 37.811441],
       [-122.398139, 37.80563],
       [-122.385323, 37.790724],
       [-122.375854, 37.734979],
       [-122.370094, 37.732331],
       [-122.367697, 37.734943],
       [-122.365478, 37.734621],
       [-122.356784, 37.729505],
       [-122.361749, 37.71501],
       [-122.370411, 37.717572],
       [-122.391374, 37.708331],
       [-122.393782, 37.708231],
       [-122.471319, 37.708305],
       [-122.471837, 37.708332],
       [-122.481083, 37.708232],
       [-122.484883, 37.708332],
       [-122.485382, 37.708231],
       [-122.502427, 37.708133]]]]},
   'id': '06075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06077',
    'STATE': '06',
    'COUNTY': '077',
    'NAME': 'San Joaquin',
    'LSAD': 'County',
    'CENSUSAREA': 1391.322},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.926449, 38.077421],
      [-120.920665, 37.738392],
      [-120.995754, 37.760152],
      [-121.155849, 37.719844],
      [-121.258171, 37.653495],
      [-121.273751, 37.63833],
      [-121.333388, 37.59105],
      [-121.471925, 37.481783],
      [-121.556655, 37.542732],
      [-121.556936, 37.817218],
      [-121.550971, 37.831155],
      [-121.538931, 37.839563],
      [-121.536595, 37.844723],
      [-121.538026, 37.849622],
      [-121.549517, 37.856986],
      [-121.561813, 37.857135],
      [-121.56937, 37.858881],
      [-121.575463, 37.863118],
      [-121.574849, 37.885021],
      [-121.569113, 37.901521],
      [-121.55987, 37.920862],
      [-121.561937, 37.937612],
      [-121.56364, 37.94611],
      [-121.569889, 37.957495],
      [-121.574823, 37.973025],
      [-121.579943, 37.976113],
      [-121.580022, 38.094414],
      [-121.484317, 38.241509],
      [-121.344024, 38.22826],
      [-121.027084, 38.300252],
      [-120.995497, 38.225405],
      [-120.93885, 38.088321],
      [-120.926449, 38.077421]]]},
   'id': '06077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06079',
    'STATE': '06',
    'COUNTY': '079',
    'NAME': 'San Luis Obispo',
    'LSAD': 'County',
    'CENSUSAREA': 3298.567},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.194146, 35.789204],
      [-120.194053, 35.749964],
      [-120.193934, 35.749393],
      [-120.193892, 35.726513],
      [-120.193918, 35.614359],
      [-120.085922, 35.614524],
      [-120.086674, 35.526554],
      [-119.997382, 35.468702],
      [-119.997392, 35.439495],
      [-119.880045, 35.439133],
      [-119.880172, 35.351211],
      [-119.809346, 35.350865],
      [-119.809449, 35.263584],
      [-119.666663, 35.262527],
      [-119.667056, 35.174809],
      [-119.553641, 35.179975],
      [-119.560975, 35.087673],
      [-119.472719, 35.076885],
      [-119.472754, 34.901174],
      [-119.535757, 34.897576],
      [-119.672963, 34.973375],
      [-119.745566, 34.973676],
      [-119.928419, 35.059794],
      [-119.980122, 35.057573],
      [-120.093376, 35.114102],
      [-120.188383, 35.030378],
      [-120.334548, 35.006315],
      [-120.311498, 34.903764],
      [-120.355343, 34.941265],
      [-120.513924, 34.989276],
      [-120.648905, 34.974393],
      [-120.63999, 35.002963],
      [-120.63357, 35.033085],
      [-120.629931, 35.061515],
      [-120.629583, 35.078362],
      [-120.630957, 35.101941],
      [-120.635787, 35.123805],
      [-120.644311, 35.139616],
      [-120.651134, 35.147768],
      [-120.662475, 35.153357],
      [-120.667994, 35.15203],
      [-120.675074, 35.153061],
      [-120.686974, 35.160708],
      [-120.698906, 35.171192],
      [-120.704203, 35.173206],
      [-120.714185, 35.175998],
      [-120.734231, 35.178472],
      [-120.74887, 35.177795],
      [-120.754823, 35.174701],
      [-120.756862, 35.169208],
      [-120.756086, 35.160459],
      [-120.760492, 35.15971],
      [-120.778998, 35.168897],
      [-120.786076, 35.177666],
      [-120.805258, 35.184973],
      [-120.846674, 35.204429],
      [-120.856047, 35.206487],
      [-120.873046, 35.225688],
      [-120.89679, 35.247877],
      [-120.896876, 35.25399],
      [-120.889354, 35.277819],
      [-120.87957, 35.294184],
      [-120.8672, 35.327154],
      [-120.862684, 35.346776],
      [-120.862133, 35.360763],
      [-120.866099, 35.393045],
      [-120.869209, 35.403276],
      [-120.884757, 35.430196],
      [-120.896862, 35.442243],
      [-120.907937, 35.449069],
      [-120.946546, 35.446715],
      [-120.950742, 35.44802],
      [-120.955863, 35.453743],
      [-120.969436, 35.460197],
      [-120.976122, 35.459028],
      [-121.003359, 35.46071],
      [-121.025621, 35.484598],
      [-121.05308, 35.50753],
      [-121.059913, 35.509671],
      [-121.101595, 35.548814],
      [-121.126027, 35.593058],
      [-121.133556, 35.600455],
      [-121.143561, 35.606046],
      [-121.166712, 35.635399],
      [-121.188897, 35.643138],
      [-121.195291, 35.640734],
      [-121.251034, 35.656641],
      [-121.272322, 35.666711],
      [-121.284973, 35.674109],
      [-121.289794, 35.689428],
      [-121.296473, 35.696824],
      [-121.304583, 35.701794],
      [-121.314632, 35.71331],
      [-121.315786, 35.75252],
      [-121.324918, 35.769347],
      [-121.332449, 35.783106],
      [-121.346363, 35.795183],
      [-121.175695, 35.794102],
      [-120.213979, 35.789276],
      [-120.194146, 35.789204]]]},
   'id': '06079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06081',
    'STATE': '06',
    'COUNTY': '081',
    'NAME': 'San Mateo',
    'LSAD': 'County',
    'CENSUSAREA': 448.408},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.292974, 37.107318],
      [-122.306139, 37.116383],
      [-122.313907, 37.118161],
      [-122.322971, 37.11546],
      [-122.330463, 37.115338],
      [-122.337071, 37.117382],
      [-122.338856, 37.120854],
      [-122.337085, 37.130795],
      [-122.337833, 37.135936],
      [-122.344029, 37.144099],
      [-122.359791, 37.155574],
      [-122.36179, 37.163593],
      [-122.367085, 37.172817],
      [-122.37927, 37.181128],
      [-122.390599, 37.182988],
      [-122.397065, 37.187249],
      [-122.405073, 37.195791],
      [-122.407181, 37.219465],
      [-122.408982, 37.225258],
      [-122.415822, 37.232839],
      [-122.419113, 37.24147],
      [-122.418452, 37.248521],
      [-122.411686, 37.265844],
      [-122.401323, 37.337009],
      [-122.40085, 37.359225],
      [-122.409258, 37.374805],
      [-122.423286, 37.392542],
      [-122.443687, 37.435941],
      [-122.445987, 37.461541],
      [-122.452087, 37.48054],
      [-122.467888, 37.49814],
      [-122.472388, 37.50054],
      [-122.476443, 37.498768],
      [-122.482351, 37.496187],
      [-122.485888, 37.494641],
      [-122.486749, 37.49439],
      [-122.487139, 37.494277],
      [-122.493789, 37.492341],
      [-122.494429, 37.49269],
      [-122.499289, 37.495341],
      [-122.516689, 37.52134],
      [-122.519533, 37.537302],
      [-122.516589, 37.544939],
      [-122.514789, 37.546139],
      [-122.513688, 37.552239],
      [-122.518088, 37.576138],
      [-122.517187, 37.590637],
      [-122.501386, 37.599637],
      [-122.496786, 37.612136],
      [-122.494085, 37.644035],
      [-122.496784, 37.686433],
      [-122.502427, 37.708133],
      [-122.485382, 37.708231],
      [-122.484883, 37.708332],
      [-122.481083, 37.708232],
      [-122.471837, 37.708332],
      [-122.471319, 37.708305],
      [-122.393782, 37.708231],
      [-122.391374, 37.708331],
      [-122.39319, 37.707531],
      [-122.387626, 37.67906],
      [-122.374291, 37.662206],
      [-122.3756, 37.652389],
      [-122.37789, 37.650425],
      [-122.387381, 37.648462],
      [-122.386072, 37.637662],
      [-122.365455, 37.626208],
      [-122.35531, 37.615736],
      [-122.358583, 37.611155],
      [-122.370364, 37.614427],
      [-122.373309, 37.613773],
      [-122.378545, 37.605592],
      [-122.360219, 37.592501],
      [-122.317676, 37.590865],
      [-122.315385, 37.587265],
      [-122.315713, 37.583666],
      [-122.305895, 37.575484],
      [-122.262698, 37.572866],
      [-122.251898, 37.566321],
      [-122.244372, 37.55814],
      [-122.242832, 37.557136],
      [-122.236323, 37.552891],
      [-122.225135, 37.545594],
      [-122.214264, 37.538505],
      [-122.196593, 37.537196],
      [-122.194957, 37.522469],
      [-122.168449, 37.504143],
      [-122.155686, 37.501198],
      [-122.149632, 37.502671],
      [-122.140142, 37.507907],
      [-122.130979, 37.503652],
      [-122.127706, 37.500053],
      [-122.116112, 37.505386],
      [-122.109574, 37.497637],
      [-122.081473, 37.477838],
      [-122.190402, 37.431472],
      [-122.152278, 37.286055],
      [-122.152774, 37.215444],
      [-122.317682, 37.186945],
      [-122.292974, 37.107318]]]},
   'id': '06081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06083',
    'STATE': '06',
    'COUNTY': '083',
    'NAME': 'Santa Barbara',
    'LSAD': 'County',
    'CENSUSAREA': 2735.085},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-120.248484, 33.999329],
       [-120.247393, 34.001911],
       [-120.238657, 34.007592],
       [-120.230001, 34.010136],
       [-120.221287, 34.010367],
       [-120.208478, 34.005655],
       [-120.19578, 34.004284],
       [-120.167306, 34.008219],
       [-120.151663, 34.018126],
       [-120.147647, 34.024831],
       [-120.140362, 34.025974],
       [-120.135853, 34.026087],
       [-120.115058, 34.019866],
       [-120.090182, 34.019806],
       [-120.073609, 34.024477],
       [-120.062778, 34.031161],
       [-120.061953, 34.033976],
       [-120.057637, 34.03734],
       [-120.055107, 34.037729],
       [-120.043259, 34.035806],
       [-120.044004, 34.02482],
       [-120.047798, 34.021227],
       [-120.050382, 34.013331],
       [-120.048926, 34.009898],
       [-120.046575, 34.000002],
       [-120.041311, 33.994507],
       [-120.025653, 33.985553],
       [-120.011123, 33.979894],
       [-120.003815, 33.979547],
       [-119.984316, 33.983948],
       [-119.978876, 33.983081],
       [-119.979913, 33.969623],
       [-119.976857, 33.956693],
       [-119.971141, 33.950401],
       [-119.97026, 33.944359],
       [-119.973691, 33.942481],
       [-120.00096, 33.941554],
       [-120.017715, 33.936366],
       [-120.046881, 33.919597],
       [-120.048315, 33.917625],
       [-120.048611, 33.915775],
       [-120.049682, 33.914563],
       [-120.077793, 33.908886],
       [-120.098601, 33.907853],
       [-120.105489, 33.90428],
       [-120.109137, 33.899129],
       [-120.121817, 33.895712],
       [-120.168974, 33.91909],
       [-120.179049, 33.927994],
       [-120.18984, 33.947703],
       [-120.192339, 33.950266],
       [-120.198602, 33.952211],
       [-120.200085, 33.956904],
       [-120.209372, 33.972376],
       [-120.224461, 33.989059],
       [-120.248484, 33.999329]]],
     [[[-119.789798, 34.05726],
       [-119.770729, 34.055051],
       [-119.766081, 34.05537],
       [-119.763688, 34.057155],
       [-119.755521, 34.056716],
       [-119.739472, 34.049299],
       [-119.726437, 34.047908],
       [-119.712576, 34.043265],
       [-119.704628, 34.037681],
       [-119.686507, 34.019805],
       [-119.637742, 34.013178],
       [-119.619343, 34.016468],
       [-119.612226, 34.021256],
       [-119.604287, 34.031561],
       [-119.608798, 34.035245],
       [-119.609239, 34.03735],
       [-119.59324, 34.049625],
       [-119.57341, 34.05011],
       [-119.5667, 34.053452],
       [-119.529603, 34.041155],
       [-119.52064, 34.034262],
       [-119.52177, 34.032247],
       [-119.532413, 34.024949],
       [-119.538847, 34.023988],
       [-119.542449, 34.021082],
       [-119.54828, 34.009819],
       [-119.547072, 34.005469],
       [-119.554472, 33.99782],
       [-119.560464, 33.99553],
       [-119.575636, 33.996009],
       [-119.5902, 33.989712],
       [-119.596877, 33.988611],
       [-119.619082, 33.987228],
       [-119.621117, 33.98899],
       [-119.64771, 33.987786],
       [-119.662825, 33.985889],
       [-119.69011, 33.972225],
       [-119.706952, 33.969178],
       [-119.712363, 33.965422],
       [-119.714696, 33.961439],
       [-119.721206, 33.959583],
       [-119.742966, 33.963877],
       [-119.750438, 33.963759],
       [-119.758141, 33.959212],
       [-119.795938, 33.962929],
       [-119.842748, 33.97034],
       [-119.873358, 33.980375],
       [-119.877057, 33.985757],
       [-119.883033, 34.000802],
       [-119.884896, 34.008814],
       [-119.882531, 34.011674],
       [-119.876916, 34.023527],
       [-119.876329, 34.032087],
       [-119.892821, 34.045529],
       [-119.916216, 34.058351],
       [-119.923337, 34.069361],
       [-119.919155, 34.07728],
       [-119.912857, 34.077508],
       [-119.89113, 34.072856],
       [-119.857304, 34.071298],
       [-119.825865, 34.059794],
       [-119.818742, 34.052997],
       [-119.807825, 34.052127],
       [-119.789798, 34.05726]]],
     [[[-120.46258, 34.042627],
       [-120.440248, 34.036918],
       [-120.418768, 34.052093],
       [-120.415287, 34.05496],
       [-120.411314, 34.052869],
       [-120.403613, 34.050442],
       [-120.396188, 34.050187],
       [-120.390906, 34.051994],
       [-120.374211, 34.062658],
       [-120.368813, 34.06778],
       [-120.368584, 34.071214],
       [-120.370176, 34.074907],
       [-120.368278, 34.076465],
       [-120.362251, 34.073056],
       [-120.354982, 34.059256],
       [-120.36029, 34.05582],
       [-120.358608, 34.050235],
       [-120.346946, 34.046576],
       [-120.331161, 34.049097],
       [-120.319032, 34.041979],
       [-120.313175, 34.036576],
       [-120.302122, 34.023574],
       [-120.304543, 34.021171],
       [-120.317052, 34.018837],
       [-120.347706, 34.020114],
       [-120.35532, 34.017914],
       [-120.35793, 34.015029],
       [-120.375143, 34.018775],
       [-120.409368, 34.032198],
       [-120.415225, 34.032245],
       [-120.419021, 34.028949],
       [-120.427408, 34.025425],
       [-120.454134, 34.028081],
       [-120.459635, 34.031537],
       [-120.465329, 34.038448],
       [-120.46258, 34.042627]]],
     [[[-120.355343, 34.941265],
       [-120.311498, 34.903764],
       [-120.334548, 35.006315],
       [-120.188383, 35.030378],
       [-120.093376, 35.114102],
       [-119.980122, 35.057573],
       [-119.928419, 35.059794],
       [-119.745566, 34.973676],
       [-119.672963, 34.973375],
       [-119.535757, 34.897576],
       [-119.472754, 34.901174],
       [-119.442352, 34.901274],
       [-119.442278, 34.465509],
       [-119.440414, 34.441842],
       [-119.444717, 34.42951],
       [-119.453423, 34.42861],
       [-119.454277, 34.418166],
       [-119.445411, 34.408881],
       [-119.454101, 34.395568],
       [-119.472481, 34.38383],
       [-119.473793, 34.379115],
       [-119.478265, 34.377197],
       [-119.510655, 34.386295],
       [-119.536957, 34.395495],
       [-119.559459, 34.413395],
       [-119.616862, 34.420995],
       [-119.638864, 34.415696],
       [-119.648664, 34.417396],
       [-119.671866, 34.416096],
       [-119.688167, 34.412497],
       [-119.684666, 34.408297],
       [-119.691749, 34.403154],
       [-119.709067, 34.395397],
       [-119.729369, 34.395897],
       [-119.74547, 34.402898],
       [-119.785871, 34.415997],
       [-119.794771, 34.417597],
       [-119.835771, 34.415796],
       [-119.853771, 34.407996],
       [-119.873971, 34.408795],
       [-119.925227, 34.433931],
       [-119.956433, 34.435288],
       [-119.971951, 34.444641],
       [-120.008077, 34.460447],
       [-120.038828, 34.463434],
       [-120.050682, 34.461651],
       [-120.088591, 34.460208],
       [-120.097212, 34.461809],
       [-120.118411, 34.469927],
       [-120.141165, 34.473405],
       [-120.183505, 34.470372],
       [-120.225498, 34.470587],
       [-120.238002, 34.468098],
       [-120.25777, 34.467451],
       [-120.283001, 34.468354],
       [-120.295051, 34.470623],
       [-120.299169, 34.469731],
       [-120.301822, 34.467077],
       [-120.341369, 34.458789],
       [-120.441975, 34.451512],
       [-120.451425, 34.447094],
       [-120.471376, 34.447846],
       [-120.47661, 34.475131],
       [-120.480372, 34.481059],
       [-120.490523, 34.490075],
       [-120.511421, 34.522953],
       [-120.524776, 34.531291],
       [-120.581293, 34.556959],
       [-120.608355, 34.556656],
       [-120.612005, 34.553564],
       [-120.622575, 34.554017],
       [-120.637805, 34.56622],
       [-120.645739, 34.581035],
       [-120.640244, 34.604406],
       [-120.625127, 34.634489],
       [-120.60197, 34.692095],
       [-120.60045, 34.70464],
       [-120.601672, 34.709721],
       [-120.614852, 34.730709],
       [-120.62632, 34.738072],
       [-120.637415, 34.755895],
       [-120.62297, 34.7933],
       [-120.616296, 34.816308],
       [-120.609898, 34.842751],
       [-120.610266, 34.85818],
       [-120.616325, 34.866739],
       [-120.639283, 34.880413],
       [-120.642212, 34.894145],
       [-120.647328, 34.901133],
       [-120.662889, 34.901183],
       [-120.670835, 34.904115],
       [-120.648905, 34.974393],
       [-120.513924, 34.989276],
       [-120.355343, 34.941265]]]]},
   'id': '06083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06085',
    'STATE': '06',
    'COUNTY': '085',
    'NAME': 'Santa Clara',
    'LSAD': 'County',
    'CENSUSAREA': 1290.1},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.654038, 36.950584],
      [-121.7576, 37.04963],
      [-122.015966, 37.165658],
      [-122.152278, 37.286055],
      [-122.190402, 37.431472],
      [-122.081473, 37.477838],
      [-122.052648, 37.459656],
      [-122.045271, 37.460276],
      [-121.855762, 37.484537],
      [-121.472648, 37.48217],
      [-121.405753, 37.31099],
      [-121.459051, 37.282739],
      [-121.404636, 37.155989],
      [-121.282271, 37.183675],
      [-121.226804, 37.134774],
      [-121.215406, 36.961248],
      [-121.501488, 36.971895],
      [-121.581354, 36.899152],
      [-121.654038, 36.950584]]]},
   'id': '06085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06087',
    'STATE': '06',
    'COUNTY': '087',
    'NAME': 'Santa Cruz',
    'LSAD': 'County',
    'CENSUSAREA': 445.17},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.015966, 37.165658],
      [-121.7576, 37.04963],
      [-121.654038, 36.950584],
      [-121.581354, 36.899152],
      [-121.607354, 36.899452],
      [-121.629489, 36.911681],
      [-121.644001, 36.893996],
      [-121.745288, 36.909341],
      [-121.810552, 36.850648],
      [-121.827664, 36.879353],
      [-121.862266, 36.931552],
      [-121.880167, 36.950151],
      [-121.894667, 36.961851],
      [-121.906468, 36.96895],
      [-121.930069, 36.97815],
      [-121.93947, 36.97805],
      [-121.95167, 36.97145],
      [-121.972771, 36.954151],
      [-121.975871, 36.954051],
      [-121.983896, 36.958727],
      [-122.012373, 36.96455],
      [-122.023373, 36.96215],
      [-122.027174, 36.95115],
      [-122.050122, 36.948523],
      [-122.066421, 36.948271],
      [-122.079356, 36.950783],
      [-122.105976, 36.955951],
      [-122.140578, 36.97495],
      [-122.155078, 36.98085],
      [-122.186879, 37.00345],
      [-122.20618, 37.013949],
      [-122.252181, 37.059448],
      [-122.260481, 37.072548],
      [-122.284882, 37.101747],
      [-122.292974, 37.107318],
      [-122.317682, 37.186945],
      [-122.152774, 37.215444],
      [-122.152278, 37.286055],
      [-122.015966, 37.165658]]]},
   'id': '06087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06089',
    'STATE': '06',
    'COUNTY': '089',
    'NAME': 'Shasta',
    'LSAD': 'County',
    'CENSUSAREA': 3775.402},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-123.065426, 40.286971],
      [-123.068789, 40.332233],
      [-122.998682, 40.418142],
      [-122.903738, 40.445071],
      [-122.845954, 40.505181],
      [-122.695298, 40.572514],
      [-122.752266, 40.689642],
      [-122.445453, 41.15793],
      [-122.498376, 41.182675],
      [-122.376123, 41.182904],
      [-121.446495, 41.183484],
      [-121.331786, 41.183886],
      [-121.319972, 40.905886],
      [-121.327826, 40.445367],
      [-121.497635, 40.445591],
      [-121.64633, 40.434726],
      [-121.806539, 40.44495],
      [-121.940989, 40.415331],
      [-122.010316, 40.426558],
      [-122.310412, 40.371064],
      [-122.445021, 40.373398],
      [-122.523997, 40.3945],
      [-122.651341, 40.328288],
      [-122.872769, 40.348848],
      [-122.918472, 40.306758],
      [-123.065426, 40.286971]]]},
   'id': '06089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06091',
    'STATE': '06',
    'COUNTY': '091',
    'NAME': 'Sierra',
    'LSAD': 'County',
    'CENSUSAREA': 953.214},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.001319, 39.722416],
      [-120.003116, 39.445113],
      [-120.003117, 39.445045],
      [-120.505445, 39.446117],
      [-120.575059, 39.52228],
      [-120.654332, 39.526889],
      [-120.755729, 39.452663],
      [-121.022085, 39.391558],
      [-121.034406, 39.514509],
      [-121.009477, 39.639459],
      [-120.873618, 39.775875],
      [-120.792484, 39.709794],
      [-120.147149, 39.707658],
      [-120.001319, 39.722416]]]},
   'id': '06091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06093',
    'STATE': '06',
    'COUNTY': '093',
    'NAME': 'Siskiyou',
    'LSAD': 'County',
    'CENSUSAREA': 6277.887},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.289533, 42.007764],
      [-122.289527, 42.007764],
      [-122.161328, 42.007637],
      [-122.160438, 42.007637],
      [-122.156666, 42.007384],
      [-122.155408, 42.007429],
      [-122.001119, 42.004017],
      [-121.708199, 42.000815],
      [-121.705045, 42.000766],
      [-121.689159, 42.000584],
      [-121.675348, 42.000351],
      [-121.580865, 41.998668],
      [-121.52025, 41.997983],
      [-121.44754, 41.997169],
      [-121.446495, 41.183484],
      [-122.376123, 41.182904],
      [-122.498376, 41.182675],
      [-122.522636, 41.213525],
      [-122.50389, 41.342985],
      [-122.585241, 41.359008],
      [-122.653686, 41.289237],
      [-122.811342, 41.202451],
      [-122.961347, 41.181525],
      [-122.966949, 41.08205],
      [-122.897411, 41.028475],
      [-122.917529, 40.99399],
      [-123.036808, 41.004058],
      [-123.141338, 41.079178],
      [-123.23948, 41.075763],
      [-123.273402, 41.122891],
      [-123.408291, 41.179944],
      [-123.474085, 41.366193],
      [-123.661363, 41.38209],
      [-123.612395, 41.448954],
      [-123.719089, 41.595258],
      [-123.660205, 41.714055],
      [-123.703768, 41.829117],
      [-123.642812, 41.889353],
      [-123.565442, 41.903141],
      [-123.518075, 42.000436],
      [-123.501997, 42.000527],
      [-123.498896, 42.000474],
      [-123.49883, 42.000525],
      [-123.347562, 41.999108],
      [-123.230764, 42.003845],
      [-123.230762, 42.003845],
      [-123.154908, 42.008036],
      [-123.045254, 42.003049],
      [-123.001152, 42.003],
      [-122.634739, 42.004858],
      [-122.501135, 42.00846],
      [-122.378193, 42.009518],
      [-122.289533, 42.007764]]]},
   'id': '06093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06095',
    'STATE': '06',
    'COUNTY': '095',
    'NAME': 'Solano',
    'LSAD': 'County',
    'CENSUSAREA': 821.765},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.088835, 38.384151],
      [-122.103281, 38.513348],
      [-122.011673, 38.488991],
      [-121.940285, 38.533384],
      [-121.694679, 38.52705],
      [-121.693697, 38.313732],
      [-121.593273, 38.313089],
      [-121.605258, 38.295352],
      [-121.60073, 38.278375],
      [-121.60401, 38.270103],
      [-121.600249, 38.257817],
      [-121.601993, 38.252426],
      [-121.602121, 38.241674],
      [-121.603208, 38.237283],
      [-121.602763, 38.230219],
      [-121.688233, 38.145421],
      [-121.713926, 38.084542],
      [-121.862462, 38.06603],
      [-121.865189, 38.059909],
      [-121.869469, 38.054519],
      [-122.050386, 38.060198],
      [-122.123973, 38.035717],
      [-122.266669, 38.06007],
      [-122.273006, 38.07438],
      [-122.282824, 38.082889],
      [-122.301804, 38.105142],
      [-122.314567, 38.115287],
      [-122.366273, 38.141467],
      [-122.39638, 38.149976],
      [-122.403514, 38.150624],
      [-122.406978, 38.155663],
      [-122.406786, 38.155632],
      [-122.19538, 38.155017],
      [-122.205982, 38.315713],
      [-122.064779, 38.315912],
      [-122.088835, 38.384151]]]},
   'id': '06095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06097',
    'STATE': '06',
    'COUNTY': '097',
    'NAME': 'Sonoma',
    'LSAD': 'County',
    'CENSUSAREA': 1575.849},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-123.26871, 38.808369],
      [-123.136253, 38.809136],
      [-123.080997, 38.852438],
      [-122.821592, 38.85014],
      [-122.627396, 38.667506],
      [-122.646268, 38.59912],
      [-122.543893, 38.519966],
      [-122.378987, 38.250714],
      [-122.406786, 38.155632],
      [-122.406978, 38.155663],
      [-122.403514, 38.150624],
      [-122.40358, 38.15063],
      [-122.409798, 38.136231],
      [-122.439577, 38.116923],
      [-122.450377, 38.116269],
      [-122.454958, 38.118887],
      [-122.484411, 38.11496],
      [-122.489974, 38.112014],
      [-122.490727, 38.109755],
      [-122.565093, 38.182217],
      [-122.648986, 38.181077],
      [-122.7399, 38.207018],
      [-122.901726, 38.316943],
      [-123.002911, 38.295708],
      [-123.004122, 38.297012],
      [-123.024333, 38.310573],
      [-123.038742, 38.313576],
      [-123.051061, 38.310693],
      [-123.053476, 38.305722],
      [-123.052021, 38.302246],
      [-123.053504, 38.299385],
      [-123.058239, 38.298355],
      [-123.063671, 38.302178],
      [-123.074684, 38.322574],
      [-123.068437, 38.33521],
      [-123.068265, 38.359865],
      [-123.085572, 38.390525],
      [-123.103706, 38.415541],
      [-123.122379, 38.437314],
      [-123.128825, 38.450418],
      [-123.145325, 38.459422],
      [-123.166428, 38.474947],
      [-123.202277, 38.494314],
      [-123.249797, 38.511045],
      [-123.287156, 38.540223],
      [-123.297151, 38.543452],
      [-123.331899, 38.565542],
      [-123.343338, 38.590008],
      [-123.349612, 38.596805],
      [-123.371876, 38.607235],
      [-123.379303, 38.621953],
      [-123.398166, 38.647044],
      [-123.40301, 38.649449],
      [-123.405663, 38.656729],
      [-123.43272, 38.687131],
      [-123.441774, 38.699744],
      [-123.461291, 38.717001],
      [-123.490021, 38.732213],
      [-123.514784, 38.741966],
      [-123.525152, 38.753801],
      [-123.533535, 38.768408],
      [-123.26871, 38.808369]]]},
   'id': '06097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06099',
    'STATE': '06',
    'COUNTY': '099',
    'NAME': 'Stanislaus',
    'LSAD': 'County',
    'CENSUSAREA': 1494.827},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.931374, 37.421753],
      [-120.964223, 37.345782],
      [-121.226804, 37.134774],
      [-121.282271, 37.183675],
      [-121.404636, 37.155989],
      [-121.459051, 37.282739],
      [-121.405753, 37.31099],
      [-121.472648, 37.48217],
      [-121.471925, 37.481783],
      [-121.333388, 37.59105],
      [-121.273751, 37.63833],
      [-121.258171, 37.653495],
      [-121.155849, 37.719844],
      [-120.995754, 37.760152],
      [-120.920665, 37.738392],
      [-120.926449, 38.077421],
      [-120.652673, 37.831422],
      [-120.387613, 37.633704],
      [-120.387329, 37.633499],
      [-120.38767, 37.633364],
      [-120.931374, 37.421753]]]},
   'id': '06099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06101',
    'STATE': '06',
    'COUNTY': '101',
    'NAME': 'Sutter',
    'LSAD': 'County',
    'CENSUSAREA': 602.41},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.484396, 38.734598],
      [-121.521767, 38.736401],
      [-121.602894, 38.735838],
      [-121.685998, 38.763371],
      [-121.723149, 38.851306],
      [-121.835488, 38.924481],
      [-121.847964, 39.070817],
      [-121.945509, 39.180959],
      [-121.908269, 39.303878],
      [-121.62376, 39.295621],
      [-121.571297, 38.938918],
      [-121.414885, 38.996429],
      [-121.469356, 38.925992],
      [-121.484396, 38.734598]]]},
   'id': '06101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06103',
    'STATE': '06',
    'COUNTY': '103',
    'NAME': 'Tehama',
    'LSAD': 'County',
    'CENSUSAREA': 2949.709},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-122.934013, 39.978131],
      [-122.989623, 40.145496],
      [-122.989015, 40.250145],
      [-123.065426, 40.286971],
      [-122.918472, 40.306758],
      [-122.872769, 40.348848],
      [-122.651341, 40.328288],
      [-122.523997, 40.3945],
      [-122.445021, 40.373398],
      [-122.310412, 40.371064],
      [-122.010316, 40.426558],
      [-121.940989, 40.415331],
      [-121.806539, 40.44495],
      [-121.64633, 40.434726],
      [-121.497635, 40.445591],
      [-121.470395, 40.350213],
      [-121.345571, 40.312667],
      [-121.368395, 40.21223],
      [-121.436886, 40.151905],
      [-121.586407, 40.100522],
      [-121.646032, 39.982527],
      [-121.703241, 39.98423],
      [-121.804041, 39.884344],
      [-122.044865, 39.883771],
      [-122.046471, 39.797648],
      [-122.937654, 39.798156],
      [-122.934013, 39.978131]]]},
   'id': '06103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06105',
    'STATE': '06',
    'COUNTY': '105',
    'NAME': 'Trinity',
    'LSAD': 'County',
    'CENSUSAREA': 3179.254},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-123.065426, 40.286971],
      [-122.989015, 40.250145],
      [-122.989623, 40.145496],
      [-122.934013, 39.978131],
      [-123.544563, 39.977015],
      [-123.544458, 40.001923],
      [-123.544059, 40.739386],
      [-123.55985, 40.829584],
      [-123.623826, 40.929421],
      [-123.560163, 40.950257],
      [-123.481457, 40.914957],
      [-123.408291, 41.179944],
      [-123.273402, 41.122891],
      [-123.23948, 41.075763],
      [-123.141338, 41.079178],
      [-123.036808, 41.004058],
      [-122.917529, 40.99399],
      [-122.897411, 41.028475],
      [-122.966949, 41.08205],
      [-122.961347, 41.181525],
      [-122.811342, 41.202451],
      [-122.653686, 41.289237],
      [-122.585241, 41.359008],
      [-122.50389, 41.342985],
      [-122.522636, 41.213525],
      [-122.498376, 41.182675],
      [-122.445453, 41.15793],
      [-122.752266, 40.689642],
      [-122.695298, 40.572514],
      [-122.845954, 40.505181],
      [-122.903738, 40.445071],
      [-122.998682, 40.418142],
      [-123.068789, 40.332233],
      [-123.065426, 40.286971]]]},
   'id': '06105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06107',
    'STATE': '06',
    'COUNTY': '107',
    'NAME': 'Tulare',
    'LSAD': 'County',
    'CENSUSAREA': 4824.215},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-119.214033, 35.790489],
      [-119.534559, 35.789758],
      [-119.538116, 35.789567],
      [-119.529358, 36.26985],
      [-119.474607, 36.269025],
      [-119.474892, 36.400953],
      [-119.528792, 36.401465],
      [-119.573194, 36.488835],
      [-119.466322, 36.575238],
      [-119.305102, 36.573725],
      [-119.304625, 36.660606],
      [-118.984779, 36.657147],
      [-118.982441, 36.741646],
      [-118.360586, 36.744773],
      [-118.366328, 36.691635],
      [-118.274624, 36.597334],
      [-118.21482, 36.435036],
      [-118.100317, 36.346137],
      [-118.127147, 36.279656],
      [-118.033611, 36.008944],
      [-118.003577, 35.983718],
      [-117.980761, 35.867515],
      [-117.998258, 35.868782],
      [-118.008043, 35.789161],
      [-118.270456, 35.790009],
      [-119.214033, 35.790489]]]},
   'id': '06107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06109',
    'STATE': '06',
    'COUNTY': '109',
    'NAME': 'Tuolumne',
    'LSAD': 'County',
    'CENSUSAREA': 2220.884},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-120.652673, 37.831422],
      [-120.514952, 37.95339],
      [-120.534814, 37.991174],
      [-120.504516, 37.991144],
      [-120.176177, 38.374014],
      [-120.019951, 38.433521],
      [-119.884749, 38.356185],
      [-119.753481, 38.416759],
      [-119.639205, 38.32688],
      [-119.632671, 38.198858],
      [-119.345922, 38.083113],
      [-119.30459, 38.023891],
      [-119.308389, 37.946824],
      [-119.200283, 37.885827],
      [-119.20128, 37.804329],
      [-119.268979, 37.73923],
      [-119.288381, 37.74503],
      [-119.293382, 37.767929],
      [-119.308995, 37.777986],
      [-119.535699, 37.904122],
      [-119.646203, 37.846823],
      [-119.667203, 37.801224],
      [-119.809409, 37.755025],
      [-119.907013, 37.757926],
      [-120.079508, 37.828808],
      [-120.127226, 37.781566],
      [-120.345437, 37.724787],
      [-120.325943, 37.648966],
      [-120.391931, 37.683559],
      [-120.387613, 37.633704],
      [-120.652673, 37.831422]]]},
   'id': '06109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06111',
    'STATE': '06',
    'COUNTY': '111',
    'NAME': 'Ventura',
    'LSAD': 'County',
    'CENSUSAREA': 1843.133},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-119.543842, 33.280329],
       [-119.532941, 33.284728],
       [-119.528141, 33.284929],
       [-119.50504, 33.272829],
       [-119.48278, 33.263973],
       [-119.465717, 33.259239],
       [-119.458466, 33.254661],
       [-119.429559, 33.228167],
       [-119.444269, 33.21919],
       [-119.464725, 33.215432],
       [-119.476029, 33.21552],
       [-119.500684, 33.220569],
       [-119.511659, 33.223027],
       [-119.517514, 33.226737],
       [-119.545872, 33.233406],
       [-119.564971, 33.24744],
       [-119.565641, 33.250029],
       [-119.566014, 33.252639],
       [-119.570642, 33.257729],
       [-119.578942, 33.278628],
       [-119.562042, 33.271129],
       [-119.555242, 33.273429],
       [-119.547642, 33.280328],
       [-119.543842, 33.280329]]],
     [[[-119.422972, 34.004368],
       [-119.427589, 34.006445],
       [-119.437734, 34.01],
       [-119.441116, 34.012426],
       [-119.441226, 34.014075],
       [-119.433912, 34.015975],
       [-119.421376, 34.015012],
       [-119.411317, 34.008005],
       [-119.396251, 34.005918],
       [-119.389983, 34.006099],
       [-119.366591, 34.016785],
       [-119.357462, 34.015919],
       [-119.376396, 34.010551],
       [-119.391551, 34.002505],
       [-119.414528, 34.004994],
       [-119.422972, 34.004368]]],
     [[[-118.881364, 34.790629],
       [-118.796692, 34.616559],
       [-118.650859, 34.320484],
       [-118.636789, 34.291804],
       [-118.633473, 34.269626],
       [-118.668152, 34.168195],
       [-118.788889, 34.168214],
       [-118.940965, 34.07483],
       [-118.944887, 34.04534],
       [-118.954722, 34.048167],
       [-118.977751, 34.059822],
       [-118.99698, 34.065943],
       [-119.004644, 34.066231],
       [-119.037494, 34.083111],
       [-119.069959, 34.09047],
       [-119.088536, 34.09831],
       [-119.098216, 34.099334],
       [-119.109784, 34.094566],
       [-119.130169, 34.100102],
       [-119.159554, 34.119653],
       [-119.18864, 34.139005],
       [-119.20314, 34.144505],
       [-119.211241, 34.144905],
       [-119.216441, 34.146105],
       [-119.227743, 34.161728],
       [-119.237142, 34.175804],
       [-119.257043, 34.213304],
       [-119.265927, 34.234609],
       [-119.270144, 34.252903],
       [-119.278644, 34.266902],
       [-119.290945, 34.274902],
       [-119.302131, 34.272761],
       [-119.313034, 34.275689],
       [-119.337475, 34.290576],
       [-119.349187, 34.304383],
       [-119.370356, 34.319486],
       [-119.37578, 34.321118],
       [-119.388249, 34.317398],
       [-119.390449, 34.318198],
       [-119.42777, 34.353016],
       [-119.431066, 34.355297],
       [-119.435888, 34.355839],
       [-119.461036, 34.374064],
       [-119.472678, 34.375628],
       [-119.478265, 34.377197],
       [-119.473793, 34.379115],
       [-119.472481, 34.38383],
       [-119.454101, 34.395568],
       [-119.445411, 34.408881],
       [-119.454277, 34.418166],
       [-119.453423, 34.42861],
       [-119.444717, 34.42951],
       [-119.440414, 34.441842],
       [-119.442278, 34.465509],
       [-119.442352, 34.901274],
       [-119.276946, 34.879675],
       [-119.243645, 34.814178],
       [-118.976721, 34.812199],
       [-118.881364, 34.790629]]]]},
   'id': '06111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06113',
    'STATE': '06',
    'COUNTY': '113',
    'NAME': 'Yolo',
    'LSAD': 'County',
    'CENSUSAREA': 1014.689},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.504139, 38.466563],
      [-121.521641, 38.360104],
      [-121.593273, 38.313089],
      [-121.693697, 38.313732],
      [-121.694679, 38.52705],
      [-121.940285, 38.533384],
      [-122.011673, 38.488991],
      [-122.103281, 38.513348],
      [-122.111563, 38.524051],
      [-122.128123, 38.583697],
      [-122.151772, 38.625297],
      [-122.168349, 38.619297],
      [-122.164944, 38.642462],
      [-122.287999, 38.839932],
      [-122.395056, 38.864245],
      [-122.340172, 38.924246],
      [-122.337967, 38.923945],
      [-121.835488, 38.924481],
      [-121.723149, 38.851306],
      [-121.685998, 38.763371],
      [-121.602894, 38.735838],
      [-121.605774, 38.718319],
      [-121.630446, 38.697571],
      [-121.62576, 38.673133],
      [-121.594069, 38.644106],
      [-121.576068, 38.648604],
      [-121.549869, 38.599405],
      [-121.527667, 38.604604],
      [-121.506269, 38.586305],
      [-121.520965, 38.566205],
      [-121.51129, 38.54629],
      [-121.559167, 38.498007],
      [-121.538766, 38.474707],
      [-121.504139, 38.466563]]]},
   'id': '06113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US06115',
    'STATE': '06',
    'COUNTY': '115',
    'NAME': 'Yuba',
    'LSAD': 'County',
    'CENSUSAREA': 631.839},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-121.333427, 39.468729],
      [-121.305122, 39.519585],
      [-121.149907, 39.526446],
      [-121.076695, 39.597264],
      [-121.05267, 39.612334],
      [-121.050922, 39.613801],
      [-121.009477, 39.639459],
      [-121.034406, 39.514509],
      [-121.022085, 39.391558],
      [-121.127481, 39.380237],
      [-121.266911, 39.271609],
      [-121.279533, 39.034618],
      [-121.414885, 38.996429],
      [-121.571297, 38.938918],
      [-121.62376, 39.295621],
      [-121.407527, 39.339754],
      [-121.333427, 39.468729]]]},
   'id': '06115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08001',
    'STATE': '08',
    'COUNTY': '001',
    'NAME': 'Adams',
    'LSAD': 'County',
    'CENSUSAREA': 1167.653},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-103.706547, 39.739894],
      [-104.734969, 39.740302],
      [-104.884646, 39.740156],
      [-104.856377, 39.768673],
      [-104.734601, 39.769181],
      [-104.76247, 39.82298],
      [-104.619906, 39.826633],
      [-104.600435, 39.899459],
      [-104.692934, 39.914183],
      [-104.79091, 39.79825],
      [-105.053246, 39.791063],
      [-105.053162, 39.799239],
      [-105.052829, 39.803874],
      [-105.053256, 39.806497],
      [-105.05327, 39.820028],
      [-105.05319, 39.849251],
      [-105.0529, 39.852042],
      [-105.053245, 39.860018],
      [-105.052884, 39.913795],
      [-104.961408, 40.000337],
      [-104.923689, 40.000327],
      [-104.922153, 40.00033],
      [-104.150332, 40.000856],
      [-103.705701, 40.001366],
      [-103.705826, 39.999984],
      [-103.706547, 39.739894]]]},
   'id': '08001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08003',
    'STATE': '08',
    'COUNTY': '003',
    'NAME': 'Alamosa',
    'LSAD': 'County',
    'CENSUSAREA': 722.643},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.485516, 37.577899],
      [-105.743339, 37.356798],
      [-106.038912, 37.356953],
      [-106.039331, 37.400852],
      [-106.038413, 37.748353],
      [-105.457255, 37.751464],
      [-105.485516, 37.577899]]]},
   'id': '08003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08005',
    'STATE': '08',
    'COUNTY': '005',
    'NAME': 'Arapahoe',
    'LSAD': 'County',
    'CENSUSAREA': 798.1},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.884646, 39.740156],
      [-104.734969, 39.740302],
      [-103.706547, 39.739894],
      [-103.707072, 39.566295],
      [-103.714355, 39.566331],
      [-104.660626, 39.565909],
      [-105.04874, 39.566088],
      [-105.05414, 39.566088],
      [-105.053439, 39.621423],
      [-105.053411, 39.631586],
      [-105.034822, 39.627809],
      [-105.032038, 39.657087],
      [-105.015696, 39.678684],
      [-104.931703, 39.653044],
      [-104.913341, 39.624213],
      [-104.911935, 39.624346],
      [-104.911686, 39.624342],
      [-104.908862, 39.624301],
      [-104.908587, 39.624297],
      [-104.906942, 39.624268],
      [-104.906394, 39.624259],
      [-104.90549, 39.624158],
      [-104.90403, 39.623995],
      [-104.902451, 39.623939],
      [-104.901763, 39.623907],
      [-104.901719, 39.623905],
      [-104.901561, 39.623905],
      [-104.900933, 39.623906],
      [-104.899371, 39.624097],
      [-104.899339, 39.624097],
      [-104.899263, 39.624097],
      [-104.898639, 39.624099],
      [-104.897084, 39.624127],
      [-104.894642, 39.624173],
      [-104.894522, 39.624175],
      [-104.892667, 39.624135],
      [-104.891733, 39.624115],
      [-104.889813, 39.624191],
      [-104.889661, 39.6242],
      [-104.889037, 39.624176],
      [-104.888758, 39.624165],
      [-104.888331, 39.624143],
      [-104.887773, 39.624116],
      [-104.885282, 39.624129],
      [-104.88528, 39.627128],
      [-104.885213, 39.629087],
      [-104.885218, 39.629513],
      [-104.885231, 39.631345],
      [-104.885156, 39.633467],
      [-104.885173, 39.636268],
      [-104.885167, 39.636493],
      [-104.885132, 39.638093],
      [-104.885121, 39.638283],
      [-104.885124, 39.638444],
      [-104.885128, 39.638637],
      [-104.885129, 39.638788],
      [-104.885119, 39.638961],
      [-104.885112, 39.639262],
      [-104.884936, 39.639344],
      [-104.884765, 39.639425],
      [-104.88368, 39.639939],
      [-104.882917, 39.640301],
      [-104.882827, 39.640345],
      [-104.880929, 39.641216],
      [-104.880329, 39.641491],
      [-104.880322, 39.641651],
      [-104.880326, 39.64173],
      [-104.880326, 39.641819],
      [-104.880338, 39.641955],
      [-104.88034, 39.641993],
      [-104.880368, 39.642193],
      [-104.880381, 39.642475],
      [-104.880372, 39.642605],
      [-104.880313, 39.643949],
      [-104.880313, 39.645902],
      [-104.880239, 39.645993],
      [-104.880239, 39.646068],
      [-104.880246, 39.64653],
      [-104.880246, 39.647751],
      [-104.880228, 39.647994],
      [-104.880086, 39.650773],
      [-104.88014, 39.653057],
      [-104.880078, 39.653055],
      [-104.878034, 39.653051],
      [-104.877498, 39.653051],
      [-104.877497, 39.653052],
      [-104.877218, 39.652875],
      [-104.876306, 39.652295],
      [-104.876297, 39.652021],
      [-104.876281, 39.651459],
      [-104.87624, 39.65011],
      [-104.876195, 39.6486],
      [-104.876195, 39.648583],
      [-104.876151, 39.647061],
      [-104.876149, 39.647004],
      [-104.87613, 39.646499],
      [-104.876224, 39.644301],
      [-104.875552, 39.644617],
      [-104.857203, 39.653246],
      [-104.85683, 39.653419],
      [-104.856753, 39.653456],
      [-104.856038, 39.654178],
      [-104.854747, 39.654888],
      [-104.854474, 39.655011],
      [-104.852944, 39.655706],
      [-104.850762, 39.656305],
      [-104.849397, 39.656482],
      [-104.848967, 39.656538],
      [-104.84812, 39.656648],
      [-104.847697, 39.656704],
      [-104.847639, 39.656712],
      [-104.847119, 39.65678],
      [-104.847449, 39.656783],
      [-104.847536, 39.656785],
      [-104.847604, 39.656786],
      [-104.847733, 39.656788],
      [-104.847731, 39.656927],
      [-104.84773, 39.657239],
      [-104.84773, 39.657789],
      [-104.84794, 39.657824],
      [-104.848048, 39.657842],
      [-104.848336, 39.657891],
      [-104.848332, 39.659161],
      [-104.884646, 39.740156]]]},
   'id': '08005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08007',
    'STATE': '08',
    'COUNTY': '007',
    'NAME': 'Archuleta',
    'LSAD': 'County',
    'CENSUSAREA': 1350.175},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.476228, 36.993472],
      [-106.617159, 36.992967],
      [-106.617125, 36.993004],
      [-106.628652, 36.993175],
      [-106.628733, 36.993161],
      [-106.661344, 36.993243],
      [-106.675626, 36.993123],
      [-106.869796, 36.992426],
      [-107.000592, 37.000009],
      [-107.420913, 37.000005],
      [-107.420915, 37.000005],
      [-107.481737, 36.999973],
      [-107.482131, 37.422673],
      [-107.12868, 37.422942],
      [-107.128737, 37.392409],
      [-106.710775, 37.404228],
      [-106.678373, 37.403596],
      [-106.678354, 37.228566],
      [-106.476228, 36.993472]]]},
   'id': '08007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08009',
    'STATE': '08',
    'COUNTY': '009',
    'NAME': 'Baca',
    'LSAD': 'County',
    'CENSUSAREA': 2554.967},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.04224, 36.993083],
      [-102.054503, 36.993109],
      [-102.184271, 36.993593],
      [-102.208316, 36.99373],
      [-102.355288, 36.994506],
      [-102.355367, 36.994575],
      [-102.570896, 36.995136],
      [-102.875481, 36.999628],
      [-102.979613, 36.998549],
      [-102.985807, 36.998571],
      [-102.986976, 36.998524],
      [-103.002199, 37.000104],
      [-103.086105, 36.999864],
      [-103.075938, 37.64342],
      [-102.747615, 37.643642],
      [-102.041585, 37.644282],
      [-102.041618, 37.607868],
      [-102.041894, 37.557977],
      [-102.041899, 37.541186],
      [-102.042016, 37.535261],
      [-102.041786, 37.506066],
      [-102.041801, 37.469488],
      [-102.041755, 37.434855],
      [-102.041669, 37.43474],
      [-102.041676, 37.409898],
      [-102.041826, 37.389191],
      [-102.042089, 37.352819],
      [-102.041974, 37.352613],
      [-102.041817, 37.30949],
      [-102.041664, 37.29765],
      [-102.041963, 37.258164],
      [-102.042002, 37.141744],
      [-102.042135, 37.125021],
      [-102.042092, 37.125021],
      [-102.041809, 37.111973],
      [-102.041983, 37.106551],
      [-102.04192, 37.035083],
      [-102.041749, 37.034397],
      [-102.041921, 37.032178],
      [-102.04195, 37.030805],
      [-102.041952, 37.024742],
      [-102.04224, 36.993083]]]},
   'id': '08009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08011',
    'STATE': '08',
    'COUNTY': '011',
    'NAME': 'Bent',
    'LSAD': 'County',
    'CENSUSAREA': 1512.861},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-103.403592, 37.792397],
      [-103.399938, 38.265435],
      [-102.74233, 38.266971],
      [-102.747615, 37.643642],
      [-103.075938, 37.64342],
      [-103.404339, 37.643576],
      [-103.403592, 37.792397]]]},
   'id': '08011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08013',
    'STATE': '08',
    'COUNTY': '013',
    'NAME': 'Boulder',
    'LSAD': 'County',
    'CENSUSAREA': 726.289},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.055089, 40.261793],
      [-105.055375, 40.144929],
      [-105.055376, 40.144692],
      [-105.055432, 40.000251],
      [-105.052823, 40.00026],
      [-105.052774, 39.986398],
      [-105.052792, 39.979489],
      [-105.052793, 39.97879],
      [-105.052794, 39.978581],
      [-105.052797, 39.977574],
      [-105.054688, 39.976889],
      [-105.057654, 39.97586],
      [-105.05784, 39.975787],
      [-105.058567, 39.975502],
      [-105.060445, 39.974768],
      [-105.060968, 39.974563],
      [-105.063527, 39.973444],
      [-105.066609, 39.971925],
      [-105.06742, 39.971289],
      [-105.069605, 39.970227],
      [-105.070468, 39.969721],
      [-105.071886, 39.968544],
      [-105.073059, 39.967308],
      [-105.074735, 39.965752],
      [-105.0757, 39.964623],
      [-105.078632, 39.962182],
      [-105.079885, 39.961657],
      [-105.07999, 39.961613],
      [-105.080562, 39.961373],
      [-105.081957, 39.961003],
      [-105.082093, 39.960967],
      [-105.084027, 39.960454],
      [-105.085583, 39.960123],
      [-105.085764, 39.960084],
      [-105.085877, 39.960061],
      [-105.085942, 39.960055],
      [-105.08595, 39.960055],
      [-105.085961, 39.960054],
      [-105.085982, 39.960052],
      [-105.086002, 39.96005],
      [-105.086082, 39.960043],
      [-105.086858, 39.959972],
      [-105.086951, 39.959741],
      [-105.087033, 39.959538],
      [-105.08731, 39.959551],
      [-105.087393, 39.959555],
      [-105.087748, 39.959571],
      [-105.087748, 39.95888],
      [-105.087748, 39.958707],
      [-105.087748, 39.958197],
      [-105.088636, 39.958182],
      [-105.088616, 39.958052],
      [-105.088615, 39.958042],
      [-105.088614, 39.958037],
      [-105.088613, 39.95803],
      [-105.088597, 39.957919],
      [-105.088588, 39.957865],
      [-105.088441, 39.957858],
      [-105.088332, 39.957853],
      [-105.088298, 39.957851],
      [-105.08787, 39.95784],
      [-105.087841, 39.957839],
      [-105.087834, 39.957839],
      [-105.087724, 39.957838],
      [-105.087315, 39.957833],
      [-105.086948, 39.957843],
      [-105.086861, 39.957849],
      [-105.085846, 39.957893],
      [-105.085794, 39.957938],
      [-105.085754, 39.957971],
      [-105.085734, 39.957988],
      [-105.085717, 39.958003],
      [-105.085702, 39.958016],
      [-105.085683, 39.95802],
      [-105.085673, 39.958022],
      [-105.085663, 39.958024],
      [-105.08565, 39.958027],
      [-105.085638, 39.95803],
      [-105.085611, 39.958036],
      [-105.08555, 39.95805],
      [-105.085476, 39.958066],
      [-105.08541, 39.958081],
      [-105.085379, 39.958088],
      [-105.084891, 39.958201],
      [-105.083963, 39.958302],
      [-105.083267, 39.958267],
      [-105.083261, 39.957915],
      [-105.082801, 39.957912],
      [-105.082768, 39.957912],
      [-105.082756, 39.957912],
      [-105.082534, 39.957911],
      [-105.082463, 39.957908],
      [-105.082455, 39.957908],
      [-105.082448, 39.957908],
      [-105.080966, 39.957839],
      [-105.080602, 39.957822],
      [-105.080305, 39.957808],
      [-105.080028, 39.957847],
      [-105.079729, 39.95784],
      [-105.079302, 39.957829],
      [-105.079166, 39.957826],
      [-105.077331, 39.95781],
      [-105.076823, 39.957805],
      [-105.076586, 39.957805],
      [-105.075858, 39.957803],
      [-105.075312, 39.957802],
      [-105.074639, 39.9578],
      [-105.072278, 39.957787],
      [-105.071933, 39.957785],
      [-105.071916, 39.957785],
      [-105.071854, 39.957785],
      [-105.07178, 39.957785],
      [-105.071778, 39.957502],
      [-105.071738, 39.950585],
      [-105.071893, 39.950585],
      [-105.072241, 39.950586],
      [-105.072518, 39.950586],
      [-105.075827, 39.950592],
      [-105.076104, 39.950592],
      [-105.076102, 39.947539],
      [-105.076102, 39.947048],
      [-105.076102, 39.946892],
      [-105.076102, 39.946353],
      [-105.076101, 39.944607],
      [-105.076101, 39.943904],
      [-105.076101, 39.943726],
      [-105.076101, 39.943456],
      [-105.076101, 39.943185],
      [-105.085739, 39.943185],
      [-105.090305, 39.943137],
      [-105.090324, 39.943137],
      [-105.090532, 39.943137],
      [-105.090541, 39.943137],
      [-105.090677, 39.943135],
      [-105.090897, 39.943134],
      [-105.090912, 39.941583],
      [-105.090799, 39.941546],
      [-105.090849, 39.939979],
      [-105.090819, 39.939971],
      [-105.090798, 39.939966],
      [-105.090782, 39.939962],
      [-105.090787, 39.939887],
      [-105.090787, 39.939879],
      [-105.09083, 39.938827],
      [-105.090851, 39.937836],
      [-105.090854, 39.936386],
      [-105.090944, 39.936387],
      [-105.09099, 39.936387],
      [-105.09101, 39.936386],
      [-105.093793, 39.936385],
      [-105.102719, 39.936386],
      [-105.102808, 39.936386],
      [-105.107539, 39.936386],
      [-105.107886, 39.936411],
      [-105.107985, 39.936417],
      [-105.10802, 39.936419],
      [-105.108678, 39.936461],
      [-105.108704, 39.936463],
      [-105.108727, 39.936464],
      [-105.108746, 39.936465],
      [-105.10879, 39.936468],
      [-105.109036, 39.936484],
      [-105.109038, 39.936134],
      [-105.109038, 39.936124],
      [-105.109039, 39.936119],
      [-105.109039, 39.936114],
      [-105.109039, 39.936095],
      [-105.109039, 39.936061],
      [-105.109041, 39.935754],
      [-105.109041, 39.935664],
      [-105.109224, 39.935546],
      [-105.109358, 39.935463],
      [-105.109979, 39.935062],
      [-105.110014, 39.935039],
      [-105.112293, 39.933567],
      [-105.112311, 39.933555],
      [-105.112368, 39.933518],
      [-105.112504, 39.933426],
      [-105.112775, 39.933219],
      [-105.112874, 39.933133],
      [-105.112975, 39.933034],
      [-105.113155, 39.93283],
      [-105.113232, 39.932731],
      [-105.113301, 39.932627],
      [-105.113388, 39.932479],
      [-105.113488, 39.932275],
      [-105.113541, 39.932126],
      [-105.113544, 39.932118],
      [-105.113566, 39.932055],
      [-105.113597, 39.931942],
      [-105.113626, 39.931805],
      [-105.113652, 39.931597],
      [-105.113657, 39.93144],
      [-105.11365, 39.931279],
      [-105.113636, 39.931163],
      [-105.113606, 39.930994],
      [-105.113579, 39.930895],
      [-105.113575, 39.930882],
      [-105.113569, 39.930862],
      [-105.113515, 39.930702],
      [-105.113446, 39.930541],
      [-105.113296, 39.930249],
      [-105.112408, 39.928626],
      [-105.112407, 39.928625],
      [-105.112269, 39.928399],
      [-105.11219, 39.928284],
      [-105.112132, 39.9282],
      [-105.11212, 39.928185],
      [-105.111966, 39.927989],
      [-105.111784, 39.927785],
      [-105.111558, 39.92756],
      [-105.111479, 39.927488],
      [-105.111189, 39.927252],
      [-105.110917, 39.927058],
      [-105.110584, 39.92685],
      [-105.109267, 39.926027],
      [-105.109259, 39.926022],
      [-105.109023, 39.925874],
      [-105.109043, 39.925744],
      [-105.109052, 39.925619],
      [-105.109141, 39.924586],
      [-105.109142, 39.924356],
      [-105.109412, 39.924438],
      [-105.109527, 39.924473],
      [-105.109641, 39.924507],
      [-105.109826, 39.924575],
      [-105.109921, 39.92462],
      [-105.109965, 39.924641],
      [-105.10998, 39.924648],
      [-105.110027, 39.924671],
      [-105.110043, 39.92468],
      [-105.110061, 39.92469],
      [-105.11007, 39.924695],
      [-105.110077, 39.924698],
      [-105.110214, 39.92477],
      [-105.110454, 39.924908],
      [-105.110628, 39.925009],
      [-105.110747, 39.925082],
      [-105.110767, 39.925094],
      [-105.110782, 39.925103],
      [-105.110794, 39.92511],
      [-105.1108, 39.925114],
      [-105.11087, 39.925157],
      [-105.110903, 39.925177],
      [-105.110958, 39.925211],
      [-105.110974, 39.925221],
      [-105.110983, 39.925227],
      [-105.110993, 39.925233],
      [-105.111315, 39.925433],
      [-105.111376, 39.925471],
      [-105.111383, 39.925475],
      [-105.111475, 39.925532],
      [-105.111631, 39.925636],
      [-105.111645, 39.925645],
      [-105.111659, 39.925654],
      [-105.111682, 39.925669],
      [-105.111823, 39.925771],
      [-105.111845, 39.925787],
      [-105.111851, 39.925791],
      [-105.111921, 39.925841],
      [-105.112246, 39.926106],
      [-105.112265, 39.926122],
      [-105.112274, 39.926129],
      [-105.112355, 39.926195],
      [-105.112362, 39.926201],
      [-105.112369, 39.926207],
      [-105.112653, 39.926453],
      [-105.112755, 39.926541],
      [-105.112799, 39.926579],
      [-105.112883, 39.926656],
      [-105.112887, 39.92666],
      [-105.112897, 39.926669],
      [-105.112903, 39.926674],
      [-105.112934, 39.926702],
      [-105.11298, 39.926744],
      [-105.112985, 39.926748],
      [-105.113051, 39.926808],
      [-105.113159, 39.926912],
      [-105.113212, 39.926969],
      [-105.113261, 39.927021],
      [-105.113325, 39.927097],
      [-105.113403, 39.927204],
      [-105.113472, 39.927321],
      [-105.113523, 39.92743],
      [-105.113529, 39.927449],
      [-105.113532, 39.927457],
      [-105.113542, 39.927488],
      [-105.113586, 39.927621],
      [-105.113594, 39.927659],
      [-105.113595, 39.927665],
      [-105.113597, 39.927673],
      [-105.113599, 39.927681],
      [-105.113665, 39.927993],
      [-105.11369, 39.928108],
      [-105.113691, 39.928115],
      [-105.113707, 39.928188],
      [-105.113759, 39.928362],
      [-105.113771, 39.928394],
      [-105.113808, 39.928493],
      [-105.113827, 39.928538],
      [-105.11383, 39.928545],
      [-105.113833, 39.928551],
      [-105.113835, 39.928556],
      [-105.113859, 39.928611],
      [-105.113867, 39.928629],
      [-105.113969, 39.928841],
      [-105.114036, 39.928981],
      [-105.114072, 39.929052],
      [-105.114064, 39.929181],
      [-105.114057, 39.9294],
      [-105.114437, 39.930166],
      [-105.116589, 39.931964],
      [-105.116795, 39.932137],
      [-105.116828, 39.932164],
      [-105.117035, 39.932337],
      [-105.118828, 39.933841],
      [-105.118947, 39.933783],
      [-105.118946, 39.933833],
      [-105.118946, 39.933841],
      [-105.118934, 39.93394],
      [-105.118904, 39.934077],
      [-105.118861, 39.934198],
      [-105.118801, 39.934323],
      [-105.11873, 39.934449],
      [-105.118727, 39.934454],
      [-105.118507, 39.934844],
      [-105.118468, 39.934947],
      [-105.118459, 39.934996],
      [-105.118449, 39.935048],
      [-105.118448, 39.935068],
      [-105.118446, 39.935113],
      [-105.118466, 39.935216],
      [-105.11848, 39.935249],
      [-105.118482, 39.935254],
      [-105.118545, 39.935402],
      [-105.118569, 39.935451],
      [-105.118593, 39.9355],
      [-105.118598, 39.93551],
      [-105.118601, 39.935517],
      [-105.118607, 39.93553],
      [-105.118659, 39.93564],
      [-105.118671, 39.935671],
      [-105.118674, 39.935679],
      [-105.118676, 39.935685],
      [-105.118694, 39.93573],
      [-105.118714, 39.93578],
      [-105.118729, 39.935834],
      [-105.11873, 39.935839],
      [-105.118732, 39.935845],
      [-105.118734, 39.935851],
      [-105.118735, 39.935856],
      [-105.118738, 39.935874],
      [-105.118743, 39.93591],
      [-105.118745, 39.935979],
      [-105.118752, 39.936194],
      [-105.118752, 39.936199],
      [-105.118747, 39.936383],
      [-105.118735, 39.936811],
      [-105.118722, 39.937324],
      [-105.118722, 39.937527],
      [-105.118722, 39.938463],
      [-105.118721, 39.939033],
      [-105.118721, 39.939174],
      [-105.118721, 39.939248],
      [-105.118721, 39.939269],
      [-105.118721, 39.939338],
      [-105.118718, 39.941225],
      [-105.118712, 39.942004],
      [-105.118711, 39.942011],
      [-105.118711, 39.942018],
      [-105.118711, 39.942029],
      [-105.118711, 39.942047],
      [-105.118711, 39.942071],
      [-105.118711, 39.942096],
      [-105.118704, 39.942904],
      [-105.118708, 39.943013],
      [-105.118715, 39.943061],
      [-105.118733, 39.94311],
      [-105.11877, 39.943165],
      [-105.118774, 39.943169],
      [-105.118792, 39.943187],
      [-105.118557, 39.943213],
      [-105.118377, 39.943213],
      [-105.110274, 39.943204],
      [-105.110094, 39.943204],
      [-105.109353, 39.94319],
      [-105.109338, 39.94319],
      [-105.109329, 39.94319],
      [-105.109309, 39.943189],
      [-105.109261, 39.943188],
      [-105.109057, 39.943184],
      [-105.10906, 39.943255],
      [-105.109103, 39.944125],
      [-105.10911, 39.944152],
      [-105.109321, 39.945021],
      [-105.109322, 39.945026],
      [-105.109323, 39.945031],
      [-105.109327, 39.945048],
      [-105.109337, 39.945088],
      [-105.109361, 39.945185],
      [-105.10936, 39.945481],
      [-105.10936, 39.945571],
      [-105.109358, 39.94605],
      [-105.109354, 39.946216],
      [-105.109354, 39.946225],
      [-105.109353, 39.946231],
      [-105.109353, 39.946244],
      [-105.109352, 39.946282],
      [-105.10933, 39.94721],
      [-105.109329, 39.947465],
      [-105.109329, 39.947478],
      [-105.109328, 39.947569],
      [-105.109328, 39.947658],
      [-105.109327, 39.9478],
      [-105.109327, 39.947889],
      [-105.109323, 39.948834],
      [-105.109323, 39.948924],
      [-105.109323, 39.948953],
      [-105.109323, 39.948989],
      [-105.109323, 39.949032],
      [-105.109323, 39.949082],
      [-105.109323, 39.949137],
      [-105.109323, 39.949194],
      [-105.109323, 39.94922],
      [-105.109323, 39.949235],
      [-105.109323, 39.949242],
      [-105.109323, 39.949247],
      [-105.10932, 39.949529],
      [-105.109321, 39.950183],
      [-105.109321, 39.950264],
      [-105.109321, 39.950311],
      [-105.109321, 39.950341],
      [-105.109321, 39.950363],
      [-105.109321, 39.950379],
      [-105.109321, 39.950391],
      [-105.109321, 39.950401],
      [-105.109321, 39.950409],
      [-105.109321, 39.950415],
      [-105.109321, 39.950421],
      [-105.109321, 39.950426],
      [-105.109321, 39.950433],
      [-105.109321, 39.950439],
      [-105.109321, 39.950445],
      [-105.109321, 39.950451],
      [-105.109321, 39.950456],
      [-105.109321, 39.950461],
      [-105.109322, 39.950485],
      [-105.109435, 39.950486],
      [-105.109446, 39.950486],
      [-105.115419, 39.950539],
      [-105.11543, 39.950539],
      [-105.117017, 39.950553],
      [-105.118366, 39.950566],
      [-105.118577, 39.950568],
      [-105.118671, 39.950569],
      [-105.118701, 39.950569],
      [-105.118708, 39.950569],
      [-105.118715, 39.950569],
      [-105.118732, 39.95057],
      [-105.118749, 39.95057],
      [-105.118761, 39.95057],
      [-105.118833, 39.950571],
      [-105.118983, 39.950572],
      [-105.120336, 39.950585],
      [-105.120347, 39.950585],
      [-105.120532, 39.950569],
      [-105.120541, 39.950568],
      [-105.120776, 39.950548],
      [-105.121037, 39.951248],
      [-105.121045, 39.951269],
      [-105.121047, 39.951275],
      [-105.12105, 39.951283],
      [-105.121058, 39.951305],
      [-105.121089, 39.951387],
      [-105.120845, 39.951538],
      [-105.120738, 39.951613],
      [-105.120568, 39.951732],
      [-105.119781, 39.952167],
      [-105.11965, 39.952223],
      [-105.119624, 39.952234],
      [-105.119614, 39.952238],
      [-105.119574, 39.952255],
      [-105.119554, 39.952264],
      [-105.119477, 39.952297],
      [-105.119347, 39.952353],
      [-105.11784, 39.953034],
      [-105.11764, 39.953104],
      [-105.116061, 39.953657],
      [-105.113353, 39.954548],
      [-105.111034, 39.955378],
      [-105.109342, 39.955974],
      [-105.109372, 39.956506],
      [-105.109385, 39.95674],
      [-105.109391, 39.956849],
      [-105.109685, 39.956752],
      [-105.109693, 39.956749],
      [-105.110913, 39.956348],
      [-105.111782, 39.956051],
      [-105.11339, 39.955583],
      [-105.114622, 39.955152],
      [-105.115301, 39.954903],
      [-105.117838, 39.953889],
      [-105.117945, 39.953849],
      [-105.118697, 39.953543],
      [-105.118706, 39.953539],
      [-105.119345, 39.953279],
      [-105.120574, 39.952709],
      [-105.121061, 39.952481],
      [-105.121069, 39.952477],
      [-105.121241, 39.952397],
      [-105.121437, 39.952305],
      [-105.122141, 39.954166],
      [-105.122294, 39.954571],
      [-105.127321, 39.954533],
      [-105.127598, 39.954533],
      [-105.127597, 39.954179],
      [-105.127597, 39.954062],
      [-105.127593, 39.952407],
      [-105.127593, 39.95229],
      [-105.127589, 39.950717],
      [-105.127586, 39.949522],
      [-105.127579, 39.948868],
      [-105.127565, 39.947484],
      [-105.127562, 39.94685],
      [-105.127559, 39.94628],
      [-105.127557, 39.945758],
      [-105.127555, 39.945459],
      [-105.127555, 39.945363],
      [-105.127554, 39.945143],
      [-105.127553, 39.945138],
      [-105.127553, 39.945133],
      [-105.127553, 39.945123],
      [-105.127553, 39.945108],
      [-105.127553, 39.945089],
      [-105.127553, 39.94507],
      [-105.127551, 39.94461],
      [-105.127551, 39.944596],
      [-105.127545, 39.943301],
      [-105.127544, 39.943283],
      [-105.127544, 39.943266],
      [-105.127533, 39.943045],
      [-105.127532, 39.943025],
      [-105.127426, 39.94091],
      [-105.127421, 39.940817],
      [-105.127419, 39.940795],
      [-105.12741, 39.940716],
      [-105.127428, 39.939981],
      [-105.127435, 39.939818],
      [-105.127679, 39.939823],
      [-105.127884, 39.939823],
      [-105.136859, 39.939855],
      [-105.137572, 39.939858],
      [-105.137579, 39.939688],
      [-105.137592, 39.939543],
      [-105.137593, 39.939443],
      [-105.137603, 39.939249],
      [-105.137578, 39.937109],
      [-105.137631, 39.929825],
      [-105.137604, 39.928931],
      [-105.138407, 39.928938],
      [-105.138417, 39.928938],
      [-105.138625, 39.928935],
      [-105.138894, 39.928935],
      [-105.139722, 39.928935],
      [-105.141792, 39.92893],
      [-105.141848, 39.92893],
      [-105.142258, 39.928929],
      [-105.14235, 39.928929],
      [-105.142428, 39.928929],
      [-105.142523, 39.928929],
      [-105.143251, 39.92893],
      [-105.143875, 39.928931],
      [-105.146805, 39.928937],
      [-105.147015, 39.928938],
      [-105.14712, 39.928939],
      [-105.147127, 39.928939],
      [-105.147129, 39.928817],
      [-105.147134, 39.928479],
      [-105.147134, 39.928467],
      [-105.147134, 39.928453],
      [-105.147137, 39.92823],
      [-105.147147, 39.927419],
      [-105.147149, 39.927309],
      [-105.147159, 39.926641],
      [-105.147159, 39.926636],
      [-105.147179, 39.925204],
      [-105.147214, 39.922788],
      [-105.14734, 39.913991],
      [-105.147342, 39.913886],
      [-105.397849, 39.912886],
      [-105.397971, 39.934867],
      [-105.675798, 39.932445],
      [-105.638797, 40.038787],
      [-105.653321, 40.260457],
      [-105.196476, 40.261085],
      [-105.055089, 40.261793]]]},
   'id': '08013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08014',
    'STATE': '08',
    'COUNTY': '014',
    'NAME': 'Broomfield',
    'LSAD': 'County',
    'CENSUSAREA': 33.034},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.147342, 39.913886],
      [-105.14734, 39.913991],
      [-105.147214, 39.922788],
      [-105.147179, 39.925204],
      [-105.147159, 39.926636],
      [-105.147159, 39.926641],
      [-105.147149, 39.927309],
      [-105.147147, 39.927419],
      [-105.147137, 39.92823],
      [-105.147134, 39.928453],
      [-105.147134, 39.928467],
      [-105.147134, 39.928479],
      [-105.147129, 39.928817],
      [-105.147127, 39.928939],
      [-105.14712, 39.928939],
      [-105.147015, 39.928938],
      [-105.146805, 39.928937],
      [-105.143875, 39.928931],
      [-105.143251, 39.92893],
      [-105.142523, 39.928929],
      [-105.142428, 39.928929],
      [-105.14235, 39.928929],
      [-105.142258, 39.928929],
      [-105.141848, 39.92893],
      [-105.141792, 39.92893],
      [-105.139722, 39.928935],
      [-105.138894, 39.928935],
      [-105.138625, 39.928935],
      [-105.138417, 39.928938],
      [-105.138407, 39.928938],
      [-105.137604, 39.928931],
      [-105.137631, 39.929825],
      [-105.137578, 39.937109],
      [-105.137603, 39.939249],
      [-105.137593, 39.939443],
      [-105.137592, 39.939543],
      [-105.137579, 39.939688],
      [-105.137572, 39.939858],
      [-105.136859, 39.939855],
      [-105.127884, 39.939823],
      [-105.127679, 39.939823],
      [-105.127435, 39.939818],
      [-105.127428, 39.939981],
      [-105.12741, 39.940716],
      [-105.127419, 39.940795],
      [-105.127421, 39.940817],
      [-105.127426, 39.94091],
      [-105.127532, 39.943025],
      [-105.127533, 39.943045],
      [-105.127544, 39.943266],
      [-105.127544, 39.943283],
      [-105.127545, 39.943301],
      [-105.127551, 39.944596],
      [-105.127551, 39.94461],
      [-105.127553, 39.94507],
      [-105.127553, 39.945089],
      [-105.127553, 39.945108],
      [-105.127553, 39.945123],
      [-105.127553, 39.945133],
      [-105.127553, 39.945138],
      [-105.127554, 39.945143],
      [-105.127555, 39.945363],
      [-105.127555, 39.945459],
      [-105.127557, 39.945758],
      [-105.127559, 39.94628],
      [-105.127562, 39.94685],
      [-105.127565, 39.947484],
      [-105.127579, 39.948868],
      [-105.127586, 39.949522],
      [-105.127589, 39.950717],
      [-105.127593, 39.95229],
      [-105.127593, 39.952407],
      [-105.127597, 39.954062],
      [-105.127597, 39.954179],
      [-105.127598, 39.954533],
      [-105.127321, 39.954533],
      [-105.122294, 39.954571],
      [-105.122141, 39.954166],
      [-105.121437, 39.952305],
      [-105.121241, 39.952397],
      [-105.121069, 39.952477],
      [-105.121061, 39.952481],
      [-105.120574, 39.952709],
      [-105.119345, 39.953279],
      [-105.118706, 39.953539],
      [-105.118697, 39.953543],
      [-105.117945, 39.953849],
      [-105.117838, 39.953889],
      [-105.115301, 39.954903],
      [-105.114622, 39.955152],
      [-105.11339, 39.955583],
      [-105.111782, 39.956051],
      [-105.110913, 39.956348],
      [-105.109693, 39.956749],
      [-105.109685, 39.956752],
      [-105.109391, 39.956849],
      [-105.109385, 39.95674],
      [-105.109372, 39.956506],
      [-105.109342, 39.955974],
      [-105.111034, 39.955378],
      [-105.113353, 39.954548],
      [-105.116061, 39.953657],
      [-105.11764, 39.953104],
      [-105.11784, 39.953034],
      [-105.119347, 39.952353],
      [-105.119477, 39.952297],
      [-105.119554, 39.952264],
      [-105.119574, 39.952255],
      [-105.119614, 39.952238],
      [-105.119624, 39.952234],
      [-105.11965, 39.952223],
      [-105.119781, 39.952167],
      [-105.120568, 39.951732],
      [-105.120738, 39.951613],
      [-105.120845, 39.951538],
      [-105.121089, 39.951387],
      [-105.121058, 39.951305],
      [-105.12105, 39.951283],
      [-105.121047, 39.951275],
      [-105.121045, 39.951269],
      [-105.121037, 39.951248],
      [-105.120776, 39.950548],
      [-105.120541, 39.950568],
      [-105.120532, 39.950569],
      [-105.120347, 39.950585],
      [-105.120336, 39.950585],
      [-105.118983, 39.950572],
      [-105.118833, 39.950571],
      [-105.118761, 39.95057],
      [-105.118749, 39.95057],
      [-105.118732, 39.95057],
      [-105.118715, 39.950569],
      [-105.118708, 39.950569],
      [-105.118701, 39.950569],
      [-105.118671, 39.950569],
      [-105.118577, 39.950568],
      [-105.118366, 39.950566],
      [-105.117017, 39.950553],
      [-105.11543, 39.950539],
      [-105.115419, 39.950539],
      [-105.109446, 39.950486],
      [-105.109435, 39.950486],
      [-105.109322, 39.950485],
      [-105.109321, 39.950461],
      [-105.109321, 39.950456],
      [-105.109321, 39.950451],
      [-105.109321, 39.950445],
      [-105.109321, 39.950439],
      [-105.109321, 39.950433],
      [-105.109321, 39.950426],
      [-105.109321, 39.950421],
      [-105.109321, 39.950415],
      [-105.109321, 39.950409],
      [-105.109321, 39.950401],
      [-105.109321, 39.950391],
      [-105.109321, 39.950379],
      [-105.109321, 39.950363],
      [-105.109321, 39.950341],
      [-105.109321, 39.950311],
      [-105.109321, 39.950264],
      [-105.109321, 39.950183],
      [-105.10932, 39.949529],
      [-105.109323, 39.949247],
      [-105.109323, 39.949242],
      [-105.109323, 39.949235],
      [-105.109323, 39.94922],
      [-105.109323, 39.949194],
      [-105.109323, 39.949137],
      [-105.109323, 39.949082],
      [-105.109323, 39.949032],
      [-105.109323, 39.948989],
      [-105.109323, 39.948953],
      [-105.109323, 39.948924],
      [-105.109323, 39.948834],
      [-105.109327, 39.947889],
      [-105.109327, 39.9478],
      [-105.109328, 39.947658],
      [-105.109328, 39.947569],
      [-105.109329, 39.947478],
      [-105.109329, 39.947465],
      [-105.10933, 39.94721],
      [-105.109352, 39.946282],
      [-105.109353, 39.946244],
      [-105.109353, 39.946231],
      [-105.109354, 39.946225],
      [-105.109354, 39.946216],
      [-105.109358, 39.94605],
      [-105.10936, 39.945571],
      [-105.10936, 39.945481],
      [-105.109361, 39.945185],
      [-105.109337, 39.945088],
      [-105.109327, 39.945048],
      [-105.109323, 39.945031],
      [-105.109322, 39.945026],
      [-105.109321, 39.945021],
      [-105.10911, 39.944152],
      [-105.109103, 39.944125],
      [-105.10906, 39.943255],
      [-105.109057, 39.943184],
      [-105.109261, 39.943188],
      [-105.109309, 39.943189],
      [-105.109329, 39.94319],
      [-105.109338, 39.94319],
      [-105.109353, 39.94319],
      [-105.110094, 39.943204],
      [-105.110274, 39.943204],
      [-105.118377, 39.943213],
      [-105.118557, 39.943213],
      [-105.118792, 39.943187],
      [-105.118774, 39.943169],
      [-105.11877, 39.943165],
      [-105.118733, 39.94311],
      [-105.118715, 39.943061],
      [-105.118708, 39.943013],
      [-105.118704, 39.942904],
      [-105.118711, 39.942096],
      [-105.118711, 39.942071],
      [-105.118711, 39.942047],
      [-105.118711, 39.942029],
      [-105.118711, 39.942018],
      [-105.118711, 39.942011],
      [-105.118712, 39.942004],
      [-105.118718, 39.941225],
      [-105.118721, 39.939338],
      [-105.118721, 39.939269],
      [-105.118721, 39.939248],
      [-105.118721, 39.939174],
      [-105.118721, 39.939033],
      [-105.118722, 39.938463],
      [-105.118722, 39.937527],
      [-105.118722, 39.937324],
      [-105.118735, 39.936811],
      [-105.118747, 39.936383],
      [-105.118752, 39.936199],
      [-105.118752, 39.936194],
      [-105.118745, 39.935979],
      [-105.118743, 39.93591],
      [-105.118738, 39.935874],
      [-105.118735, 39.935856],
      [-105.118734, 39.935851],
      [-105.118732, 39.935845],
      [-105.11873, 39.935839],
      [-105.118729, 39.935834],
      [-105.118714, 39.93578],
      [-105.118694, 39.93573],
      [-105.118676, 39.935685],
      [-105.118674, 39.935679],
      [-105.118671, 39.935671],
      [-105.118659, 39.93564],
      [-105.118607, 39.93553],
      [-105.118601, 39.935517],
      [-105.118598, 39.93551],
      [-105.118593, 39.9355],
      [-105.118569, 39.935451],
      [-105.118545, 39.935402],
      [-105.118482, 39.935254],
      [-105.11848, 39.935249],
      [-105.118466, 39.935216],
      [-105.118446, 39.935113],
      [-105.118448, 39.935068],
      [-105.118449, 39.935048],
      [-105.118459, 39.934996],
      [-105.118468, 39.934947],
      [-105.118507, 39.934844],
      [-105.118727, 39.934454],
      [-105.11873, 39.934449],
      [-105.118801, 39.934323],
      [-105.118861, 39.934198],
      [-105.118904, 39.934077],
      [-105.118934, 39.93394],
      [-105.118946, 39.933841],
      [-105.118946, 39.933833],
      [-105.118947, 39.933783],
      [-105.118828, 39.933841],
      [-105.117035, 39.932337],
      [-105.116828, 39.932164],
      [-105.116795, 39.932137],
      [-105.116589, 39.931964],
      [-105.114437, 39.930166],
      [-105.114057, 39.9294],
      [-105.114064, 39.929181],
      [-105.114072, 39.929052],
      [-105.114036, 39.928981],
      [-105.113969, 39.928841],
      [-105.113867, 39.928629],
      [-105.113859, 39.928611],
      [-105.113835, 39.928556],
      [-105.113833, 39.928551],
      [-105.11383, 39.928545],
      [-105.113827, 39.928538],
      [-105.113808, 39.928493],
      [-105.113771, 39.928394],
      [-105.113759, 39.928362],
      [-105.113707, 39.928188],
      [-105.113691, 39.928115],
      [-105.11369, 39.928108],
      [-105.113665, 39.927993],
      [-105.113599, 39.927681],
      [-105.113597, 39.927673],
      [-105.113595, 39.927665],
      [-105.113594, 39.927659],
      [-105.113586, 39.927621],
      [-105.113542, 39.927488],
      [-105.113532, 39.927457],
      [-105.113529, 39.927449],
      [-105.113523, 39.92743],
      [-105.113472, 39.927321],
      [-105.113403, 39.927204],
      [-105.113325, 39.927097],
      [-105.113261, 39.927021],
      [-105.113212, 39.926969],
      [-105.113159, 39.926912],
      [-105.113051, 39.926808],
      [-105.112985, 39.926748],
      [-105.11298, 39.926744],
      [-105.112934, 39.926702],
      [-105.112903, 39.926674],
      [-105.112897, 39.926669],
      [-105.112887, 39.92666],
      [-105.112883, 39.926656],
      [-105.112799, 39.926579],
      [-105.112755, 39.926541],
      [-105.112653, 39.926453],
      [-105.112369, 39.926207],
      [-105.112362, 39.926201],
      [-105.112355, 39.926195],
      [-105.112274, 39.926129],
      [-105.112265, 39.926122],
      [-105.112246, 39.926106],
      [-105.111921, 39.925841],
      [-105.111851, 39.925791],
      [-105.111845, 39.925787],
      [-105.111823, 39.925771],
      [-105.111682, 39.925669],
      [-105.111659, 39.925654],
      [-105.111645, 39.925645],
      [-105.111631, 39.925636],
      [-105.111475, 39.925532],
      [-105.111383, 39.925475],
      [-105.111376, 39.925471],
      [-105.111315, 39.925433],
      [-105.110993, 39.925233],
      [-105.110983, 39.925227],
      [-105.110974, 39.925221],
      [-105.110958, 39.925211],
      [-105.110903, 39.925177],
      [-105.11087, 39.925157],
      [-105.1108, 39.925114],
      [-105.110794, 39.92511],
      [-105.110782, 39.925103],
      [-105.110767, 39.925094],
      [-105.110747, 39.925082],
      [-105.110628, 39.925009],
      [-105.110454, 39.924908],
      [-105.110214, 39.92477],
      [-105.110077, 39.924698],
      [-105.11007, 39.924695],
      [-105.110061, 39.92469],
      [-105.110043, 39.92468],
      [-105.110027, 39.924671],
      [-105.10998, 39.924648],
      [-105.109965, 39.924641],
      [-105.109921, 39.92462],
      [-105.109826, 39.924575],
      [-105.109641, 39.924507],
      [-105.109527, 39.924473],
      [-105.109412, 39.924438],
      [-105.109142, 39.924356],
      [-105.109141, 39.924586],
      [-105.109052, 39.925619],
      [-105.109043, 39.925744],
      [-105.109023, 39.925874],
      [-105.109259, 39.926022],
      [-105.109267, 39.926027],
      [-105.110584, 39.92685],
      [-105.110917, 39.927058],
      [-105.111189, 39.927252],
      [-105.111479, 39.927488],
      [-105.111558, 39.92756],
      [-105.111784, 39.927785],
      [-105.111966, 39.927989],
      [-105.11212, 39.928185],
      [-105.112132, 39.9282],
      [-105.11219, 39.928284],
      [-105.112269, 39.928399],
      [-105.112407, 39.928625],
      [-105.112408, 39.928626],
      [-105.113296, 39.930249],
      [-105.113446, 39.930541],
      [-105.113515, 39.930702],
      [-105.113569, 39.930862],
      [-105.113575, 39.930882],
      [-105.113579, 39.930895],
      [-105.113606, 39.930994],
      [-105.113636, 39.931163],
      [-105.11365, 39.931279],
      [-105.113657, 39.93144],
      [-105.113652, 39.931597],
      [-105.113626, 39.931805],
      [-105.113597, 39.931942],
      [-105.113566, 39.932055],
      [-105.113544, 39.932118],
      [-105.113541, 39.932126],
      [-105.113488, 39.932275],
      [-105.113388, 39.932479],
      [-105.113301, 39.932627],
      [-105.113232, 39.932731],
      [-105.113155, 39.93283],
      [-105.112975, 39.933034],
      [-105.112874, 39.933133],
      [-105.112775, 39.933219],
      [-105.112504, 39.933426],
      [-105.112368, 39.933518],
      [-105.112311, 39.933555],
      [-105.112293, 39.933567],
      [-105.110014, 39.935039],
      [-105.109979, 39.935062],
      [-105.109358, 39.935463],
      [-105.109224, 39.935546],
      [-105.109041, 39.935664],
      [-105.109041, 39.935754],
      [-105.109039, 39.936061],
      [-105.109039, 39.936095],
      [-105.109039, 39.936114],
      [-105.109039, 39.936119],
      [-105.109038, 39.936124],
      [-105.109038, 39.936134],
      [-105.109036, 39.936484],
      [-105.10879, 39.936468],
      [-105.108746, 39.936465],
      [-105.108727, 39.936464],
      [-105.108704, 39.936463],
      [-105.108678, 39.936461],
      [-105.10802, 39.936419],
      [-105.107985, 39.936417],
      [-105.107886, 39.936411],
      [-105.107539, 39.936386],
      [-105.102808, 39.936386],
      [-105.102719, 39.936386],
      [-105.093793, 39.936385],
      [-105.09101, 39.936386],
      [-105.09099, 39.936387],
      [-105.090944, 39.936387],
      [-105.090854, 39.936386],
      [-105.090851, 39.937836],
      [-105.09083, 39.938827],
      [-105.090787, 39.939879],
      [-105.090787, 39.939887],
      [-105.090782, 39.939962],
      [-105.090798, 39.939966],
      [-105.090819, 39.939971],
      [-105.090849, 39.939979],
      [-105.090799, 39.941546],
      [-105.090912, 39.941583],
      [-105.090897, 39.943134],
      [-105.090677, 39.943135],
      [-105.090541, 39.943137],
      [-105.090532, 39.943137],
      [-105.090324, 39.943137],
      [-105.090305, 39.943137],
      [-105.085739, 39.943185],
      [-105.076101, 39.943185],
      [-105.076101, 39.943456],
      [-105.076101, 39.943726],
      [-105.076101, 39.943904],
      [-105.076101, 39.944607],
      [-105.076102, 39.946353],
      [-105.076102, 39.946892],
      [-105.076102, 39.947048],
      [-105.076102, 39.947539],
      [-105.076104, 39.950592],
      [-105.075827, 39.950592],
      [-105.072518, 39.950586],
      [-105.072241, 39.950586],
      [-105.071893, 39.950585],
      [-105.071738, 39.950585],
      [-105.071778, 39.957502],
      [-105.07178, 39.957785],
      [-105.071854, 39.957785],
      [-105.071916, 39.957785],
      [-105.071933, 39.957785],
      [-105.072278, 39.957787],
      [-105.074639, 39.9578],
      [-105.075312, 39.957802],
      [-105.075858, 39.957803],
      [-105.076586, 39.957805],
      [-105.076823, 39.957805],
      [-105.077331, 39.95781],
      [-105.079166, 39.957826],
      [-105.079302, 39.957829],
      [-105.079729, 39.95784],
      [-105.080028, 39.957847],
      [-105.080305, 39.957808],
      [-105.080602, 39.957822],
      [-105.080966, 39.957839],
      [-105.082448, 39.957908],
      [-105.082455, 39.957908],
      [-105.082463, 39.957908],
      [-105.082534, 39.957911],
      [-105.082756, 39.957912],
      [-105.082768, 39.957912],
      [-105.082801, 39.957912],
      [-105.083261, 39.957915],
      [-105.083267, 39.958267],
      [-105.083963, 39.958302],
      [-105.084891, 39.958201],
      [-105.085379, 39.958088],
      [-105.08541, 39.958081],
      [-105.085476, 39.958066],
      [-105.08555, 39.95805],
      [-105.085611, 39.958036],
      [-105.085638, 39.95803],
      [-105.08565, 39.958027],
      [-105.085663, 39.958024],
      [-105.085673, 39.958022],
      [-105.085683, 39.95802],
      [-105.085702, 39.958016],
      [-105.085717, 39.958003],
      [-105.085734, 39.957988],
      [-105.085754, 39.957971],
      [-105.085794, 39.957938],
      [-105.085846, 39.957893],
      [-105.086861, 39.957849],
      [-105.086948, 39.957843],
      [-105.087315, 39.957833],
      [-105.087724, 39.957838],
      [-105.087834, 39.957839],
      [-105.087841, 39.957839],
      [-105.08787, 39.95784],
      [-105.088298, 39.957851],
      [-105.088332, 39.957853],
      [-105.088441, 39.957858],
      [-105.088588, 39.957865],
      [-105.088597, 39.957919],
      [-105.088613, 39.95803],
      [-105.088614, 39.958037],
      [-105.088615, 39.958042],
      [-105.088616, 39.958052],
      [-105.088636, 39.958182],
      [-105.087748, 39.958197],
      [-105.087748, 39.958707],
      [-105.087748, 39.95888],
      [-105.087748, 39.959571],
      [-105.087393, 39.959555],
      [-105.08731, 39.959551],
      [-105.087033, 39.959538],
      [-105.086951, 39.959741],
      [-105.086858, 39.959972],
      [-105.086082, 39.960043],
      [-105.086002, 39.96005],
      [-105.085982, 39.960052],
      [-105.085961, 39.960054],
      [-105.08595, 39.960055],
      [-105.085942, 39.960055],
      [-105.085877, 39.960061],
      [-105.085764, 39.960084],
      [-105.085583, 39.960123],
      [-105.084027, 39.960454],
      [-105.082093, 39.960967],
      [-105.081957, 39.961003],
      [-105.080562, 39.961373],
      [-105.07999, 39.961613],
      [-105.079885, 39.961657],
      [-105.078632, 39.962182],
      [-105.0757, 39.964623],
      [-105.074735, 39.965752],
      [-105.073059, 39.967308],
      [-105.071886, 39.968544],
      [-105.070468, 39.969721],
      [-105.069605, 39.970227],
      [-105.06742, 39.971289],
      [-105.066609, 39.971925],
      [-105.063527, 39.973444],
      [-105.060968, 39.974563],
      [-105.060445, 39.974768],
      [-105.058567, 39.975502],
      [-105.05784, 39.975787],
      [-105.057654, 39.97586],
      [-105.054688, 39.976889],
      [-105.052797, 39.977574],
      [-105.052794, 39.978581],
      [-105.052793, 39.97879],
      [-105.052792, 39.979489],
      [-105.052774, 39.986398],
      [-105.052823, 40.00026],
      [-105.052809, 40.00026],
      [-105.047106, 40.000264],
      [-105.046237, 40.000265],
      [-105.046049, 40.000265],
      [-105.045672, 40.000266],
      [-105.044051, 40.000267],
      [-105.04392, 40.000267],
      [-105.041853, 40.000267],
      [-105.038601, 40.000268],
      [-105.037075, 40.00028],
      [-105.02762, 40.000263],
      [-105.022384, 40.000286],
      [-105.017772, 40.000307],
      [-105.017365, 40.000307],
      [-105.016009, 40.000308],
      [-105.015186, 40.00029],
      [-105.014591, 40.000285],
      [-105.01179, 40.000292],
      [-105.011684, 40.000292],
      [-105.011008, 40.000294],
      [-105.010347, 40.000289],
      [-105.010221, 40.000288],
      [-105.009432, 40.000289],
      [-105.008903, 40.00029],
      [-105.008926, 40.002527],
      [-105.008928, 40.002694],
      [-105.00893, 40.002954],
      [-105.008944, 40.00426],
      [-105.008961, 40.005764],
      [-105.008979, 40.007435],
      [-105.008555, 40.007444],
      [-105.008475, 40.007445],
      [-105.008426, 40.005772],
      [-105.008402, 40.002531],
      [-105.008402, 40.00029],
      [-105.007904, 40.000292],
      [-105.007929, 40.002536],
      [-105.007954, 40.00578],
      [-105.007999, 40.007455],
      [-104.999082, 40.007648],
      [-104.998528, 40.007646],
      [-104.998519, 40.007646],
      [-104.998486, 40.007646],
      [-104.996945, 40.007653],
      [-104.996885, 40.007653],
      [-104.996879, 40.007653],
      [-104.996858, 40.007653],
      [-104.996849, 40.007653],
      [-104.996841, 40.007654],
      [-104.996822, 40.007654],
      [-104.99681, 40.007654],
      [-104.996801, 40.007654],
      [-104.996779, 40.007654],
      [-104.996716, 40.007654],
      [-104.996653, 40.007654],
      [-104.996609, 40.007654],
      [-104.996576, 40.007654],
      [-104.996551, 40.007654],
      [-104.996532, 40.007654],
      [-104.996517, 40.007654],
      [-104.996506, 40.007654],
      [-104.996497, 40.007654],
      [-104.99649, 40.007654],
      [-104.996484, 40.007654],
      [-104.995974, 40.007651],
      [-104.995175, 40.007656],
      [-104.994335, 40.007655],
      [-104.992009, 40.007666],
      [-104.989819, 40.007681],
      [-104.989727, 40.00768],
      [-104.989647, 40.007679],
      [-104.989645, 40.007971],
      [-104.989614, 40.01489],
      [-104.992735, 40.014899],
      [-104.997215, 40.014887],
      [-104.999065, 40.014887],
      [-104.999073, 40.015907],
      [-104.999073, 40.015939],
      [-104.999001, 40.015997],
      [-104.99899, 40.016004],
      [-104.998787, 40.016129],
      [-104.998566, 40.016393],
      [-104.998452, 40.016519],
      [-104.998016, 40.016789],
      [-104.997888, 40.016943],
      [-104.997874, 40.017107],
      [-104.997788, 40.017333],
      [-104.997746, 40.017668],
      [-104.997603, 40.017832],
      [-104.997389, 40.017986],
      [-104.996989, 40.018283],
      [-104.996868, 40.018393],
      [-104.996718, 40.01864],
      [-104.996611, 40.018745],
      [-104.996404, 40.018981],
      [-104.996225, 40.019157],
      [-104.996118, 40.019366],
      [-104.995983, 40.019553],
      [-104.995897, 40.019761],
      [-104.995819, 40.019926],
      [-104.995719, 40.020052],
      [-104.995633, 40.020195],
      [-104.995683, 40.020437],
      [-104.995826, 40.020574],
      [-104.995984, 40.020624],
      [-104.996248, 40.02064],
      [-104.996627, 40.020585],
      [-104.997168, 40.020598],
      [-104.997284, 40.0206],
      [-104.997312, 40.020601],
      [-104.997391, 40.020625],
      [-104.997415, 40.020633],
      [-104.997816, 40.020631],
      [-104.999047, 40.020627],
      [-104.99911, 40.020633],
      [-104.999109, 40.021002],
      [-104.998729, 40.021001],
      [-104.998587, 40.020911],
      [-104.997427, 40.020935],
      [-104.997428, 40.020946],
      [-104.997391, 40.020936],
      [-104.996769, 40.02095],
      [-104.996753, 40.022423],
      [-104.996742, 40.023509],
      [-104.997354, 40.023511],
      [-104.997537, 40.02351],
      [-104.999116, 40.023509],
      [-104.999116, 40.023657],
      [-104.999117, 40.023998],
      [-104.999117, 40.025288],
      [-104.999122, 40.025928],
      [-104.994836, 40.025954],
      [-104.994802, 40.025954],
      [-104.994559, 40.025956],
      [-104.994316, 40.025958],
      [-104.991594, 40.025973],
      [-104.991419, 40.025974],
      [-104.991244, 40.025975],
      [-104.989739, 40.025984],
      [-104.986513, 40.026003],
      [-104.986523, 40.028536],
      [-104.986482, 40.028536],
      [-104.986503, 40.029405],
      [-104.986048, 40.029406],
      [-104.98542, 40.029407],
      [-104.981995, 40.029412],
      [-104.980994, 40.029409],
      [-104.980653, 40.029406],
      [-104.980629, 40.029406],
      [-104.98033, 40.029407],
      [-104.980196, 40.029409],
      [-104.980048, 40.029411],
      [-104.980049, 40.029647],
      [-104.980051, 40.029704],
      [-104.980071, 40.03042],
      [-104.980072, 40.031203],
      [-104.980059, 40.03242],
      [-104.980058, 40.032708],
      [-104.980058, 40.032882],
      [-104.980054, 40.035048],
      [-104.980054, 40.035136],
      [-104.980054, 40.035179],
      [-104.980051, 40.036828],
      [-104.98005, 40.037516],
      [-104.980048, 40.038342],
      [-104.980047, 40.038969],
      [-104.980046, 40.039173],
      [-104.980044, 40.03956],
      [-104.980041, 40.040316],
      [-104.980037, 40.041142],
      [-104.980037, 40.041206],
      [-104.980028, 40.041676],
      [-104.980001, 40.041976],
      [-104.979967, 40.04216],
      [-104.979914, 40.042353],
      [-104.979427, 40.043679],
      [-104.979344, 40.043951],
      [-104.976919, 40.043987],
      [-104.976435, 40.043994],
      [-104.973879, 40.044033],
      [-104.973448, 40.044039],
      [-104.972908, 40.04404],
      [-104.971161, 40.044061],
      [-104.970727, 40.044069],
      [-104.969589, 40.044089],
      [-104.968129, 40.044096],
      [-104.967371, 40.044109],
      [-104.966526, 40.044123],
      [-104.964109, 40.044169],
      [-104.961158, 40.044227],
      [-104.961156, 40.043999],
      [-104.961151, 40.043651],
      [-104.961195, 40.041298],
      [-104.961207, 40.040774],
      [-104.961233, 40.039603],
      [-104.961249, 40.039093],
      [-104.961296, 40.037638],
      [-104.961342, 40.035757],
      [-104.961358, 40.034687],
      [-104.961375, 40.033481],
      [-104.961392, 40.030224],
      [-104.961401, 40.029459],
      [-104.961394, 40.028348],
      [-104.961393, 40.026667],
      [-104.961401, 40.026273],
      [-104.961404, 40.024959],
      [-104.961389, 40.023669],
      [-104.961388, 40.023611],
      [-104.961385, 40.021967],
      [-104.961373, 40.015292],
      [-104.96136, 40.01523],
      [-104.961325, 40.015151],
      [-104.96132, 40.014982],
      [-104.961315, 40.01477],
      [-104.961313, 40.014677],
      [-104.961312, 40.014644],
      [-104.961306, 40.014533],
      [-104.9613, 40.014321],
      [-104.961291, 40.014055],
      [-104.961291, 40.014052],
      [-104.961265, 40.013729],
      [-104.961296, 40.013687],
      [-104.961344, 40.013606],
      [-104.961375, 40.013511],
      [-104.961391, 40.013431],
      [-104.961399, 40.013205],
      [-104.961402, 40.012901],
      [-104.961398, 40.012227],
      [-104.961411, 40.010341],
      [-104.961415, 40.009766],
      [-104.961416, 40.00761],
      [-104.961426, 40.006441],
      [-104.961426, 40.005019],
      [-104.961427, 40.002654],
      [-104.961427, 40.001777],
      [-104.961413, 40.000939],
      [-104.961408, 40.000337],
      [-105.052884, 39.913795],
      [-105.147342, 39.913886]]]},
   'id': '08014'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08015',
    'STATE': '08',
    'COUNTY': '015',
    'NAME': 'Chaffee',
    'LSAD': 'County',
    'CENSUSAREA': 1013.403},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.577966, 39.057908],
      [-106.191006, 39.056073],
      [-106.110995, 38.940099],
      [-106.028138, 38.942849],
      [-105.925123, 38.872178],
      [-105.906587, 38.806962],
      [-105.96975, 38.693551],
      [-105.879176, 38.607312],
      [-105.908717, 38.505631],
      [-106.010751, 38.446566],
      [-106.24694, 38.422768],
      [-106.452126, 38.698777],
      [-106.326099, 38.911004],
      [-106.465032, 38.910354],
      [-106.599214, 38.997994],
      [-106.591692, 39.024923],
      [-106.597233, 39.044821],
      [-106.58073, 39.048717],
      [-106.577966, 39.057908]]]},
   'id': '08015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08017',
    'STATE': '08',
    'COUNTY': '017',
    'NAME': 'Cheyenne',
    'LSAD': 'County',
    'CENSUSAREA': 1778.276},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.046571, 39.047038],
      [-102.045388, 38.813392],
      [-102.045334, 38.799463],
      [-102.045448, 38.783453],
      [-102.045371, 38.770064],
      [-102.045287, 38.755528],
      [-102.045375, 38.754339],
      [-102.045212, 38.697567],
      [-102.045156, 38.688555],
      [-102.045127, 38.686725],
      [-102.04516, 38.675221],
      [-102.045102, 38.674946],
      [-102.045074, 38.669617],
      [-102.045288, 38.615249],
      [-102.045288, 38.615168],
      [-103.172943, 38.61245],
      [-103.163025, 39.03761],
      [-102.046571, 39.047038]]]},
   'id': '08017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08019',
    'STATE': '08',
    'COUNTY': '019',
    'NAME': 'Clear Creek',
    'LSAD': 'County',
    'CENSUSAREA': 395.227},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.398949, 39.566056],
      [-105.587986, 39.568197],
      [-105.642798, 39.566584],
      [-105.829662, 39.564865],
      [-105.793058, 39.636328],
      [-105.924618, 39.698972],
      [-105.887395, 39.796996],
      [-105.736426, 39.804801],
      [-105.690348, 39.851996],
      [-105.545076, 39.773635],
      [-105.397949, 39.747087],
      [-105.398949, 39.566056]]]},
   'id': '08019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08021',
    'STATE': '08',
    'COUNTY': '021',
    'NAME': 'Conejos',
    'LSAD': 'County',
    'CENSUSAREA': 1287.391},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.71847, 36.995846],
      [-105.996159, 36.995418],
      [-105.997472, 36.995417],
      [-106.006634, 36.995343],
      [-106.247705, 36.994266],
      [-106.248675, 36.994288],
      [-106.476228, 36.993472],
      [-106.678354, 37.228566],
      [-106.678373, 37.403596],
      [-106.039331, 37.400852],
      [-106.038912, 37.356953],
      [-105.743339, 37.356798],
      [-105.729755, 37.180506],
      [-105.770171, 37.061166],
      [-105.71847, 36.995846]]]},
   'id': '08021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08023',
    'STATE': '08',
    'COUNTY': '023',
    'NAME': 'Costilla',
    'LSAD': 'County',
    'CENSUSAREA': 1226.952},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.155042, 36.995339],
      [-105.220613, 36.995169],
      [-105.41931, 36.995856],
      [-105.442459, 36.995994],
      [-105.447255, 36.996017],
      [-105.465182, 36.995991],
      [-105.508836, 36.995895],
      [-105.512485, 36.995777],
      [-105.533922, 36.995875],
      [-105.62747, 36.995679],
      [-105.66472, 36.995874],
      [-105.716471, 36.995849],
      [-105.71847, 36.995846],
      [-105.770171, 37.061166],
      [-105.729755, 37.180506],
      [-105.743339, 37.356798],
      [-105.485516, 37.577899],
      [-105.295587, 37.654416],
      [-105.187549, 37.619669],
      [-105.154176, 37.293129],
      [-105.155042, 36.995339]]]},
   'id': '08023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08025',
    'STATE': '08',
    'COUNTY': '025',
    'NAME': 'Crowley',
    'LSAD': 'County',
    'CENSUSAREA': 787.421},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-103.501764, 38.265016],
      [-103.509364, 38.172514],
      [-103.619283, 38.171455],
      [-103.619172, 38.113355],
      [-103.835616, 38.11334],
      [-104.058242, 38.146492],
      [-104.053921, 38.522393],
      [-103.504666, 38.516409],
      [-103.501764, 38.265016]]]},
   'id': '08025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08027',
    'STATE': '08',
    'COUNTY': '027',
    'NAME': 'Custer',
    'LSAD': 'County',
    'CENSUSAREA': 738.625},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.049215, 38.257973],
      [-105.049917, 37.915479],
      [-105.194586, 38.00756],
      [-105.285076, 37.899421],
      [-105.317081, 37.938949],
      [-105.473204, 37.89597],
      [-105.604355, 38.008745],
      [-105.67627, 38.146173],
      [-105.796897, 38.265047],
      [-105.049215, 38.257973]]]},
   'id': '08027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08029',
    'STATE': '08',
    'COUNTY': '029',
    'NAME': 'Delta',
    'LSAD': 'County',
    'CENSUSAREA': 1142.05},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.500655, 38.668553],
      [-108.378698, 38.668097],
      [-108.378953, 38.829108],
      [-107.85824, 39.079804],
      [-107.76549, 39.043294],
      [-107.500606, 39.217916],
      [-107.500655, 38.668553]]]},
   'id': '08029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08031',
    'STATE': '08',
    'COUNTY': '031',
    'NAME': 'Denver',
    'LSAD': 'County',
    'CENSUSAREA': 153.0},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.053439, 39.621423],
      [-105.059305, 39.614337],
      [-105.096909, 39.614423],
      [-105.092839, 39.618327],
      [-105.092543, 39.618328],
      [-105.091657, 39.618333],
      [-105.091362, 39.618336],
      [-105.091123, 39.618331],
      [-105.090115, 39.618312],
      [-105.087826, 39.618319],
      [-105.087252, 39.618317],
      [-105.087031, 39.618339],
      [-105.08682, 39.618412],
      [-105.08668, 39.618478],
      [-105.086553, 39.61858],
      [-105.086314, 39.618808],
      [-105.086115, 39.618979],
      [-105.085928, 39.618668],
      [-105.085262, 39.618283],
      [-105.084839, 39.618411],
      [-105.084573, 39.618526],
      [-105.084221, 39.618568],
      [-105.084043, 39.618568],
      [-105.083827, 39.618569],
      [-105.083616, 39.618569],
      [-105.082983, 39.618571],
      [-105.082773, 39.618573],
      [-105.082643, 39.618574],
      [-105.082476, 39.618504],
      [-105.079398, 39.618473],
      [-105.077553, 39.618485],
      [-105.075873, 39.618508],
      [-105.074796, 39.618511],
      [-105.074518, 39.61852],
      [-105.073364, 39.618559],
      [-105.073332, 39.618559],
      [-105.072844, 39.618555],
      [-105.072819, 39.618549],
      [-105.072799, 39.618546],
      [-105.072783, 39.618546],
      [-105.072763, 39.618548],
      [-105.072746, 39.618552],
      [-105.072703, 39.618568],
      [-105.072687, 39.618573],
      [-105.072673, 39.618576],
      [-105.072655, 39.618577],
      [-105.072638, 39.618577],
      [-105.072626, 39.618576],
      [-105.072611, 39.618573],
      [-105.072508, 39.618549],
      [-105.069229, 39.618571],
      [-105.068107, 39.618589],
      [-105.06788, 39.61859],
      [-105.066937, 39.618585],
      [-105.066206, 39.618575],
      [-105.065638, 39.61859],
      [-105.065572, 39.618592],
      [-105.065519, 39.618592],
      [-105.065492, 39.618588],
      [-105.065467, 39.618588],
      [-105.06542, 39.618583],
      [-105.065141, 39.618585],
      [-105.065115, 39.61943],
      [-105.065086, 39.619588],
      [-105.06505, 39.619779],
      [-105.065039, 39.619842],
      [-105.064966, 39.620238],
      [-105.065739, 39.620586],
      [-105.065746, 39.620588],
      [-105.066141, 39.620731],
      [-105.075952, 39.624143],
      [-105.076578, 39.624365],
      [-105.076594, 39.624378],
      [-105.076072, 39.624426],
      [-105.075132, 39.62451],
      [-105.07594, 39.625274],
      [-105.07624, 39.625587],
      [-105.08024, 39.630402],
      [-105.080309, 39.630486],
      [-105.08145, 39.631858],
      [-105.081514, 39.631863],
      [-105.081639, 39.631873],
      [-105.081685, 39.631872],
      [-105.081779, 39.631873],
      [-105.083556, 39.631872],
      [-105.083546, 39.631387],
      [-105.083535, 39.630848],
      [-105.083529, 39.630155],
      [-105.083274, 39.630154],
      [-105.08251, 39.630153],
      [-105.082256, 39.630153],
      [-105.082176, 39.630152],
      [-105.081936, 39.63015],
      [-105.081856, 39.63015],
      [-105.081693, 39.630149],
      [-105.081693, 39.630115],
      [-105.081695, 39.630037],
      [-105.081701, 39.629738],
      [-105.08173, 39.628225],
      [-105.08173, 39.628168],
      [-105.081733, 39.627999],
      [-105.081735, 39.627943],
      [-105.081735, 39.627879],
      [-105.081738, 39.627687],
      [-105.08174, 39.627624],
      [-105.08174, 39.627612],
      [-105.08174, 39.627579],
      [-105.081741, 39.627568],
      [-105.082334, 39.627571],
      [-105.083897, 39.627582],
      [-105.083881, 39.627799],
      [-105.08384, 39.628391],
      [-105.083894, 39.628877],
      [-105.083939, 39.629282],
      [-105.084999, 39.629237],
      [-105.085489, 39.629217],
      [-105.085496, 39.628501],
      [-105.085508, 39.627488],
      [-105.0855, 39.626465],
      [-105.085608, 39.626465],
      [-105.086324, 39.626468],
      [-105.086449, 39.626467],
      [-105.086823, 39.626465],
      [-105.086949, 39.626465],
      [-105.087395, 39.626463],
      [-105.087647, 39.626463],
      [-105.087662, 39.627143],
      [-105.087666, 39.62732],
      [-105.087894, 39.627308],
      [-105.08834, 39.627287],
      [-105.08869, 39.627287],
      [-105.089354, 39.627286],
      [-105.089654, 39.627287],
      [-105.089902, 39.627287],
      [-105.089988, 39.627286],
      [-105.090745, 39.627288],
      [-105.09121, 39.627291],
      [-105.091214, 39.625898],
      [-105.091216, 39.624983],
      [-105.091243, 39.624593],
      [-105.091253, 39.624341],
      [-105.091256, 39.624198],
      [-105.092998, 39.624197],
      [-105.093213, 39.624197],
      [-105.093228, 39.624196],
      [-105.094461, 39.624195],
      [-105.094598, 39.624195],
      [-105.094649, 39.624196],
      [-105.09491, 39.624197],
      [-105.095563, 39.624202],
      [-105.095694, 39.624203],
      [-105.095956, 39.624205],
      [-105.096253, 39.624207],
      [-105.097144, 39.624213],
      [-105.097441, 39.624215],
      [-105.097656, 39.624216],
      [-105.098301, 39.62422],
      [-105.098516, 39.624222],
      [-105.0987, 39.624222],
      [-105.099252, 39.624222],
      [-105.099437, 39.624222],
      [-105.099738, 39.624222],
      [-105.100642, 39.624222],
      [-105.100944, 39.624223],
      [-105.10117, 39.624223],
      [-105.101848, 39.624223],
      [-105.102075, 39.624224],
      [-105.102129, 39.624224],
      [-105.102291, 39.624224],
      [-105.102346, 39.624224],
      [-105.102373, 39.624224],
      [-105.102454, 39.624224],
      [-105.102482, 39.624224],
      [-105.102524, 39.624224],
      [-105.10265, 39.624224],
      [-105.102693, 39.624224],
      [-105.10302, 39.624223],
      [-105.104002, 39.624222],
      [-105.10433, 39.624222],
      [-105.104612, 39.624221],
      [-105.105458, 39.62422],
      [-105.105741, 39.62422],
      [-105.106931, 39.624218],
      [-105.107496, 39.624218],
      [-105.107537, 39.624218],
      [-105.107894, 39.624208],
      [-105.107924, 39.624208],
      [-105.107942, 39.624208],
      [-105.108374, 39.624205],
      [-105.108376, 39.624205],
      [-105.108377, 39.624205],
      [-105.1086, 39.624208],
      [-105.108599, 39.624262],
      [-105.108597, 39.624914],
      [-105.10859, 39.626987],
      [-105.10874, 39.626987],
      [-105.109192, 39.626988],
      [-105.109343, 39.626989],
      [-105.109927, 39.626988],
      [-105.109926, 39.62708],
      [-105.109925, 39.6271],
      [-105.109922, 39.627345],
      [-105.109885, 39.629741],
      [-105.109883, 39.629897],
      [-105.109889, 39.631412],
      [-105.109893, 39.632105],
      [-105.109893, 39.632676],
      [-105.109901, 39.63404],
      [-105.109902, 39.634263],
      [-105.109901, 39.634272],
      [-105.109887, 39.634485],
      [-105.109875, 39.635069],
      [-105.109875, 39.63507],
      [-105.109875, 39.635072],
      [-105.109874, 39.635186],
      [-105.109814, 39.635188],
      [-105.101427, 39.635187],
      [-105.100841, 39.635187],
      [-105.100611, 39.635148],
      [-105.100541, 39.635136],
      [-105.099958, 39.635038],
      [-105.099708, 39.635011],
      [-105.099641, 39.634987],
      [-105.099019, 39.635037],
      [-105.098527, 39.635075],
      [-105.097052, 39.635108],
      [-105.095546, 39.635121],
      [-105.095462, 39.635121],
      [-105.093134, 39.635158],
      [-105.091582, 39.635178],
      [-105.091617, 39.635458],
      [-105.091609, 39.636546],
      [-105.0916, 39.637331],
      [-105.091598, 39.637574],
      [-105.091593, 39.638086],
      [-105.091577, 39.638729],
      [-105.091258, 39.638722],
      [-105.0911, 39.638719],
      [-105.091023, 39.638718],
      [-105.088969, 39.638703],
      [-105.08849, 39.6387],
      [-105.088349, 39.638698],
      [-105.088094, 39.638696],
      [-105.087975, 39.638696],
      [-105.087853, 39.638695],
      [-105.087804, 39.638695],
      [-105.087597, 39.638694],
      [-105.087553, 39.638693],
      [-105.087423, 39.638692],
      [-105.08738, 39.638692],
      [-105.086885, 39.638696],
      [-105.08622, 39.638703],
      [-105.085402, 39.638698],
      [-105.084908, 39.638695],
      [-105.084809, 39.638694],
      [-105.084512, 39.638693],
      [-105.084414, 39.638693],
      [-105.083866, 39.638705],
      [-105.082223, 39.638745],
      [-105.081676, 39.638759],
      [-105.081578, 39.638667],
      [-105.081589, 39.638469],
      [-105.081646, 39.637479],
      [-105.081646, 39.637475],
      [-105.081682, 39.637145],
      [-105.081683, 39.637127],
      [-105.081688, 39.637076],
      [-105.08169, 39.637059],
      [-105.081693, 39.637031],
      [-105.081702, 39.636953],
      [-105.081702, 39.63695],
      [-105.081706, 39.636924],
      [-105.081716, 39.636867],
      [-105.081657, 39.636302],
      [-105.081507, 39.636377],
      [-105.080629, 39.6368],
      [-105.078087, 39.636644],
      [-105.07724, 39.636593],
      [-105.073951, 39.636831],
      [-105.073985, 39.638739],
      [-105.074358, 39.638742],
      [-105.074846, 39.638744],
      [-105.074866, 39.638745],
      [-105.076313, 39.638737],
      [-105.076803, 39.638735],
      [-105.076807, 39.638967],
      [-105.076797, 39.639153],
      [-105.076773, 39.639353],
      [-105.076722, 39.639549],
      [-105.076653, 39.639713],
      [-105.076546, 39.639906],
      [-105.076098, 39.640739],
      [-105.07601, 39.640913],
      [-105.075946, 39.641058],
      [-105.075897, 39.64118],
      [-105.075897, 39.641182],
      [-105.075872, 39.641277],
      [-105.075857, 39.641359],
      [-105.075837, 39.641689],
      [-105.075819, 39.641842],
      [-105.075789, 39.641968],
      [-105.07576, 39.64205],
      [-105.075679, 39.642203],
      [-105.075393, 39.642666],
      [-105.075363, 39.642709],
      [-105.07486, 39.64346],
      [-105.07469, 39.643727],
      [-105.074563, 39.643945],
      [-105.074454, 39.644104],
      [-105.074292, 39.644274],
      [-105.074145, 39.644403],
      [-105.073998, 39.644513],
      [-105.073816, 39.644628],
      [-105.073665, 39.644709],
      [-105.073285, 39.644872],
      [-105.072902, 39.645038],
      [-105.072523, 39.64522],
      [-105.072434, 39.645271],
      [-105.072326, 39.64535],
      [-105.072189, 39.645493],
      [-105.072133, 39.645574],
      [-105.072093, 39.645647],
      [-105.07206, 39.645751],
      [-105.072053, 39.645789],
      [-105.072049, 39.645815],
      [-105.072044, 39.646033],
      [-105.072042, 39.64609],
      [-105.06894, 39.646087],
      [-105.063539, 39.645988],
      [-105.063539, 39.646188],
      [-105.063532, 39.646404],
      [-105.063522, 39.646672],
      [-105.06352, 39.646749],
      [-105.063503, 39.647236],
      [-105.063454, 39.648699],
      [-105.063439, 39.649187],
      [-105.063435, 39.649273],
      [-105.063425, 39.649532],
      [-105.063422, 39.649619],
      [-105.063399, 39.65008],
      [-105.062614, 39.650086],
      [-105.061679, 39.650068],
      [-105.061578, 39.650066],
      [-105.061452, 39.650063],
      [-105.057345, 39.649984],
      [-105.057257, 39.651723],
      [-105.055521, 39.651737],
      [-105.054513, 39.65176],
      [-105.054654, 39.651798],
      [-105.054703, 39.651812],
      [-105.054882, 39.651895],
      [-105.055042, 39.652003],
      [-105.055061, 39.652016],
      [-105.055136, 39.652115],
      [-105.057266, 39.652086],
      [-105.057336, 39.652085],
      [-105.057319, 39.652201],
      [-105.05724, 39.652759],
      [-105.057215, 39.652946],
      [-105.05782, 39.652948],
      [-105.057873, 39.652948],
      [-105.058031, 39.652959],
      [-105.058311, 39.652979],
      [-105.058399, 39.652982],
      [-105.058543, 39.652979],
      [-105.058527, 39.652781],
      [-105.058465, 39.652008],
      [-105.058439, 39.651687],
      [-105.058939, 39.651687],
      [-105.058839, 39.651387],
      [-105.059209, 39.651386],
      [-105.059977, 39.651386],
      [-105.060321, 39.651385],
      [-105.060648, 39.651385],
      [-105.060692, 39.651385],
      [-105.061555, 39.651385],
      [-105.062137, 39.651384],
      [-105.062133, 39.651791],
      [-105.062586, 39.651899],
      [-105.062586, 39.651859],
      [-105.062606, 39.651077],
      [-105.062606, 39.65107],
      [-105.06261, 39.650598],
      [-105.063938, 39.650486],
      [-105.063939, 39.649887],
      [-105.063926, 39.64962],
      [-105.063924, 39.649566],
      [-105.071029, 39.649579],
      [-105.071034, 39.649731],
      [-105.07104, 39.649887],
      [-105.070953, 39.650411],
      [-105.07094, 39.650486],
      [-105.070352, 39.650413],
      [-105.07014, 39.650386],
      [-105.06884, 39.651587],
      [-105.068137, 39.652364],
      [-105.067979, 39.652444],
      [-105.067921, 39.652471],
      [-105.067681, 39.652589],
      [-105.067481, 39.652641],
      [-105.067307, 39.652752],
      [-105.067283, 39.652785],
      [-105.067144, 39.652981],
      [-105.06714, 39.652987],
      [-105.067137, 39.652996],
      [-105.067089, 39.65314],
      [-105.067057, 39.653233],
      [-105.067026, 39.653327],
      [-105.06697, 39.653494],
      [-105.066941, 39.653594],
      [-105.066956, 39.654029],
      [-105.067045, 39.656587],
      [-105.068556, 39.656591],
      [-105.069183, 39.656591],
      [-105.069505, 39.656592],
      [-105.070727, 39.656594],
      [-105.070768, 39.65822],
      [-105.070793, 39.65917],
      [-105.070923, 39.659193],
      [-105.071314, 39.659265],
      [-105.071445, 39.659289],
      [-105.071479, 39.65943],
      [-105.071582, 39.659853],
      [-105.071617, 39.659995],
      [-105.07324, 39.659787],
      [-105.074427, 39.659515],
      [-105.075423, 39.659286],
      [-105.076255, 39.659096],
      [-105.077642, 39.658779],
      [-105.077479, 39.659644],
      [-105.077342, 39.660374],
      [-105.077338, 39.660389],
      [-105.077863, 39.661004],
      [-105.07907, 39.661521],
      [-105.079071, 39.661521],
      [-105.079086, 39.661526],
      [-105.079534, 39.661814],
      [-105.079733, 39.662061],
      [-105.079771, 39.662163],
      [-105.079822, 39.66216],
      [-105.079822, 39.662164],
      [-105.081454, 39.662074],
      [-105.081454, 39.662896],
      [-105.081454, 39.664987],
      [-105.081449, 39.665055],
      [-105.081455, 39.665498],
      [-105.081455, 39.665551],
      [-105.081451, 39.667743],
      [-105.081454, 39.668215],
      [-105.081457, 39.668577],
      [-105.081434, 39.669103],
      [-105.081389, 39.669628],
      [-105.08135, 39.670099],
      [-105.081192, 39.670074],
      [-105.080948, 39.67001],
      [-105.080528, 39.669902],
      [-105.080157, 39.669826],
      [-105.079876, 39.669782],
      [-105.079739, 39.669765],
      [-105.079651, 39.669755],
      [-105.079345, 39.66974],
      [-105.079329, 39.669739],
      [-105.079299, 39.669738],
      [-105.079212, 39.669738],
      [-105.079183, 39.669738],
      [-105.079175, 39.669601],
      [-105.079164, 39.669358],
      [-105.0775, 39.66933],
      [-105.076938, 39.66932],
      [-105.076939, 39.66952],
      [-105.076939, 39.669523],
      [-105.076939, 39.669686],
      [-105.076039, 39.669587],
      [-105.07614, 39.669987],
      [-105.07494, 39.670687],
      [-105.07334, 39.670013],
      [-105.07328, 39.669987],
      [-105.073253, 39.669976],
      [-105.0731, 39.669912],
      [-105.07304, 39.669887],
      [-105.072872, 39.669813],
      [-105.072371, 39.669594],
      [-105.072204, 39.669521],
      [-105.072203, 39.669499],
      [-105.072202, 39.669435],
      [-105.072202, 39.669414],
      [-105.072197, 39.669083],
      [-105.072197, 39.669058],
      [-105.072186, 39.66828],
      [-105.072183, 39.668093],
      [-105.072179, 39.667763],
      [-105.072044, 39.667763],
      [-105.071643, 39.667763],
      [-105.071509, 39.667764],
      [-105.071483, 39.667764],
      [-105.07145, 39.667764],
      [-105.071406, 39.667764],
      [-105.071381, 39.667764],
      [-105.070805, 39.667765],
      [-105.06908, 39.667769],
      [-105.068505, 39.667771],
      [-105.068263, 39.667771],
      [-105.067538, 39.667774],
      [-105.067297, 39.667775],
      [-105.067149, 39.667775],
      [-105.066705, 39.667775],
      [-105.066558, 39.667776],
      [-105.06648, 39.667776],
      [-105.066247, 39.667776],
      [-105.06617, 39.667777],
      [-105.066151, 39.667777],
      [-105.066097, 39.667777],
      [-105.066079, 39.667777],
      [-105.065885, 39.667777],
      [-105.065304, 39.667777],
      [-105.065111, 39.667778],
      [-105.064897, 39.667778],
      [-105.064257, 39.667779],
      [-105.064044, 39.66778],
      [-105.064027, 39.66778],
      [-105.063976, 39.66778],
      [-105.063959, 39.66778],
      [-105.063759, 39.66778],
      [-105.063161, 39.667782],
      [-105.062962, 39.667783],
      [-105.062534, 39.667782],
      [-105.06125, 39.66778],
      [-105.060844, 39.66778],
      [-105.060823, 39.66778],
      [-105.06068, 39.66778],
      [-105.060252, 39.66778],
      [-105.06011, 39.66778],
      [-105.059894, 39.667779],
      [-105.059248, 39.667778],
      [-105.059033, 39.667778],
      [-105.058821, 39.667778],
      [-105.058185, 39.667782],
      [-105.057974, 39.667784],
      [-105.057765, 39.667784],
      [-105.05714, 39.667784],
      [-105.056932, 39.667785],
      [-105.056725, 39.667784],
      [-105.056104, 39.667781],
      [-105.055898, 39.667781],
      [-105.055691, 39.667781],
      [-105.055072, 39.667784],
      [-105.054866, 39.667785],
      [-105.054676, 39.667785],
      [-105.054106, 39.667785],
      [-105.053916, 39.667785],
      [-105.053784, 39.667785],
      [-105.053388, 39.667785],
      [-105.053256, 39.667785],
      [-105.053257, 39.668604],
      [-105.053257, 39.669076],
      [-105.05326, 39.671063],
      [-105.053262, 39.671883],
      [-105.053262, 39.671896],
      [-105.053262, 39.671935],
      [-105.053262, 39.671949],
      [-105.053262, 39.672255],
      [-105.053251, 39.673116],
      [-105.053261, 39.673271],
      [-105.053261, 39.67328],
      [-105.053255, 39.673483],
      [-105.053247, 39.673778],
      [-105.053239, 39.674095],
      [-105.053234, 39.674299],
      [-105.053237, 39.674437],
      [-105.053246, 39.674851],
      [-105.05325, 39.674989],
      [-105.054053, 39.674969],
      [-105.056462, 39.674909],
      [-105.057265, 39.674889],
      [-105.057573, 39.674888],
      [-105.0585, 39.674887],
      [-105.058809, 39.674887],
      [-105.058955, 39.674887],
      [-105.059393, 39.674887],
      [-105.059539, 39.674887],
      [-105.060047, 39.674903],
      [-105.061573, 39.674952],
      [-105.062082, 39.674969],
      [-105.062245, 39.674973],
      [-105.062638, 39.674985],
      [-105.062734, 39.674985],
      [-105.062898, 39.674987],
      [-105.062897, 39.675082],
      [-105.062894, 39.675369],
      [-105.062894, 39.675465],
      [-105.062891, 39.675853],
      [-105.062887, 39.676224],
      [-105.062772, 39.677608],
      [-105.062835, 39.678446],
      [-105.062907, 39.679223],
      [-105.062929, 39.679259],
      [-105.062991, 39.679363],
      [-105.063177, 39.679681],
      [-105.062777, 39.679441],
      [-105.06258, 39.679293],
      [-105.062442, 39.67919],
      [-105.062086, 39.679063],
      [-105.060732, 39.678279],
      [-105.058505, 39.678615],
      [-105.058175, 39.678666],
      [-105.05806, 39.680649],
      [-105.058049, 39.681817],
      [-105.058054, 39.681825],
      [-105.058044, 39.68227],
      [-105.058034, 39.682275],
      [-105.058033, 39.682275],
      [-105.057913, 39.682277],
      [-105.057912, 39.682276],
      [-105.057783, 39.682272],
      [-105.057265, 39.682272],
      [-105.0572, 39.682271],
      [-105.056518, 39.682265],
      [-105.055588, 39.68226],
      [-105.053221, 39.682291],
      [-105.053191, 39.682397],
      [-105.053183, 39.683498],
      [-105.053183, 39.683528],
      [-105.053195, 39.68438],
      [-105.053197, 39.685563],
      [-105.053196, 39.68565],
      [-105.053194, 39.685911],
      [-105.053194, 39.685999],
      [-105.053193, 39.686347],
      [-105.053193, 39.686873],
      [-105.053208, 39.687353],
      [-105.053212, 39.68739],
      [-105.053248, 39.687654],
      [-105.053254, 39.687736],
      [-105.053264, 39.687883],
      [-105.053264, 39.6881],
      [-105.053265, 39.689194],
      [-105.053266, 39.689559],
      [-105.053251, 39.689919],
      [-105.053208, 39.691002],
      [-105.053194, 39.691364],
      [-105.053198, 39.691586],
      [-105.05321, 39.692252],
      [-105.053215, 39.692475],
      [-105.053212, 39.692542],
      [-105.053207, 39.692745],
      [-105.053205, 39.692813],
      [-105.053202, 39.692885],
      [-105.053196, 39.693103],
      [-105.053194, 39.693176],
      [-105.053198, 39.693538],
      [-105.053213, 39.694625],
      [-105.053218, 39.694988],
      [-105.053219, 39.695344],
      [-105.053223, 39.696412],
      [-105.053225, 39.696769],
      [-105.053225, 39.696779],
      [-105.053225, 39.696809],
      [-105.053225, 39.69682],
      [-105.053225, 39.696889],
      [-105.053236, 39.699078],
      [-105.053241, 39.69991],
      [-105.053245, 39.700438],
      [-105.053245, 39.702269],
      [-105.053249, 39.702562],
      [-105.053247, 39.702703],
      [-105.053245, 39.703126],
      [-105.053245, 39.703268],
      [-105.053247, 39.703985],
      [-105.053252, 39.704542],
      [-105.053258, 39.70505],
      [-105.053246, 39.705814],
      [-105.053246, 39.705921],
      [-105.053246, 39.706029],
      [-105.053249, 39.706674],
      [-105.05325, 39.706889],
      [-105.05325, 39.707054],
      [-105.053251, 39.70755],
      [-105.053252, 39.707716],
      [-105.053253, 39.707902],
      [-105.053258, 39.708463],
      [-105.05326, 39.70865],
      [-105.053259, 39.708841],
      [-105.053257, 39.709416],
      [-105.053257, 39.709608],
      [-105.053258, 39.709746],
      [-105.053262, 39.710161],
      [-105.053264, 39.7103],
      [-105.05325, 39.711343],
      [-105.053263, 39.713181],
      [-105.053271, 39.715004],
      [-105.05327, 39.71663],
      [-105.05327, 39.716647],
      [-105.053279, 39.718233],
      [-105.053278, 39.718627],
      [-105.053276, 39.718984],
      [-105.053275, 39.719071],
      [-105.053272, 39.720056],
      [-105.053271, 39.720414],
      [-105.05327, 39.720544],
      [-105.05327, 39.720933],
      [-105.05327, 39.721064],
      [-105.053268, 39.721477],
      [-105.053264, 39.722719],
      [-105.053263, 39.723133],
      [-105.053259, 39.724083],
      [-105.05324, 39.725441],
      [-105.053253, 39.7258],
      [-105.053253, 39.725828],
      [-105.053253, 39.725899],
      [-105.053253, 39.725951],
      [-105.053252, 39.726112],
      [-105.053252, 39.726184],
      [-105.053254, 39.727233],
      [-105.053254, 39.727349],
      [-105.053252, 39.727772],
      [-105.053251, 39.728522],
      [-105.053246, 39.728968],
      [-105.053244, 39.729539],
      [-105.053242, 39.72989],
      [-105.053239, 39.730942],
      [-105.053238, 39.731294],
      [-105.053235, 39.731657],
      [-105.053228, 39.732746],
      [-105.053227, 39.73311],
      [-105.053404, 39.733108],
      [-105.053935, 39.733104],
      [-105.054113, 39.733103],
      [-105.05417, 39.733102],
      [-105.05434, 39.733102],
      [-105.054398, 39.733102],
      [-105.0544, 39.733172],
      [-105.054406, 39.733384],
      [-105.054409, 39.733455],
      [-105.054411, 39.733541],
      [-105.054418, 39.73372],
      [-105.054499, 39.733706],
      [-105.054585, 39.733693],
      [-105.054587, 39.733734],
      [-105.054593, 39.73386],
      [-105.054595, 39.733902],
      [-105.054671, 39.7339],
      [-105.054903, 39.733897],
      [-105.05498, 39.733896],
      [-105.054979, 39.733854],
      [-105.054977, 39.733728],
      [-105.054977, 39.733687],
      [-105.054975, 39.733569],
      [-105.054969, 39.733217],
      [-105.054968, 39.7331],
      [-105.055082, 39.733099],
      [-105.055424, 39.733098],
      [-105.055539, 39.733098],
      [-105.055539, 39.733215],
      [-105.055539, 39.733569],
      [-105.055539, 39.733687],
      [-105.055574, 39.734508],
      [-105.055585, 39.734707],
      [-105.055586, 39.73474],
      [-105.055567, 39.734977],
      [-105.053228, 39.734965],
      [-105.053231, 39.735161],
      [-105.05323, 39.735185],
      [-105.053227, 39.735259],
      [-105.053227, 39.735284],
      [-105.053227, 39.735349],
      [-105.053227, 39.735544],
      [-105.053227, 39.735609],
      [-105.053227, 39.735841],
      [-105.053227, 39.736537],
      [-105.053227, 39.73677],
      [-105.053223, 39.737115],
      [-105.05321, 39.738152],
      [-105.053207, 39.738498],
      [-105.053206, 39.73887],
      [-105.053206, 39.739987],
      [-105.053206, 39.74036],
      [-105.053201, 39.741935],
      [-105.0532, 39.741935],
      [-105.053195, 39.741938],
      [-105.053199, 39.742204],
      [-105.053204, 39.742203],
      [-105.053209, 39.742697],
      [-105.053209, 39.742781],
      [-105.05321, 39.743339],
      [-105.053211, 39.743486],
      [-105.053211, 39.743584],
      [-105.053211, 39.743881],
      [-105.053212, 39.74398],
      [-105.053214, 39.745187],
      [-105.053226, 39.74568],
      [-105.053219, 39.747616],
      [-105.053219, 39.747687],
      [-105.053217, 39.748157],
      [-105.053213, 39.749458],
      [-105.053215, 39.749816],
      [-105.053224, 39.75089],
      [-105.053227, 39.751249],
      [-105.053227, 39.751608],
      [-105.05323, 39.752686],
      [-105.053231, 39.753046],
      [-105.053236, 39.754848],
      [-105.053236, 39.755553],
      [-105.053237, 39.755787],
      [-105.053238, 39.756939],
      [-105.053238, 39.757245],
      [-105.053238, 39.758165],
      [-105.053239, 39.758472],
      [-105.053239, 39.758836],
      [-105.05324, 39.759928],
      [-105.053241, 39.760293],
      [-105.053241, 39.760651],
      [-105.053243, 39.761725],
      [-105.053244, 39.762084],
      [-105.053243, 39.762265],
      [-105.053241, 39.762807],
      [-105.053241, 39.762989],
      [-105.053241, 39.763171],
      [-105.053241, 39.76372],
      [-105.053241, 39.763903],
      [-105.053241, 39.764085],
      [-105.053242, 39.764631],
      [-105.053243, 39.764814],
      [-105.05324, 39.764991],
      [-105.053232, 39.765521],
      [-105.05323, 39.765699],
      [-105.053242, 39.766622],
      [-105.053243, 39.767278],
      [-105.053241, 39.767409],
      [-105.053241, 39.767512],
      [-105.05324, 39.767876],
      [-105.05324, 39.768968],
      [-105.05324, 39.769333],
      [-105.053241, 39.769435],
      [-105.053245, 39.769741],
      [-105.053247, 39.769844],
      [-105.05325, 39.770102],
      [-105.053261, 39.770876],
      [-105.053265, 39.771134],
      [-105.05326, 39.771494],
      [-105.053245, 39.772577],
      [-105.053241, 39.772938],
      [-105.053241, 39.773303],
      [-105.053241, 39.774398],
      [-105.053241, 39.774763],
      [-105.053241, 39.775127],
      [-105.053244, 39.776219],
      [-105.053245, 39.776583],
      [-105.053244, 39.776943],
      [-105.053242, 39.778023],
      [-105.053242, 39.778384],
      [-105.053235, 39.778748],
      [-105.053214, 39.77984],
      [-105.053208, 39.780205],
      [-105.053214, 39.780502],
      [-105.053235, 39.781393],
      [-105.053243, 39.78169],
      [-105.053243, 39.781732],
      [-105.053243, 39.781861],
      [-105.053243, 39.781904],
      [-105.053243, 39.782075],
      [-105.053243, 39.78219],
      [-105.053211, 39.782588],
      [-105.053198, 39.782759],
      [-105.053196, 39.782852],
      [-105.05319, 39.783134],
      [-105.053189, 39.783228],
      [-105.053187, 39.783288],
      [-105.053185, 39.783435],
      [-105.053184, 39.783471],
      [-105.053184, 39.783533],
      [-105.053184, 39.783585],
      [-105.053184, 39.783687],
      [-105.053183, 39.783744],
      [-105.053183, 39.783797],
      [-105.054442, 39.783814],
      [-105.055588, 39.783818],
      [-105.056742, 39.783821],
      [-105.05675, 39.783822],
      [-105.057894, 39.78383],
      [-105.057912, 39.783831],
      [-105.058863, 39.78383],
      [-105.059054, 39.78383],
      [-105.059628, 39.78383],
      [-105.05982, 39.78383],
      [-105.060009, 39.783832],
      [-105.060346, 39.783836],
      [-105.060576, 39.783839],
      [-105.060765, 39.783842],
      [-105.061711, 39.783845],
      [-105.061848, 39.783845],
      [-105.062176, 39.783846],
      [-105.062425, 39.783847],
      [-105.062659, 39.783847],
      [-105.062659, 39.7839],
      [-105.062659, 39.784059],
      [-105.062659, 39.784112],
      [-105.062656, 39.785666],
      [-105.062655, 39.785822],
      [-105.062655, 39.786187],
      [-105.062653, 39.787],
      [-105.062653, 39.787193],
      [-105.062556, 39.787408],
      [-105.062546, 39.787425],
      [-105.062451, 39.787597],
      [-105.062865, 39.788011],
      [-105.062944, 39.788087],
      [-105.065083, 39.788086],
      [-105.065106, 39.788813],
      [-105.065123, 39.789269],
      [-105.065115, 39.78968],
      [-105.064777, 39.789691],
      [-105.064559, 39.789695],
      [-105.064552, 39.789999],
      [-105.064545, 39.790686],
      [-105.064542, 39.790989],
      [-105.064541, 39.79108],
      [-105.064243, 39.791079],
      [-105.064203, 39.791079],
      [-105.064161, 39.791079],
      [-105.063382, 39.791077],
      [-105.063306, 39.791077],
      [-105.063304, 39.790775],
      [-105.063303, 39.790737],
      [-105.063302, 39.790568],
      [-105.063302, 39.790494],
      [-105.063301, 39.790476],
      [-105.063301, 39.790445],
      [-105.063298, 39.790081],
      [-105.063059, 39.790084],
      [-105.062966, 39.790086],
      [-105.061917, 39.790083],
      [-105.061899, 39.790083],
      [-105.061722, 39.790582],
      [-105.061608, 39.790928],
      [-105.06148, 39.791075],
      [-105.060678, 39.791073],
      [-105.060417, 39.791073],
      [-105.059696, 39.791072],
      [-105.059338, 39.791072],
      [-105.05663, 39.791067],
      [-105.056162, 39.791067],
      [-105.055627, 39.791066],
      [-105.055272, 39.791065],
      [-105.055083, 39.791065],
      [-105.053246, 39.791063],
      [-104.79091, 39.79825],
      [-104.692934, 39.914183],
      [-104.600435, 39.899459],
      [-104.619906, 39.826633],
      [-104.76247, 39.82298],
      [-104.734601, 39.769181],
      [-104.856377, 39.768673],
      [-104.884646, 39.740156],
      [-104.848332, 39.659161],
      [-104.848336, 39.657891],
      [-104.848048, 39.657842],
      [-104.84794, 39.657824],
      [-104.84773, 39.657789],
      [-104.84773, 39.657239],
      [-104.847731, 39.656927],
      [-104.847733, 39.656788],
      [-104.847604, 39.656786],
      [-104.847536, 39.656785],
      [-104.847449, 39.656783],
      [-104.847119, 39.65678],
      [-104.847639, 39.656712],
      [-104.847697, 39.656704],
      [-104.84812, 39.656648],
      [-104.848967, 39.656538],
      [-104.849397, 39.656482],
      [-104.850762, 39.656305],
      [-104.852944, 39.655706],
      [-104.854474, 39.655011],
      [-104.854747, 39.654888],
      [-104.856038, 39.654178],
      [-104.856753, 39.653456],
      [-104.85683, 39.653419],
      [-104.857203, 39.653246],
      [-104.875552, 39.644617],
      [-104.876224, 39.644301],
      [-104.87613, 39.646499],
      [-104.876149, 39.647004],
      [-104.876151, 39.647061],
      [-104.876195, 39.648583],
      [-104.876195, 39.6486],
      [-104.87624, 39.65011],
      [-104.876281, 39.651459],
      [-104.876297, 39.652021],
      [-104.876306, 39.652295],
      [-104.877218, 39.652875],
      [-104.877497, 39.653052],
      [-104.877498, 39.653051],
      [-104.878034, 39.653051],
      [-104.880078, 39.653055],
      [-104.88014, 39.653057],
      [-104.880086, 39.650773],
      [-104.880228, 39.647994],
      [-104.880246, 39.647751],
      [-104.880246, 39.64653],
      [-104.880239, 39.646068],
      ...],
     [[-105.081564, 39.634728],
      [-105.080803, 39.634723],
      [-105.080907, 39.635605],
      [-105.081959, 39.63517],
      [-105.081564, 39.634728]]]},
   'id': '08031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08033',
    'STATE': '08',
    'COUNTY': '033',
    'NAME': 'Dolores',
    'LSAD': 'County',
    'CENSUSAREA': 1067.051},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.041915, 37.530653],
      [-109.041865, 37.530726],
      [-109.041806, 37.604171],
      [-109.042131, 37.617662],
      [-109.042089, 37.623795],
      [-109.041732, 37.711214],
      [-109.04176, 37.713182],
      [-109.041754, 37.835826],
      [-109.041723, 37.842051],
      [-109.042137, 37.88116],
      [-108.256427, 37.894446],
      [-108.209093, 37.820936],
      [-107.989208, 37.85664],
      [-107.860845, 37.775517],
      [-107.968875, 37.696485],
      [-107.970086, 37.639587],
      [-108.917081, 37.631902],
      [-109.043053, 37.485161],
      [-109.041915, 37.530653]]]},
   'id': '08033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08035',
    'STATE': '08',
    'COUNTY': '035',
    'NAME': 'Douglas',
    'LSAD': 'County',
    'CENSUSAREA': 840.248},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.04874, 39.566088],
      [-104.660626, 39.565909],
      [-104.662896, 39.129527],
      [-105.033544, 39.129819],
      [-105.32922, 39.129689],
      [-105.260054, 39.210445],
      [-105.04874, 39.566088]]]},
   'id': '08035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08037',
    'STATE': '08',
    'COUNTY': '037',
    'NAME': 'Eagle',
    'LSAD': 'County',
    'CENSUSAREA': 1684.53},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.206732, 39.379636],
      [-106.426487, 39.361871],
      [-107.113446, 39.366066],
      [-107.113672, 39.919112],
      [-107.033968, 39.918913],
      [-106.626555, 39.918671],
      [-106.626569, 39.924785],
      [-106.434508, 39.924914],
      [-106.385478, 39.767164],
      [-106.177604, 39.609056],
      [-106.251638, 39.465039],
      [-106.206732, 39.379636]]]},
   'id': '08037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08039',
    'STATE': '08',
    'COUNTY': '039',
    'NAME': 'Elbert',
    'LSAD': 'County',
    'CENSUSAREA': 1850.847},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.662896, 39.129527],
      [-104.660626, 39.565909],
      [-103.714355, 39.566331],
      [-103.715254, 39.128246],
      [-103.722007, 39.084085],
      [-103.719664, 38.866827],
      [-104.055528, 38.868868],
      [-104.051663, 39.128366],
      [-104.662896, 39.129527]]]},
   'id': '08039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08041',
    'STATE': '08',
    'COUNTY': '041',
    'NAME': 'El Paso',
    'LSAD': 'County',
    'CENSUSAREA': 2126.801},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.053921, 38.522393],
      [-104.941533, 38.519569],
      [-104.942426, 38.649882],
      [-104.938994, 38.796884],
      [-105.072184, 38.799382],
      [-105.028903, 38.868907],
      [-105.033544, 39.129819],
      [-104.662896, 39.129527],
      [-104.051663, 39.128366],
      [-104.055528, 38.868868],
      [-104.053921, 38.522393]]]},
   'id': '08041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08043',
    'STATE': '08',
    'COUNTY': '043',
    'NAME': 'Fremont',
    'LSAD': 'County',
    'CENSUSAREA': 1533.068},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.941533, 38.519569],
      [-104.940366, 38.258275],
      [-105.049215, 38.257973],
      [-105.796897, 38.265047],
      [-106.010751, 38.446566],
      [-105.908717, 38.505631],
      [-105.879176, 38.607312],
      [-105.96975, 38.693551],
      [-105.329134, 38.697205],
      [-105.237792, 38.696901],
      [-105.240362, 38.647595],
      [-104.942426, 38.649882],
      [-104.941533, 38.519569]]]},
   'id': '08043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08045',
    'STATE': '08',
    'COUNTY': '045',
    'NAME': 'Garfield',
    'LSAD': 'County',
    'CENSUSAREA': 2947.563},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.051417, 39.366677],
      [-109.051363, 39.497674],
      [-109.051221, 39.660472],
      [-107.938546, 39.694464],
      [-107.938502, 39.824996],
      [-107.43177, 39.828377],
      [-107.431665, 39.917725],
      [-107.318751, 39.914968],
      [-107.316993, 40.090765],
      [-107.037363, 40.091538],
      [-107.033968, 39.918913],
      [-107.113672, 39.919112],
      [-107.113446, 39.366066],
      [-107.430949, 39.366178],
      [-108.865465, 39.366251],
      [-108.874002, 39.366269],
      [-108.875659, 39.366531],
      [-109.051417, 39.366677]]]},
   'id': '08045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08047',
    'STATE': '08',
    'COUNTY': '047',
    'NAME': 'Gilpin',
    'LSAD': 'County',
    'CENSUSAREA': 149.896},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.397849, 39.912886],
      [-105.397649, 39.883187],
      [-105.398043, 39.872186],
      [-105.397568, 39.866061],
      [-105.397949, 39.860387],
      [-105.39745, 39.853697],
      [-105.397934, 39.841137],
      [-105.397949, 39.747087],
      [-105.545076, 39.773635],
      [-105.690348, 39.851996],
      [-105.675798, 39.932445],
      [-105.397971, 39.934867],
      [-105.397849, 39.912886]]]},
   'id': '08047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08049',
    'STATE': '08',
    'COUNTY': '049',
    'NAME': 'Grand',
    'LSAD': 'County',
    'CENSUSAREA': 1846.33},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.652112, 40.445231],
      [-106.612321, 40.379383],
      [-106.489842, 40.411578],
      [-106.44342, 40.346533],
      [-106.353758, 40.357536],
      [-106.230074, 40.323382],
      [-106.018622, 40.373295],
      [-105.959659, 40.348149],
      [-105.891754, 40.476661],
      [-105.854926, 40.486252],
      [-105.653321, 40.260457],
      [-105.638797, 40.038787],
      [-105.675798, 39.932445],
      [-105.690348, 39.851996],
      [-105.736426, 39.804801],
      [-105.887395, 39.796996],
      [-105.924618, 39.698972],
      [-106.023783, 39.68842],
      [-106.083711, 39.805964],
      [-106.252027, 39.914712],
      [-106.434508, 39.924914],
      [-106.626569, 39.924785],
      [-106.632257, 40.341559],
      [-106.652112, 40.445231]]]},
   'id': '08049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08051',
    'STATE': '08',
    'COUNTY': '051',
    'NAME': 'Gunnison',
    'LSAD': 'County',
    'CENSUSAREA': 3239.1},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.500606, 39.217916],
      [-107.394486, 39.256299],
      [-107.375608, 39.197931],
      [-107.28249, 39.118718],
      [-107.06632, 39.118805],
      [-107.001622, 39.042273],
      [-106.906422, 38.992091],
      [-106.801874, 38.978303],
      [-106.694969, 39.055667],
      [-106.599214, 38.997994],
      [-106.465032, 38.910354],
      [-106.326099, 38.911004],
      [-106.452126, 38.698777],
      [-106.24694, 38.422768],
      [-107.000601, 38.425619],
      [-107.001119, 38.147072],
      [-107.56862, 38.147267],
      [-107.63504, 38.301896],
      [-107.50002, 38.301926],
      [-107.500655, 38.668553],
      [-107.500606, 39.217916]]]},
   'id': '08051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08053',
    'STATE': '08',
    'COUNTY': '053',
    'NAME': 'Hinsdale',
    'LSAD': 'County',
    'CENSUSAREA': 1117.251},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.482131, 37.422673],
      [-107.482179, 37.639501],
      [-107.468843, 37.809726],
      [-107.516547, 37.826451],
      [-107.568875, 37.965015],
      [-107.51088, 38.060877],
      [-107.56862, 38.147267],
      [-107.001119, 38.147072],
      [-107.000602, 37.956041],
      [-107.138191, 37.938848],
      [-107.145138, 37.675497],
      [-107.123868, 37.675029],
      [-107.12868, 37.422942],
      [-107.482131, 37.422673]]]},
   'id': '08053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08055',
    'STATE': '08',
    'COUNTY': '055',
    'NAME': 'Huerfano',
    'LSAD': 'County',
    'CENSUSAREA': 1591.001},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.473204, 37.89597],
      [-105.317081, 37.938949],
      [-105.285076, 37.899421],
      [-105.194586, 38.00756],
      [-105.049917, 37.915479],
      [-105.013729, 37.881271],
      [-104.646383, 37.900527],
      [-104.351109, 37.817488],
      [-104.45493, 37.740839],
      [-104.548417, 37.609424],
      [-104.548652, 37.5747],
      [-104.649229, 37.49532],
      [-104.696111, 37.485425],
      [-104.695075, 37.439915],
      [-104.748938, 37.407029],
      [-104.995505, 37.375551],
      [-105.154176, 37.293129],
      [-105.187549, 37.619669],
      [-105.295587, 37.654416],
      [-105.485516, 37.577899],
      [-105.457255, 37.751464],
      [-105.428893, 37.851733],
      [-105.473204, 37.89597]]]},
   'id': '08055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08057',
    'STATE': '08',
    'COUNTY': '057',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 1613.723},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.321165, 40.999123],
      [-106.19055, 40.998056],
      [-106.185307, 40.933973],
      [-106.057715, 40.81712],
      [-105.854926, 40.486252],
      [-105.891754, 40.476661],
      [-105.959659, 40.348149],
      [-106.018622, 40.373295],
      [-106.230074, 40.323382],
      [-106.353758, 40.357536],
      [-106.44342, 40.346533],
      [-106.489842, 40.411578],
      [-106.612321, 40.379383],
      [-106.652112, 40.445231],
      [-106.706149, 40.616597],
      [-106.636922, 40.789489],
      [-106.654541, 40.849117],
      [-106.82503, 40.932119],
      [-106.852349, 40.925183],
      [-106.857772, 41.003082],
      [-106.453859, 41.002057],
      [-106.439563, 41.001978],
      [-106.437419, 41.001795],
      [-106.43095, 41.001752],
      [-106.391852, 41.001176],
      [-106.386356, 41.001144],
      [-106.321165, 40.999123]]]},
   'id': '08057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08059',
    'STATE': '08',
    'COUNTY': '059',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 764.208},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-105.081564, 39.634728],
       [-105.081959, 39.63517],
       [-105.080907, 39.635605],
       [-105.080803, 39.634723],
       [-105.081564, 39.634728]]],
     [[[-105.092839, 39.618327],
       [-105.096909, 39.614423],
       [-105.059305, 39.614337],
       [-105.053439, 39.621423],
       [-105.05414, 39.566088],
       [-105.04874, 39.566088],
       [-105.260054, 39.210445],
       [-105.32922, 39.129689],
       [-105.330444, 39.129685],
       [-105.397875, 39.129564],
       [-105.398453, 39.363516],
       [-105.398949, 39.566056],
       [-105.397949, 39.747087],
       [-105.397934, 39.841137],
       [-105.39745, 39.853697],
       [-105.397949, 39.860387],
       [-105.397568, 39.866061],
       [-105.398043, 39.872186],
       [-105.397649, 39.883187],
       [-105.397849, 39.912886],
       [-105.147342, 39.913886],
       [-105.052884, 39.913795],
       [-105.053245, 39.860018],
       [-105.0529, 39.852042],
       [-105.05319, 39.849251],
       [-105.05327, 39.820028],
       [-105.053256, 39.806497],
       [-105.052829, 39.803874],
       [-105.053162, 39.799239],
       [-105.053246, 39.791063],
       [-105.055083, 39.791065],
       [-105.055272, 39.791065],
       [-105.055627, 39.791066],
       [-105.056162, 39.791067],
       [-105.05663, 39.791067],
       [-105.059338, 39.791072],
       [-105.059696, 39.791072],
       [-105.060417, 39.791073],
       [-105.060678, 39.791073],
       [-105.06148, 39.791075],
       [-105.061608, 39.790928],
       [-105.061722, 39.790582],
       [-105.061899, 39.790083],
       [-105.061917, 39.790083],
       [-105.062966, 39.790086],
       [-105.063059, 39.790084],
       [-105.063298, 39.790081],
       [-105.063301, 39.790445],
       [-105.063301, 39.790476],
       [-105.063302, 39.790494],
       [-105.063302, 39.790568],
       [-105.063303, 39.790737],
       [-105.063304, 39.790775],
       [-105.063306, 39.791077],
       [-105.063382, 39.791077],
       [-105.064161, 39.791079],
       [-105.064203, 39.791079],
       [-105.064243, 39.791079],
       [-105.064541, 39.79108],
       [-105.064542, 39.790989],
       [-105.064545, 39.790686],
       [-105.064552, 39.789999],
       [-105.064559, 39.789695],
       [-105.064777, 39.789691],
       [-105.065115, 39.78968],
       [-105.065123, 39.789269],
       [-105.065106, 39.788813],
       [-105.065083, 39.788086],
       [-105.062944, 39.788087],
       [-105.062865, 39.788011],
       [-105.062451, 39.787597],
       [-105.062546, 39.787425],
       [-105.062556, 39.787408],
       [-105.062653, 39.787193],
       [-105.062653, 39.787],
       [-105.062655, 39.786187],
       [-105.062655, 39.785822],
       [-105.062656, 39.785666],
       [-105.062659, 39.784112],
       [-105.062659, 39.784059],
       [-105.062659, 39.7839],
       [-105.062659, 39.783847],
       [-105.062425, 39.783847],
       [-105.062176, 39.783846],
       [-105.061848, 39.783845],
       [-105.061711, 39.783845],
       [-105.060765, 39.783842],
       [-105.060576, 39.783839],
       [-105.060346, 39.783836],
       [-105.060009, 39.783832],
       [-105.05982, 39.78383],
       [-105.059628, 39.78383],
       [-105.059054, 39.78383],
       [-105.058863, 39.78383],
       [-105.057912, 39.783831],
       [-105.057894, 39.78383],
       [-105.05675, 39.783822],
       [-105.056742, 39.783821],
       [-105.055588, 39.783818],
       [-105.054442, 39.783814],
       [-105.053183, 39.783797],
       [-105.053183, 39.783744],
       [-105.053184, 39.783687],
       [-105.053184, 39.783585],
       [-105.053184, 39.783533],
       [-105.053184, 39.783471],
       [-105.053185, 39.783435],
       [-105.053187, 39.783288],
       [-105.053189, 39.783228],
       [-105.05319, 39.783134],
       [-105.053196, 39.782852],
       [-105.053198, 39.782759],
       [-105.053211, 39.782588],
       [-105.053243, 39.78219],
       [-105.053243, 39.782075],
       [-105.053243, 39.781904],
       [-105.053243, 39.781861],
       [-105.053243, 39.781732],
       [-105.053243, 39.78169],
       [-105.053235, 39.781393],
       [-105.053214, 39.780502],
       [-105.053208, 39.780205],
       [-105.053214, 39.77984],
       [-105.053235, 39.778748],
       [-105.053242, 39.778384],
       [-105.053242, 39.778023],
       [-105.053244, 39.776943],
       [-105.053245, 39.776583],
       [-105.053244, 39.776219],
       [-105.053241, 39.775127],
       [-105.053241, 39.774763],
       [-105.053241, 39.774398],
       [-105.053241, 39.773303],
       [-105.053241, 39.772938],
       [-105.053245, 39.772577],
       [-105.05326, 39.771494],
       [-105.053265, 39.771134],
       [-105.053261, 39.770876],
       [-105.05325, 39.770102],
       [-105.053247, 39.769844],
       [-105.053245, 39.769741],
       [-105.053241, 39.769435],
       [-105.05324, 39.769333],
       [-105.05324, 39.768968],
       [-105.05324, 39.767876],
       [-105.053241, 39.767512],
       [-105.053241, 39.767409],
       [-105.053243, 39.767278],
       [-105.053242, 39.766622],
       [-105.05323, 39.765699],
       [-105.053232, 39.765521],
       [-105.05324, 39.764991],
       [-105.053243, 39.764814],
       [-105.053242, 39.764631],
       [-105.053241, 39.764085],
       [-105.053241, 39.763903],
       [-105.053241, 39.76372],
       [-105.053241, 39.763171],
       [-105.053241, 39.762989],
       [-105.053241, 39.762807],
       [-105.053243, 39.762265],
       [-105.053244, 39.762084],
       [-105.053243, 39.761725],
       [-105.053241, 39.760651],
       [-105.053241, 39.760293],
       [-105.05324, 39.759928],
       [-105.053239, 39.758836],
       [-105.053239, 39.758472],
       [-105.053238, 39.758165],
       [-105.053238, 39.757245],
       [-105.053238, 39.756939],
       [-105.053237, 39.755787],
       [-105.053236, 39.755553],
       [-105.053236, 39.754848],
       [-105.053231, 39.753046],
       [-105.05323, 39.752686],
       [-105.053227, 39.751608],
       [-105.053227, 39.751249],
       [-105.053224, 39.75089],
       [-105.053215, 39.749816],
       [-105.053213, 39.749458],
       [-105.053217, 39.748157],
       [-105.053219, 39.747687],
       [-105.053219, 39.747616],
       [-105.053226, 39.74568],
       [-105.053214, 39.745187],
       [-105.053212, 39.74398],
       [-105.053211, 39.743881],
       [-105.053211, 39.743584],
       [-105.053211, 39.743486],
       [-105.05321, 39.743339],
       [-105.053209, 39.742781],
       [-105.053209, 39.742697],
       [-105.053204, 39.742203],
       [-105.053199, 39.742204],
       [-105.053195, 39.741938],
       [-105.0532, 39.741935],
       [-105.053201, 39.741935],
       [-105.053206, 39.74036],
       [-105.053206, 39.739987],
       [-105.053206, 39.73887],
       [-105.053207, 39.738498],
       [-105.05321, 39.738152],
       [-105.053223, 39.737115],
       [-105.053227, 39.73677],
       [-105.053227, 39.736537],
       [-105.053227, 39.735841],
       [-105.053227, 39.735609],
       [-105.053227, 39.735544],
       [-105.053227, 39.735349],
       [-105.053227, 39.735284],
       [-105.053227, 39.735259],
       [-105.05323, 39.735185],
       [-105.053231, 39.735161],
       [-105.053228, 39.734965],
       [-105.055567, 39.734977],
       [-105.055586, 39.73474],
       [-105.055585, 39.734707],
       [-105.055574, 39.734508],
       [-105.055539, 39.733687],
       [-105.055539, 39.733569],
       [-105.055539, 39.733215],
       [-105.055539, 39.733098],
       [-105.055424, 39.733098],
       [-105.055082, 39.733099],
       [-105.054968, 39.7331],
       [-105.054969, 39.733217],
       [-105.054975, 39.733569],
       [-105.054977, 39.733687],
       [-105.054977, 39.733728],
       [-105.054979, 39.733854],
       [-105.05498, 39.733896],
       [-105.054903, 39.733897],
       [-105.054671, 39.7339],
       [-105.054595, 39.733902],
       [-105.054593, 39.73386],
       [-105.054587, 39.733734],
       [-105.054585, 39.733693],
       [-105.054499, 39.733706],
       [-105.054418, 39.73372],
       [-105.054411, 39.733541],
       [-105.054409, 39.733455],
       [-105.054406, 39.733384],
       [-105.0544, 39.733172],
       [-105.054398, 39.733102],
       [-105.05434, 39.733102],
       [-105.05417, 39.733102],
       [-105.054113, 39.733103],
       [-105.053935, 39.733104],
       [-105.053404, 39.733108],
       [-105.053227, 39.73311],
       [-105.053228, 39.732746],
       [-105.053235, 39.731657],
       [-105.053238, 39.731294],
       [-105.053239, 39.730942],
       [-105.053242, 39.72989],
       [-105.053244, 39.729539],
       [-105.053246, 39.728968],
       [-105.053251, 39.728522],
       [-105.053252, 39.727772],
       [-105.053254, 39.727349],
       [-105.053254, 39.727233],
       [-105.053252, 39.726184],
       [-105.053252, 39.726112],
       [-105.053253, 39.725951],
       [-105.053253, 39.725899],
       [-105.053253, 39.725828],
       [-105.053253, 39.7258],
       [-105.05324, 39.725441],
       [-105.053259, 39.724083],
       [-105.053263, 39.723133],
       [-105.053264, 39.722719],
       [-105.053268, 39.721477],
       [-105.05327, 39.721064],
       [-105.05327, 39.720933],
       [-105.05327, 39.720544],
       [-105.053271, 39.720414],
       [-105.053272, 39.720056],
       [-105.053275, 39.719071],
       [-105.053276, 39.718984],
       [-105.053278, 39.718627],
       [-105.053279, 39.718233],
       [-105.05327, 39.716647],
       [-105.05327, 39.71663],
       [-105.053271, 39.715004],
       [-105.053263, 39.713181],
       [-105.05325, 39.711343],
       [-105.053264, 39.7103],
       [-105.053262, 39.710161],
       [-105.053258, 39.709746],
       [-105.053257, 39.709608],
       [-105.053257, 39.709416],
       [-105.053259, 39.708841],
       [-105.05326, 39.70865],
       [-105.053258, 39.708463],
       [-105.053253, 39.707902],
       [-105.053252, 39.707716],
       [-105.053251, 39.70755],
       [-105.05325, 39.707054],
       [-105.05325, 39.706889],
       [-105.053249, 39.706674],
       [-105.053246, 39.706029],
       [-105.053246, 39.705921],
       [-105.053246, 39.705814],
       [-105.053258, 39.70505],
       [-105.053252, 39.704542],
       [-105.053247, 39.703985],
       [-105.053245, 39.703268],
       [-105.053245, 39.703126],
       [-105.053247, 39.702703],
       [-105.053249, 39.702562],
       [-105.053245, 39.702269],
       [-105.053245, 39.700438],
       [-105.053241, 39.69991],
       [-105.053236, 39.699078],
       [-105.053225, 39.696889],
       [-105.053225, 39.69682],
       [-105.053225, 39.696809],
       [-105.053225, 39.696779],
       [-105.053225, 39.696769],
       [-105.053223, 39.696412],
       [-105.053219, 39.695344],
       [-105.053218, 39.694988],
       [-105.053213, 39.694625],
       [-105.053198, 39.693538],
       [-105.053194, 39.693176],
       [-105.053196, 39.693103],
       [-105.053202, 39.692885],
       [-105.053205, 39.692813],
       [-105.053207, 39.692745],
       [-105.053212, 39.692542],
       [-105.053215, 39.692475],
       [-105.05321, 39.692252],
       [-105.053198, 39.691586],
       [-105.053194, 39.691364],
       [-105.053208, 39.691002],
       [-105.053251, 39.689919],
       [-105.053266, 39.689559],
       [-105.053265, 39.689194],
       [-105.053264, 39.6881],
       [-105.053264, 39.687883],
       [-105.053254, 39.687736],
       [-105.053248, 39.687654],
       [-105.053212, 39.68739],
       [-105.053208, 39.687353],
       [-105.053193, 39.686873],
       [-105.053193, 39.686347],
       [-105.053194, 39.685999],
       [-105.053194, 39.685911],
       [-105.053196, 39.68565],
       [-105.053197, 39.685563],
       [-105.053195, 39.68438],
       [-105.053183, 39.683528],
       [-105.053183, 39.683498],
       [-105.053191, 39.682397],
       [-105.053221, 39.682291],
       [-105.055588, 39.68226],
       [-105.056518, 39.682265],
       [-105.0572, 39.682271],
       [-105.057265, 39.682272],
       [-105.057783, 39.682272],
       [-105.057912, 39.682276],
       [-105.057913, 39.682277],
       [-105.058033, 39.682275],
       [-105.058034, 39.682275],
       [-105.058044, 39.68227],
       [-105.058054, 39.681825],
       [-105.058049, 39.681817],
       [-105.05806, 39.680649],
       [-105.058175, 39.678666],
       [-105.058505, 39.678615],
       [-105.060732, 39.678279],
       [-105.062086, 39.679063],
       [-105.062442, 39.67919],
       [-105.06258, 39.679293],
       [-105.062777, 39.679441],
       [-105.063177, 39.679681],
       [-105.062991, 39.679363],
       [-105.062929, 39.679259],
       [-105.062907, 39.679223],
       [-105.062835, 39.678446],
       [-105.062772, 39.677608],
       [-105.062887, 39.676224],
       [-105.062891, 39.675853],
       [-105.062894, 39.675465],
       [-105.062894, 39.675369],
       [-105.062897, 39.675082],
       [-105.062898, 39.674987],
       [-105.062734, 39.674985],
       [-105.062638, 39.674985],
       [-105.062245, 39.674973],
       [-105.062082, 39.674969],
       [-105.061573, 39.674952],
       [-105.060047, 39.674903],
       [-105.059539, 39.674887],
       [-105.059393, 39.674887],
       [-105.058955, 39.674887],
       [-105.058809, 39.674887],
       [-105.0585, 39.674887],
       [-105.057573, 39.674888],
       [-105.057265, 39.674889],
       [-105.056462, 39.674909],
       [-105.054053, 39.674969],
       [-105.05325, 39.674989],
       [-105.053246, 39.674851],
       [-105.053237, 39.674437],
       [-105.053234, 39.674299],
       [-105.053239, 39.674095],
       [-105.053247, 39.673778],
       [-105.053255, 39.673483],
       [-105.053261, 39.67328],
       [-105.053261, 39.673271],
       [-105.053251, 39.673116],
       [-105.053262, 39.672255],
       [-105.053262, 39.671949],
       [-105.053262, 39.671935],
       [-105.053262, 39.671896],
       [-105.053262, 39.671883],
       [-105.05326, 39.671063],
       [-105.053257, 39.669076],
       [-105.053257, 39.668604],
       [-105.053256, 39.667785],
       [-105.053388, 39.667785],
       [-105.053784, 39.667785],
       [-105.053916, 39.667785],
       [-105.054106, 39.667785],
       [-105.054676, 39.667785],
       [-105.054866, 39.667785],
       [-105.055072, 39.667784],
       [-105.055691, 39.667781],
       [-105.055898, 39.667781],
       [-105.056104, 39.667781],
       [-105.056725, 39.667784],
       [-105.056932, 39.667785],
       [-105.05714, 39.667784],
       [-105.057765, 39.667784],
       [-105.057974, 39.667784],
       [-105.058185, 39.667782],
       [-105.058821, 39.667778],
       [-105.059033, 39.667778],
       [-105.059248, 39.667778],
       [-105.059894, 39.667779],
       [-105.06011, 39.66778],
       [-105.060252, 39.66778],
       [-105.06068, 39.66778],
       [-105.060823, 39.66778],
       [-105.060844, 39.66778],
       [-105.06125, 39.66778],
       [-105.062534, 39.667782],
       [-105.062962, 39.667783],
       [-105.063161, 39.667782],
       [-105.063759, 39.66778],
       [-105.063959, 39.66778],
       [-105.063976, 39.66778],
       [-105.064027, 39.66778],
       [-105.064044, 39.66778],
       [-105.064257, 39.667779],
       [-105.064897, 39.667778],
       [-105.065111, 39.667778],
       [-105.065304, 39.667777],
       [-105.065885, 39.667777],
       [-105.066079, 39.667777],
       [-105.066097, 39.667777],
       [-105.066151, 39.667777],
       [-105.06617, 39.667777],
       [-105.066247, 39.667776],
       [-105.06648, 39.667776],
       [-105.066558, 39.667776],
       [-105.066705, 39.667775],
       [-105.067149, 39.667775],
       [-105.067297, 39.667775],
       [-105.067538, 39.667774],
       [-105.068263, 39.667771],
       [-105.068505, 39.667771],
       [-105.06908, 39.667769],
       [-105.070805, 39.667765],
       [-105.071381, 39.667764],
       [-105.071406, 39.667764],
       [-105.07145, 39.667764],
       [-105.071483, 39.667764],
       [-105.071509, 39.667764],
       [-105.071643, 39.667763],
       [-105.072044, 39.667763],
       [-105.072179, 39.667763],
       [-105.072183, 39.668093],
       [-105.072186, 39.66828],
       [-105.072197, 39.669058],
       [-105.072197, 39.669083],
       [-105.072202, 39.669414],
       [-105.072202, 39.669435],
       [-105.072203, 39.669499],
       [-105.072204, 39.669521],
       [-105.072371, 39.669594],
       [-105.072872, 39.669813],
       [-105.07304, 39.669887],
       [-105.0731, 39.669912],
       [-105.073253, 39.669976],
       [-105.07328, 39.669987],
       [-105.07334, 39.670013],
       [-105.07494, 39.670687],
       [-105.07614, 39.669987],
       [-105.076039, 39.669587],
       [-105.076939, 39.669686],
       [-105.076939, 39.669523],
       [-105.076939, 39.66952],
       [-105.076938, 39.66932],
       [-105.0775, 39.66933],
       [-105.079164, 39.669358],
       [-105.079175, 39.669601],
       [-105.079183, 39.669738],
       [-105.079212, 39.669738],
       [-105.079299, 39.669738],
       [-105.079329, 39.669739],
       [-105.079345, 39.66974],
       [-105.079651, 39.669755],
       [-105.079739, 39.669765],
       [-105.079876, 39.669782],
       [-105.080157, 39.669826],
       [-105.080528, 39.669902],
       [-105.080948, 39.67001],
       [-105.081192, 39.670074],
       [-105.08135, 39.670099],
       [-105.081389, 39.669628],
       [-105.081434, 39.669103],
       [-105.081457, 39.668577],
       [-105.081454, 39.668215],
       [-105.081451, 39.667743],
       [-105.081455, 39.665551],
       [-105.081455, 39.665498],
       [-105.081449, 39.665055],
       [-105.081454, 39.664987],
       [-105.081454, 39.662896],
       [-105.081454, 39.662074],
       [-105.079822, 39.662164],
       [-105.079822, 39.66216],
       [-105.079771, 39.662163],
       [-105.079733, 39.662061],
       [-105.079534, 39.661814],
       [-105.079086, 39.661526],
       [-105.079071, 39.661521],
       [-105.07907, 39.661521],
       [-105.077863, 39.661004],
       [-105.077338, 39.660389],
       [-105.077342, 39.660374],
       [-105.077479, 39.659644],
       [-105.077642, 39.658779],
       [-105.076255, 39.659096],
       [-105.075423, 39.659286],
       [-105.074427, 39.659515],
       [-105.07324, 39.659787],
       [-105.071617, 39.659995],
       [-105.071582, 39.659853],
       [-105.071479, 39.65943],
       [-105.071445, 39.659289],
       [-105.071314, 39.659265],
       [-105.070923, 39.659193],
       [-105.070793, 39.65917],
       [-105.070768, 39.65822],
       [-105.070727, 39.656594],
       [-105.069505, 39.656592],
       [-105.069183, 39.656591],
       [-105.068556, 39.656591],
       [-105.067045, 39.656587],
       [-105.066956, 39.654029],
       [-105.066941, 39.653594],
       [-105.06697, 39.653494],
       [-105.067026, 39.653327],
       [-105.067057, 39.653233],
       [-105.067089, 39.65314],
       [-105.067137, 39.652996],
       [-105.06714, 39.652987],
       [-105.067144, 39.652981],
       [-105.067283, 39.652785],
       [-105.067307, 39.652752],
       [-105.067481, 39.652641],
       [-105.067681, 39.652589],
       [-105.067921, 39.652471],
       [-105.067979, 39.652444],
       [-105.068137, 39.652364],
       [-105.06884, 39.651587],
       [-105.07014, 39.650386],
       [-105.070352, 39.650413],
       [-105.07094, 39.650486],
       [-105.070953, 39.650411],
       [-105.07104, 39.649887],
       [-105.071034, 39.649731],
       [-105.071029, 39.649579],
       [-105.063924, 39.649566],
       [-105.063926, 39.64962],
       [-105.063939, 39.649887],
       [-105.063938, 39.650486],
       [-105.06261, 39.650598],
       [-105.062606, 39.65107],
       [-105.062606, 39.651077],
       [-105.062586, 39.651859],
       [-105.062586, 39.651899],
       [-105.062133, 39.651791],
       [-105.062137, 39.651384],
       [-105.061555, 39.651385],
       [-105.060692, 39.651385],
       [-105.060648, 39.651385],
       [-105.060321, 39.651385],
       [-105.059977, 39.651386],
       [-105.059209, 39.651386],
       [-105.058839, 39.651387],
       [-105.058939, 39.651687],
       [-105.058439, 39.651687],
       [-105.058465, 39.652008],
       [-105.058527, 39.652781],
       [-105.058543, 39.652979],
       [-105.058399, 39.652982],
       [-105.058311, 39.652979],
       [-105.058031, 39.652959],
       [-105.057873, 39.652948],
       [-105.05782, 39.652948],
       [-105.057215, 39.652946],
       [-105.05724, 39.652759],
       [-105.057319, 39.652201],
       [-105.057336, 39.652085],
       [-105.057266, 39.652086],
       [-105.055136, 39.652115],
       [-105.055061, 39.652016],
       [-105.055042, 39.652003],
       [-105.054882, 39.651895],
       [-105.054703, 39.651812],
       [-105.054654, 39.651798],
       [-105.054513, 39.65176],
       [-105.055521, 39.651737],
       [-105.057257, 39.651723],
       [-105.057345, 39.649984],
       [-105.061452, 39.650063],
       [-105.061578, 39.650066],
       [-105.061679, 39.650068],
       [-105.062614, 39.650086],
       [-105.063399, 39.65008],
       [-105.063422, 39.649619],
       [-105.063425, 39.649532],
       [-105.063435, 39.649273],
       [-105.063439, 39.649187],
       [-105.063454, 39.648699],
       [-105.063503, 39.647236],
       [-105.06352, 39.646749],
       [-105.063522, 39.646672],
       [-105.063532, 39.646404],
       [-105.063539, 39.646188],
       [-105.063539, 39.645988],
       [-105.06894, 39.646087],
       [-105.072042, 39.64609],
       [-105.072044, 39.646033],
       [-105.072049, 39.645815],
       [-105.072053, 39.645789],
       [-105.07206, 39.645751],
       [-105.072093, 39.645647],
       [-105.072133, 39.645574],
       [-105.072189, 39.645493],
       [-105.072326, 39.64535],
       [-105.072434, 39.645271],
       [-105.072523, 39.64522],
       [-105.072902, 39.645038],
       [-105.073285, 39.644872],
       [-105.073665, 39.644709],
       [-105.073816, 39.644628],
       [-105.073998, 39.644513],
       [-105.074145, 39.644403],
       [-105.074292, 39.644274],
       [-105.074454, 39.644104],
       [-105.074563, 39.643945],
       [-105.07469, 39.643727],
       [-105.07486, 39.64346],
       [-105.075363, 39.642709],
       [-105.075393, 39.642666],
       [-105.075679, 39.642203],
       [-105.07576, 39.64205],
       [-105.075789, 39.641968],
       [-105.075819, 39.641842],
       [-105.075837, 39.641689],
       [-105.075857, 39.641359],
       [-105.075872, 39.641277],
       [-105.075897, 39.641182],
       [-105.075897, 39.64118],
       [-105.075946, 39.641058],
       [-105.07601, 39.640913],
       [-105.076098, 39.640739],
       [-105.076546, 39.639906],
       [-105.076653, 39.639713],
       [-105.076722, 39.639549],
       [-105.076773, 39.639353],
       [-105.076797, 39.639153],
       [-105.076807, 39.638967],
       [-105.076803, 39.638735],
       [-105.076313, 39.638737],
       [-105.074866, 39.638745],
       [-105.074846, 39.638744],
       [-105.074358, 39.638742],
       [-105.073985, 39.638739],
       [-105.073951, 39.636831],
       [-105.07724, 39.636593],
       [-105.078087, 39.636644],
       [-105.080629, 39.6368],
       [-105.081507, 39.636377],
       [-105.081657, 39.636302],
       [-105.081716, 39.636867],
       [-105.081706, 39.636924],
       [-105.081702, 39.63695],
       [-105.081702, 39.636953],
       [-105.081693, 39.637031],
       [-105.08169, 39.637059],
       [-105.081688, 39.637076],
       [-105.081683, 39.637127],
       [-105.081682, 39.637145],
       [-105.081646, 39.637475],
       [-105.081646, 39.637479],
       [-105.081589, 39.638469],
       [-105.081578, 39.638667],
       [-105.081676, 39.638759],
       [-105.082223, 39.638745],
       [-105.083866, 39.638705],
       [-105.084414, 39.638693],
       [-105.084512, 39.638693],
       [-105.084809, 39.638694],
       [-105.084908, 39.638695],
       [-105.085402, 39.638698],
       [-105.08622, 39.638703],
       [-105.086885, 39.638696],
       [-105.08738, 39.638692],
       [-105.087423, 39.638692],
       [-105.087553, 39.638693],
       [-105.087597, 39.638694],
       [-105.087804, 39.638695],
       [-105.087853, 39.638695],
       [-105.087975, 39.638696],
       [-105.088094, 39.638696],
       [-105.088349, 39.638698],
       [-105.08849, 39.6387],
       [-105.088969, 39.638703],
       [-105.091023, 39.638718],
       [-105.0911, 39.638719],
       [-105.091258, 39.638722],
       [-105.091577, 39.638729],
       [-105.091593, 39.638086],
       [-105.091598, 39.637574],
       [-105.0916, 39.637331],
       [-105.091609, 39.636546],
       [-105.091617, 39.635458],
       [-105.091582, 39.635178],
       [-105.093134, 39.635158],
       [-105.095462, 39.635121],
       [-105.095546, 39.635121],
       [-105.097052, 39.635108],
       [-105.098527, 39.635075],
       [-105.099019, 39.635037],
       [-105.099641, 39.634987],
       [-105.099708, 39.635011],
       [-105.099958, 39.635038],
       [-105.100541, 39.635136],
       [-105.100611, 39.635148],
       [-105.100841, 39.635187],
       [-105.101427, 39.635187],
       [-105.109814, 39.635188],
       [-105.109874, 39.635186],
       [-105.109875, 39.635072],
       [-105.109875, 39.63507],
       [-105.109875, 39.635069],
       [-105.109887, 39.634485],
       [-105.109901, 39.634272],
       [-105.109902, 39.634263],
       [-105.109901, 39.63404],
       [-105.109893, 39.632676],
       [-105.109893, 39.632105],
       [-105.109889, 39.631412],
       [-105.109883, 39.629897],
       [-105.109885, 39.629741],
       [-105.109922, 39.627345],
       [-105.109925, 39.6271],
       [-105.109926, 39.62708],
       [-105.109927, 39.626988],
       [-105.109343, 39.626989],
       [-105.109192, 39.626988],
       [-105.10874, 39.626987],
       [-105.10859, 39.626987],
       [-105.108597, 39.624914],
       [-105.108599, 39.624262],
       [-105.1086, 39.624208],
       [-105.108377, 39.624205],
       [-105.108376, 39.624205],
       [-105.108374, 39.624205],
       [-105.107942, 39.624208],
       [-105.107924, 39.624208],
       [-105.107894, 39.624208],
       [-105.107537, 39.624218],
       [-105.107496, 39.624218],
       [-105.106931, 39.624218],
       [-105.105741, 39.62422],
       [-105.105458, 39.62422],
       [-105.104612, 39.624221],
       [-105.10433, 39.624222],
       [-105.104002, 39.624222],
       [-105.10302, 39.624223],
       [-105.102693, 39.624224],
       [-105.10265, 39.624224],
       [-105.102524, 39.624224],
       [-105.102482, 39.624224],
       [-105.102454, 39.624224],
       [-105.102373, 39.624224],
       [-105.102346, 39.624224],
       [-105.102291, 39.624224],
       [-105.102129, 39.624224],
       [-105.102075, 39.624224],
       [-105.101848, 39.624223],
       [-105.10117, 39.624223],
       [-105.100944, 39.624223],
       [-105.100642, 39.624222],
       [-105.099738, 39.624222],
       [-105.099437, 39.624222],
       [-105.099252, 39.624222],
       [-105.0987, 39.624222],
       [-105.098516, 39.624222],
       [-105.098301, 39.62422],
       [-105.097656, 39.624216],
       [-105.097441, 39.624215],
       [-105.097144, 39.624213],
       [-105.096253, 39.624207],
       [-105.095956, 39.624205],
       [-105.095694, 39.624203],
       [-105.095563, 39.624202],
       [-105.09491, 39.624197],
       [-105.094649, 39.624196],
       [-105.094598, 39.624195],
       [-105.094461, 39.624195],
       [-105.093228, 39.624196],
       [-105.093213, 39.624197],
       [-105.092998, 39.624197],
       [-105.091256, 39.624198],
       [-105.091253, 39.624341],
       [-105.091243, 39.624593],
       [-105.091216, 39.624983],
       [-105.091214, 39.625898],
       [-105.09121, 39.627291],
       [-105.090745, 39.627288],
       [-105.089988, 39.627286],
       [-105.089902, 39.627287],
       [-105.089654, 39.627287],
       [-105.089354, 39.627286],
       [-105.08869, 39.627287],
       [-105.08834, 39.627287],
       [-105.087894, 39.627308],
       [-105.087666, 39.62732],
       [-105.087662, 39.627143],
       [-105.087647, 39.626463],
       [-105.087395, 39.626463],
       [-105.086949, 39.626465],
       [-105.086823, 39.626465],
       [-105.086449, 39.626467],
       [-105.086324, 39.626468],
       [-105.085608, 39.626465],
       [-105.0855, 39.626465],
       [-105.085508, 39.627488],
       [-105.085496, 39.628501],
       [-105.085489, 39.629217],
       [-105.084999, 39.629237],
       [-105.083939, 39.629282],
       [-105.083894, 39.628877],
       [-105.08384, 39.628391],
       [-105.083881, 39.627799],
       [-105.083897, 39.627582],
       [-105.082334, 39.627571],
       [-105.081741, 39.627568],
       [-105.08174, 39.627579],
       [-105.08174, 39.627612],
       [-105.08174, 39.627624],
       [-105.081738, 39.627687],
       [-105.081735, 39.627879],
       [-105.081735, 39.627943],
       [-105.081733, 39.627999],
       [-105.08173, 39.628168],
       [-105.08173, 39.628225],
       [-105.081701, 39.629738],
       [-105.081695, 39.630037],
       [-105.081693, 39.630115],
       [-105.081693, 39.630149],
       [-105.081856, 39.63015],
       [-105.081936, 39.63015],
       [-105.082176, 39.630152],
       [-105.082256, 39.630153],
       [-105.08251, 39.630153],
       [-105.083274, 39.630154],
       [-105.083529, 39.630155],
       [-105.083535, 39.630848],
       [-105.083546, 39.631387],
       [-105.083556, 39.631872],
       [-105.081779, 39.631873],
       [-105.081685, 39.631872],
       [-105.081639, 39.631873],
       [-105.081514, 39.631863],
       [-105.08145, 39.631858],
       [-105.080309, 39.630486],
       [-105.08024, 39.630402],
       [-105.07624, 39.625587],
       [-105.07594, 39.625274],
       [-105.075132, 39.62451],
       [-105.076072, 39.624426],
       [-105.076594, 39.624378],
       [-105.076578, 39.624365],
       [-105.075952, 39.624143],
       [-105.066141, 39.620731],
       [-105.065746, 39.620588],
       [-105.065739, 39.620586],
       [-105.064966, 39.620238],
       [-105.065039, 39.619842],
       [-105.06505, 39.619779],
       [-105.065086, 39.619588],
       [-105.065115, 39.61943],
       [-105.065141, 39.618585],
       [-105.06542, 39.618583],
       [-105.065467, 39.618588],
       [-105.065492, 39.618588],
       [-105.065519, 39.618592],
       [-105.065572, 39.618592],
       [-105.065638, 39.61859],
       [-105.066206, 39.618575],
       [-105.066937, 39.618585],
       [-105.06788, 39.61859],
       [-105.068107, 39.618589],
       [-105.069229, 39.618571],
       [-105.072508, 39.618549],
       [-105.072611, 39.618573],
       [-105.072626, 39.618576],
       [-105.072638, 39.618577],
       [-105.072655, 39.618577],
       [-105.072673, 39.618576],
       [-105.072687, 39.618573],
       [-105.072703, 39.618568],
       [-105.072746, 39.618552],
       [-105.072763, 39.618548],
       [-105.072783, 39.618546],
       [-105.072799, 39.618546],
       [-105.072819, 39.618549],
       [-105.072844, 39.618555],
       [-105.073332, 39.618559],
       [-105.073364, 39.618559],
       [-105.074518, 39.61852],
       [-105.074796, 39.618511],
       [-105.075873, 39.618508],
       [-105.077553, 39.618485],
       [-105.079398, 39.618473],
       [-105.082476, 39.618504],
       [-105.082643, 39.618574],
       [-105.082773, 39.618573],
       [-105.082983, 39.618571],
       [-105.083616, 39.618569],
       [-105.083827, 39.618569],
       [-105.084043, 39.618568],
       [-105.084221, 39.618568],
       [-105.084573, 39.618526],
       [-105.084839, 39.618411],
       [-105.085262, 39.618283],
       [-105.085928, 39.618668],
       [-105.086115, 39.618979],
       [-105.086314, 39.618808],
       [-105.086553, 39.61858],
       [-105.08668, 39.618478],
       [-105.08682, 39.618412],
       [-105.087031, 39.618339],
       [-105.087252, 39.618317],
       [-105.087826, 39.618319],
       [-105.090115, 39.618312],
       [-105.091123, 39.618331],
       [-105.091362, 39.618336],
       [-105.091657, 39.618333],
       [-105.092543, 39.618328],
       [-105.092839, 39.618327]]]]},
   'id': '08059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08061',
    'STATE': '08',
    'COUNTY': '061',
    'NAME': 'Kiowa',
    'LSAD': 'County',
    'CENSUSAREA': 1767.767},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.045211, 38.581609],
      [-102.045189, 38.558732],
      [-102.045223, 38.543797],
      [-102.045112, 38.523784],
      [-102.045262, 38.505532],
      [-102.045263, 38.505395],
      [-102.044944, 38.384419],
      [-102.044613, 38.312324],
      [-102.044568, 38.268819],
      [-102.044567, 38.268749],
      [-102.74233, 38.266971],
      [-103.399938, 38.265435],
      [-103.501764, 38.265016],
      [-103.504666, 38.516409],
      [-103.172878, 38.525315],
      [-103.172943, 38.61245],
      [-102.045288, 38.615168],
      [-102.045211, 38.581609]]]},
   'id': '08061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08063',
    'STATE': '08',
    'COUNTY': '063',
    'NAME': 'Kit Carson',
    'LSAD': 'County',
    'CENSUSAREA': 2160.822},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.049806, 39.574058],
      [-102.049764, 39.56818],
      [-102.049554, 39.538932],
      [-102.049673, 39.536691],
      [-102.049679, 39.506183],
      [-102.049369, 39.423333],
      [-102.04937, 39.41821],
      [-102.049167, 39.403597],
      [-102.04896, 39.373712],
      [-102.048449, 39.303138],
      [-102.04725, 39.13702],
      [-102.047189, 39.133147],
      [-102.047134, 39.129701],
      [-102.046571, 39.047038],
      [-103.163025, 39.03761],
      [-103.154376, 39.565654],
      [-102.802932, 39.567841],
      [-102.049806, 39.574058]]]},
   'id': '08063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08065',
    'STATE': '08',
    'COUNTY': '065',
    'NAME': 'Lake',
    'LSAD': 'County',
    'CENSUSAREA': 376.911},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.426487, 39.361871],
      [-106.206732, 39.379636],
      [-106.136412, 39.379694],
      [-106.135529, 39.379546],
      [-106.183972, 39.309354],
      [-106.191006, 39.056073],
      [-106.577966, 39.057908],
      [-106.508614, 39.166681],
      [-106.485121, 39.312566],
      [-106.426487, 39.361871]]]},
   'id': '08065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08067',
    'STATE': '08',
    'COUNTY': '067',
    'NAME': 'La Plata',
    'LSAD': 'County',
    'CENSUSAREA': 1692.078},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.481737, 36.999973],
      [-108.288086, 36.999555],
      [-108.2884, 36.99952],
      [-108.320464, 36.999499],
      [-108.320721, 36.99951],
      [-108.379203, 36.999459],
      [-108.197197, 37.355475],
      [-108.038409, 37.451931],
      [-108.023006, 37.590999],
      [-107.970086, 37.639587],
      [-107.482179, 37.639501],
      [-107.482131, 37.422673],
      [-107.481737, 36.999973]]]},
   'id': '08067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08069',
    'STATE': '08',
    'COUNTY': '069',
    'NAME': 'Larimer',
    'LSAD': 'County',
    'CENSUSAREA': 2596.002},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.27686, 40.998173],
      [-105.256527, 40.998191],
      [-105.254779, 40.99821],
      [-104.943371, 40.99819],
      [-104.945551, 40.349099],
      [-105.05672, 40.349281],
      [-105.055089, 40.261793],
      [-105.196476, 40.261085],
      [-105.653321, 40.260457],
      [-105.854926, 40.486252],
      [-106.057715, 40.81712],
      [-106.185307, 40.933973],
      [-106.19055, 40.998056],
      [-106.061181, 40.996999],
      [-105.730421, 40.996886],
      [-105.724804, 40.99691],
      [-105.277138, 40.998173],
      [-105.27686, 40.998173]]]},
   'id': '08069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08071',
    'STATE': '08',
    'COUNTY': '071',
    'NAME': 'Las Animas',
    'LSAD': 'County',
    'CENSUSAREA': 4772.672},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.007855, 36.996239],
      [-104.732031, 36.993447],
      [-104.73212, 36.993484],
      [-105.000554, 36.993264],
      [-105.1208, 36.995428],
      [-105.155042, 36.995339],
      [-105.154176, 37.293129],
      [-104.995505, 37.375551],
      [-104.748938, 37.407029],
      [-104.695075, 37.439915],
      [-104.696111, 37.485425],
      [-104.649229, 37.49532],
      [-104.548652, 37.5747],
      [-104.548417, 37.609424],
      [-104.45493, 37.740839],
      [-104.351109, 37.817488],
      [-104.061132, 37.734704],
      [-104.058196, 37.644049],
      [-103.404339, 37.643576],
      [-103.075938, 37.64342],
      [-103.086105, 36.999864],
      [-103.733247, 36.998016],
      [-103.734364, 36.998041],
      [-104.007855, 36.996239]]]},
   'id': '08071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08073',
    'STATE': '08',
    'COUNTY': '073',
    'NAME': 'Lincoln',
    'LSAD': 'County',
    'CENSUSAREA': 2577.626},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-103.504666, 38.516409],
      [-104.053921, 38.522393],
      [-104.055528, 38.868868],
      [-103.719664, 38.866827],
      [-103.722007, 39.084085],
      [-103.715254, 39.128246],
      [-103.714355, 39.566331],
      [-103.707072, 39.566295],
      [-103.154955, 39.565949],
      [-103.154376, 39.565654],
      [-103.163025, 39.03761],
      [-103.172943, 38.61245],
      [-103.172878, 38.525315],
      [-103.504666, 38.516409]]]},
   'id': '08073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08075',
    'STATE': '08',
    'COUNTY': '075',
    'NAME': 'Logan',
    'LSAD': 'County',
    'CENSUSAREA': 1838.547},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-103.574522, 41.001721],
      [-103.497447, 41.001635],
      [-103.486697, 41.001914],
      [-103.421975, 41.002007],
      [-103.421925, 41.001969],
      [-103.382493, 41.001883],
      [-103.365314, 41.001846],
      [-103.362979, 41.001844],
      [-103.077804, 41.002298],
      [-103.076536, 41.002253],
      [-103.059538, 41.002368],
      [-103.057998, 41.002368],
      [-103.043444, 41.002344],
      [-103.038704, 41.002251],
      [-103.002026, 41.002486],
      [-103.000102, 41.0024],
      [-102.98269, 41.002157],
      [-102.981483, 41.002112],
      [-102.963669, 41.002186],
      [-102.962522, 41.002072],
      [-102.960706, 41.002059],
      [-102.959624, 41.002095],
      [-102.94483, 41.002303],
      [-102.943109, 41.002051],
      [-102.925568, 41.00228],
      [-102.924029, 41.002142],
      [-102.906547, 41.002276],
      [-102.904796, 41.002207],
      [-102.887407, 41.002178],
      [-102.885746, 41.002131],
      [-102.867822, 41.002183],
      [-102.865784, 41.001988],
      [-102.849263, 41.002301],
      [-102.846455, 41.002256],
      [-102.830303, 41.002351],
      [-102.82728, 41.002143],
      [-102.773546, 41.002414],
      [-102.766723, 41.002275],
      [-102.754617, 41.002361],
      [-102.739624, 41.00223],
      [-102.653463, 41.002332],
      [-102.65131, 40.749402],
      [-102.664804, 40.438473],
      [-102.77996, 40.438446],
      [-103.465377, 40.436346],
      [-103.4672, 40.523253],
      [-103.581795, 40.52335],
      [-103.574522, 41.001721]]]},
   'id': '08075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08077',
    'STATE': '08',
    'COUNTY': '077',
    'NAME': 'Mesa',
    'LSAD': 'County',
    'CENSUSAREA': 3328.974},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.059962, 38.499987],
      [-109.059541, 38.719888],
      [-109.053943, 38.904414],
      [-109.053797, 38.905284],
      [-109.053233, 38.942467],
      [-109.053292, 38.942878],
      [-109.051516, 39.124982],
      [-109.051417, 39.366677],
      [-108.875659, 39.366531],
      [-108.874002, 39.366269],
      [-108.865465, 39.366251],
      [-107.430949, 39.366178],
      [-107.465957, 39.32212],
      [-107.394486, 39.256299],
      [-107.500606, 39.217916],
      [-107.76549, 39.043294],
      [-107.85824, 39.079804],
      [-108.378953, 38.829108],
      [-108.378698, 38.668097],
      [-108.379136, 38.499987],
      [-109.059962, 38.499987]]]},
   'id': '08077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08079',
    'STATE': '08',
    'COUNTY': '079',
    'NAME': 'Mineral',
    'LSAD': 'County',
    'CENSUSAREA': 875.666},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.693845, 37.835244],
      [-106.711624, 37.664273],
      [-106.710775, 37.404228],
      [-107.128737, 37.392409],
      [-107.12868, 37.422942],
      [-107.123868, 37.675029],
      [-107.145138, 37.675497],
      [-107.138191, 37.938848],
      [-107.000602, 37.956041],
      [-106.879167, 37.96111],
      [-106.693523, 37.873519],
      [-106.693845, 37.835244]]]},
   'id': '08079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08081',
    'STATE': '08',
    'COUNTY': '081',
    'NAME': 'Moffat',
    'LSAD': 'County',
    'CENSUSAREA': 4743.29},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.050076, 41.000659],
      [-108.250649, 41.000114],
      [-107.918421, 41.002036],
      [-107.317794, 41.002957],
      [-107.314153, 40.600281],
      [-107.428813, 40.542207],
      [-107.439386, 40.223379],
      [-107.439372, 40.220454],
      [-107.644175, 40.224238],
      [-107.653987, 40.223452],
      [-109.050854, 40.222662],
      [-109.049955, 40.539901],
      [-109.050074, 40.540358],
      [-109.048249, 40.653601],
      [-109.048296, 40.662602],
      [-109.050076, 41.000659]]]},
   'id': '08081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08083',
    'STATE': '08',
    'COUNTY': '083',
    'NAME': 'Montezuma',
    'LSAD': 'County',
    'CENSUSAREA': 2029.527},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.04581, 37.374993],
      [-109.043053, 37.485161],
      [-108.917081, 37.631902],
      [-107.970086, 37.639587],
      [-108.023006, 37.590999],
      [-108.038409, 37.451931],
      [-108.197197, 37.355475],
      [-108.379203, 36.999459],
      [-108.619689, 36.999249],
      [-108.620309, 36.999287],
      [-108.954404, 36.998906],
      [-108.958868, 36.998913],
      [-109.045223, 36.999084],
      [-109.045166, 37.072742],
      [-109.045058, 37.074661],
      [-109.044995, 37.086429],
      [-109.045189, 37.096271],
      [-109.045173, 37.109464],
      [-109.045203, 37.111958],
      [-109.045156, 37.112064],
      [-109.04581, 37.374993]]]},
   'id': '08083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08085',
    'STATE': '08',
    'COUNTY': '085',
    'NAME': 'Montrose',
    'LSAD': 'County',
    'CENSUSAREA': 2240.695},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.042062, 38.15549],
      [-109.060062, 38.275489],
      [-109.059962, 38.499987],
      [-108.379136, 38.499987],
      [-108.378698, 38.668097],
      [-107.500655, 38.668553],
      [-107.50002, 38.301926],
      [-107.63504, 38.301896],
      [-107.635697, 38.332148],
      [-108.13238, 38.331573],
      [-108.086604, 38.255202],
      [-107.937588, 38.218992],
      [-107.965789, 38.152328],
      [-109.042074, 38.153023],
      [-109.042062, 38.15549]]]},
   'id': '08085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08087',
    'STATE': '08',
    'COUNTY': '087',
    'NAME': 'Morgan',
    'LSAD': 'County',
    'CENSUSAREA': 1280.433},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.150332, 40.000856],
      [-104.150494, 40.350245],
      [-104.147536, 40.350245],
      [-104.147901, 40.524348],
      [-103.581795, 40.52335],
      [-103.4672, 40.523253],
      [-103.465377, 40.436346],
      [-103.47199, 40.001502],
      [-103.705701, 40.001366],
      [-104.150332, 40.000856]]]},
   'id': '08087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08089',
    'STATE': '08',
    'COUNTY': '089',
    'NAME': 'Otero',
    'LSAD': 'County',
    'CENSUSAREA': 1261.961},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-103.619172, 38.113355],
      [-103.619283, 38.171455],
      [-103.509364, 38.172514],
      [-103.501764, 38.265016],
      [-103.399938, 38.265435],
      [-103.403592, 37.792397],
      [-103.404339, 37.643576],
      [-104.058196, 37.644049],
      [-104.061132, 37.734704],
      [-104.058242, 38.146492],
      [-103.835616, 38.11334],
      [-103.619172, 38.113355]]]},
   'id': '08089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08091',
    'STATE': '08',
    'COUNTY': '091',
    'NAME': 'Ouray',
    'LSAD': 'County',
    'CENSUSAREA': 541.593},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.738283, 37.905432],
      [-107.795469, 37.98852],
      [-107.900193, 38.026249],
      [-107.891469, 38.115957],
      [-107.965789, 38.152328],
      [-107.937588, 38.218992],
      [-108.086604, 38.255202],
      [-108.13238, 38.331573],
      [-107.635697, 38.332148],
      [-107.63504, 38.301896],
      [-107.56862, 38.147267],
      [-107.51088, 38.060877],
      [-107.568875, 37.965015],
      [-107.738283, 37.905432]]]},
   'id': '08091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08093',
    'STATE': '08',
    'COUNTY': '093',
    'NAME': 'Park',
    'LSAD': 'County',
    'CENSUSAREA': 2193.846},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.398949, 39.566056],
      [-105.398453, 39.363516],
      [-105.397875, 39.129564],
      [-105.330444, 39.129685],
      [-105.329134, 38.697205],
      [-105.96975, 38.693551],
      [-105.906587, 38.806962],
      [-105.925123, 38.872178],
      [-106.028138, 38.942849],
      [-106.110995, 38.940099],
      [-106.191006, 39.056073],
      [-106.183972, 39.309354],
      [-106.135529, 39.379546],
      [-106.017619, 39.365503],
      [-105.966786, 39.438035],
      [-105.817631, 39.53831],
      [-105.829662, 39.564865],
      [-105.642798, 39.566584],
      [-105.587986, 39.568197],
      [-105.398949, 39.566056]]]},
   'id': '08093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08095',
    'STATE': '08',
    'COUNTY': '095',
    'NAME': 'Phillips',
    'LSAD': 'County',
    'CENSUSAREA': 687.928},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.051398, 40.697542],
      [-102.051725, 40.537839],
      [-102.051519, 40.520094],
      [-102.051465, 40.440008],
      [-102.664804, 40.438473],
      [-102.65131, 40.749402],
      [-102.051292, 40.749586],
      [-102.051398, 40.697542]]]},
   'id': '08095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08097',
    'STATE': '08',
    'COUNTY': '097',
    'NAME': 'Pitkin',
    'LSAD': 'County',
    'CENSUSAREA': 970.697},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.394486, 39.256299],
      [-107.465957, 39.32212],
      [-107.430949, 39.366178],
      [-107.113446, 39.366066],
      [-106.426487, 39.361871],
      [-106.485121, 39.312566],
      [-106.508614, 39.166681],
      [-106.577966, 39.057908],
      [-106.58073, 39.048717],
      [-106.597233, 39.044821],
      [-106.591692, 39.024923],
      [-106.599214, 38.997994],
      [-106.694969, 39.055667],
      [-106.801874, 38.978303],
      [-106.906422, 38.992091],
      [-107.001622, 39.042273],
      [-107.06632, 39.118805],
      [-107.28249, 39.118718],
      [-107.375608, 39.197931],
      [-107.394486, 39.256299]]]},
   'id': '08097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08099',
    'STATE': '08',
    'COUNTY': '099',
    'NAME': 'Prowers',
    'LSAD': 'County',
    'CENSUSAREA': 1638.395},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.04451, 38.262412],
      [-102.044398, 38.250015],
      [-102.043844, 37.928102],
      [-102.043845, 37.926135],
      [-102.043219, 37.867929],
      [-102.043033, 37.824146],
      [-102.042953, 37.803535],
      [-102.042668, 37.788758],
      [-102.042158, 37.760164],
      [-102.04199, 37.738541],
      [-102.041876, 37.723875],
      [-102.041574, 37.680436],
      [-102.041694, 37.665681],
      [-102.041582, 37.654495],
      [-102.041585, 37.644282],
      [-102.747615, 37.643642],
      [-102.74233, 38.266971],
      [-102.044567, 38.268749],
      [-102.04451, 38.262412]]]},
   'id': '08099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08101',
    'STATE': '08',
    'COUNTY': '101',
    'NAME': 'Pueblo',
    'LSAD': 'County',
    'CENSUSAREA': 2386.104},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.053921, 38.522393],
      [-104.058242, 38.146492],
      [-104.061132, 37.734704],
      [-104.351109, 37.817488],
      [-104.646383, 37.900527],
      [-105.013729, 37.881271],
      [-105.049917, 37.915479],
      [-105.049215, 38.257973],
      [-104.940366, 38.258275],
      [-104.941533, 38.519569],
      [-104.053921, 38.522393]]]},
   'id': '08101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08103',
    'STATE': '08',
    'COUNTY': '103',
    'NAME': 'Rio Blanco',
    'LSAD': 'County',
    'CENSUSAREA': 3220.934},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.050873, 40.058915],
      [-109.050813, 40.059579],
      [-109.050944, 40.180712],
      [-109.050973, 40.180849],
      [-109.050854, 40.222662],
      [-107.653987, 40.223452],
      [-107.644175, 40.224238],
      [-107.439372, 40.220454],
      [-107.439386, 40.223379],
      [-107.037928, 40.225372],
      [-107.037363, 40.091538],
      [-107.316993, 40.090765],
      [-107.318751, 39.914968],
      [-107.431665, 39.917725],
      [-107.43177, 39.828377],
      [-107.938502, 39.824996],
      [-107.938546, 39.694464],
      [-109.051221, 39.660472],
      [-109.050873, 40.058915]]]},
   'id': '08103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08105',
    'STATE': '08',
    'COUNTY': '105',
    'NAME': 'Rio Grande',
    'LSAD': 'County',
    'CENSUSAREA': 911.958},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.710775, 37.404228],
      [-106.711624, 37.664273],
      [-106.693845, 37.835244],
      [-106.587139, 37.834426],
      [-106.586374, 37.747809],
      [-106.038413, 37.748353],
      [-106.039331, 37.400852],
      [-106.678373, 37.403596],
      [-106.710775, 37.404228]]]},
   'id': '08105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08107',
    'STATE': '08',
    'COUNTY': '107',
    'NAME': 'Routt',
    'LSAD': 'County',
    'CENSUSAREA': 2362.026},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.000606, 41.003444],
      [-106.857772, 41.003082],
      [-106.852349, 40.925183],
      [-106.82503, 40.932119],
      [-106.654541, 40.849117],
      [-106.636922, 40.789489],
      [-106.706149, 40.616597],
      [-106.652112, 40.445231],
      [-106.632257, 40.341559],
      [-106.626569, 39.924785],
      [-106.626555, 39.918671],
      [-107.033968, 39.918913],
      [-107.037363, 40.091538],
      [-107.037928, 40.225372],
      [-107.439386, 40.223379],
      [-107.428813, 40.542207],
      [-107.314153, 40.600281],
      [-107.317794, 41.002957],
      [-107.000606, 41.003444]]]},
   'id': '08107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08109',
    'STATE': '08',
    'COUNTY': '109',
    'NAME': 'Saguache',
    'LSAD': 'County',
    'CENSUSAREA': 3168.525},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.24694, 38.422768],
      [-106.010751, 38.446566],
      [-105.796897, 38.265047],
      [-105.67627, 38.146173],
      [-105.604355, 38.008745],
      [-105.473204, 37.89597],
      [-105.428893, 37.851733],
      [-105.457255, 37.751464],
      [-106.038413, 37.748353],
      [-106.586374, 37.747809],
      [-106.587139, 37.834426],
      [-106.693845, 37.835244],
      [-106.693523, 37.873519],
      [-106.879167, 37.96111],
      [-107.000602, 37.956041],
      [-107.001119, 38.147072],
      [-107.000601, 38.425619],
      [-106.24694, 38.422768]]]},
   'id': '08109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08111',
    'STATE': '08',
    'COUNTY': '111',
    'NAME': 'San Juan',
    'LSAD': 'County',
    'CENSUSAREA': 387.488},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-107.738283, 37.905432],
      [-107.568875, 37.965015],
      [-107.516547, 37.826451],
      [-107.468843, 37.809726],
      [-107.482179, 37.639501],
      [-107.970086, 37.639587],
      [-107.968875, 37.696485],
      [-107.860845, 37.775517],
      [-107.738283, 37.905432]]]},
   'id': '08111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08113',
    'STATE': '08',
    'COUNTY': '113',
    'NAME': 'San Miguel',
    'LSAD': 'County',
    'CENSUSAREA': 1286.611},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-109.042137, 37.88116],
      [-109.043121, 37.97426],
      [-109.042819, 37.997068],
      [-109.04282, 37.999301],
      [-109.042074, 38.153023],
      [-107.965789, 38.152328],
      [-107.891469, 38.115957],
      [-107.900193, 38.026249],
      [-107.795469, 37.98852],
      [-107.738283, 37.905432],
      [-107.860845, 37.775517],
      [-107.989208, 37.85664],
      [-108.209093, 37.820936],
      [-108.256427, 37.894446],
      [-109.042137, 37.88116]]]},
   'id': '08113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08115',
    'STATE': '08',
    'COUNTY': '115',
    'NAME': 'Sedgwick',
    'LSAD': 'County',
    'CENSUSAREA': 548.041},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.653463, 41.002332],
      [-102.621033, 41.002597],
      [-102.578696, 41.002291],
      [-102.575738, 41.002268],
      [-102.575496, 41.0022],
      [-102.566048, 41.0022],
      [-102.556789, 41.002219],
      [-102.487955, 41.002445],
      [-102.470537, 41.002382],
      [-102.469223, 41.002424],
      [-102.379593, 41.002301],
      [-102.364066, 41.002174],
      [-102.292833, 41.002207],
      [-102.292622, 41.00223],
      [-102.292553, 41.002207],
      [-102.291354, 41.002207],
      [-102.2721, 41.002245],
      [-102.267812, 41.002383],
      [-102.231931, 41.002327],
      [-102.2122, 41.002462],
      [-102.209361, 41.002442],
      [-102.19121, 41.002326],
      [-102.124972, 41.002338],
      [-102.070598, 41.002423],
      [-102.051718, 41.002377],
      [-102.051614, 41.002377],
      [-102.051292, 40.749591],
      [-102.051292, 40.749586],
      [-102.65131, 40.749402],
      [-102.653463, 41.002332]]]},
   'id': '08115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08117',
    'STATE': '08',
    'COUNTY': '117',
    'NAME': 'Summit',
    'LSAD': 'County',
    'CENSUSAREA': 608.358},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-106.434508, 39.924914],
      [-106.252027, 39.914712],
      [-106.083711, 39.805964],
      [-106.023783, 39.68842],
      [-105.924618, 39.698972],
      [-105.793058, 39.636328],
      [-105.829662, 39.564865],
      [-105.817631, 39.53831],
      [-105.966786, 39.438035],
      [-106.017619, 39.365503],
      [-106.135529, 39.379546],
      [-106.136412, 39.379694],
      [-106.206732, 39.379636],
      [-106.251638, 39.465039],
      [-106.177604, 39.609056],
      [-106.385478, 39.767164],
      [-106.434508, 39.924914]]]},
   'id': '08117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08119',
    'STATE': '08',
    'COUNTY': '119',
    'NAME': 'Teller',
    'LSAD': 'County',
    'CENSUSAREA': 557.055},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-105.330444, 39.129685],
      [-105.32922, 39.129689],
      [-105.033544, 39.129819],
      [-105.028903, 38.868907],
      [-105.072184, 38.799382],
      [-104.938994, 38.796884],
      [-104.942426, 38.649882],
      [-105.240362, 38.647595],
      [-105.237792, 38.696901],
      [-105.329134, 38.697205],
      [-105.330444, 39.129685]]]},
   'id': '08119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08121',
    'STATE': '08',
    'COUNTY': '121',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 2518.031},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-103.705701, 40.001366],
      [-103.47199, 40.001502],
      [-103.465377, 40.436346],
      [-102.77996, 40.438446],
      [-102.803767, 40.002554],
      [-102.802932, 39.567841],
      [-103.154376, 39.565654],
      [-103.154955, 39.565949],
      [-103.707072, 39.566295],
      [-103.706547, 39.739894],
      [-103.705826, 39.999984],
      [-103.705701, 40.001366]]]},
   'id': '08121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08123',
    'STATE': '08',
    'COUNTY': '123',
    'NAME': 'Weld',
    'LSAD': 'County',
    'CENSUSAREA': 3987.238},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-104.882452, 40.998186],
      [-104.497149, 41.001828],
      [-104.497058, 41.001805],
      [-104.214692, 41.001657],
      [-104.214191, 41.001568],
      [-104.211473, 41.001591],
      [-104.123586, 41.001626],
      [-104.10459, 41.001543],
      [-104.086068, 41.001563],
      [-104.066961, 41.001504],
      [-104.053249, 41.001406],
      [-104.039238, 41.001502],
      [-104.023383, 41.001887],
      [-104.018223, 41.001617],
      [-103.972642, 41.001615],
      [-103.971373, 41.001524],
      [-103.953525, 41.001596],
      [-103.896207, 41.00175],
      [-103.877967, 41.001673],
      [-103.858449, 41.001681],
      [-103.574522, 41.001721],
      [-103.581795, 40.52335],
      [-104.147901, 40.524348],
      [-104.147536, 40.350245],
      [-104.150494, 40.350245],
      [-104.150332, 40.000856],
      [-104.922153, 40.00033],
      [-104.923689, 40.000327],
      [-104.961408, 40.000337],
      [-104.961413, 40.000939],
      [-104.961427, 40.001777],
      [-104.961427, 40.002654],
      [-104.961426, 40.005019],
      [-104.961426, 40.006441],
      [-104.961416, 40.00761],
      [-104.961415, 40.009766],
      [-104.961411, 40.010341],
      [-104.961398, 40.012227],
      [-104.961402, 40.012901],
      [-104.961399, 40.013205],
      [-104.961391, 40.013431],
      [-104.961375, 40.013511],
      [-104.961344, 40.013606],
      [-104.961296, 40.013687],
      [-104.961265, 40.013729],
      [-104.961291, 40.014052],
      [-104.961291, 40.014055],
      [-104.9613, 40.014321],
      [-104.961306, 40.014533],
      [-104.961312, 40.014644],
      [-104.961313, 40.014677],
      [-104.961315, 40.01477],
      [-104.96132, 40.014982],
      [-104.961325, 40.015151],
      [-104.96136, 40.01523],
      [-104.961373, 40.015292],
      [-104.961385, 40.021967],
      [-104.961388, 40.023611],
      [-104.961389, 40.023669],
      [-104.961404, 40.024959],
      [-104.961401, 40.026273],
      [-104.961393, 40.026667],
      [-104.961394, 40.028348],
      [-104.961401, 40.029459],
      [-104.961392, 40.030224],
      [-104.961375, 40.033481],
      [-104.961358, 40.034687],
      [-104.961342, 40.035757],
      [-104.961296, 40.037638],
      [-104.961249, 40.039093],
      [-104.961233, 40.039603],
      [-104.961207, 40.040774],
      [-104.961195, 40.041298],
      [-104.961151, 40.043651],
      [-104.961156, 40.043999],
      [-104.961158, 40.044227],
      [-104.964109, 40.044169],
      [-104.966526, 40.044123],
      [-104.967371, 40.044109],
      [-104.968129, 40.044096],
      [-104.969589, 40.044089],
      [-104.970727, 40.044069],
      [-104.971161, 40.044061],
      [-104.972908, 40.04404],
      [-104.973448, 40.044039],
      [-104.973879, 40.044033],
      [-104.976435, 40.043994],
      [-104.976919, 40.043987],
      [-104.979344, 40.043951],
      [-104.979427, 40.043679],
      [-104.979914, 40.042353],
      [-104.979967, 40.04216],
      [-104.980001, 40.041976],
      [-104.980028, 40.041676],
      [-104.980037, 40.041206],
      [-104.980037, 40.041142],
      [-104.980041, 40.040316],
      [-104.980044, 40.03956],
      [-104.980046, 40.039173],
      [-104.980047, 40.038969],
      [-104.980048, 40.038342],
      [-104.98005, 40.037516],
      [-104.980051, 40.036828],
      [-104.980054, 40.035179],
      [-104.980054, 40.035136],
      [-104.980054, 40.035048],
      [-104.980058, 40.032882],
      [-104.980058, 40.032708],
      [-104.980059, 40.03242],
      [-104.980072, 40.031203],
      [-104.980071, 40.03042],
      [-104.980051, 40.029704],
      [-104.980049, 40.029647],
      [-104.980048, 40.029411],
      [-104.980196, 40.029409],
      [-104.98033, 40.029407],
      [-104.980629, 40.029406],
      [-104.980653, 40.029406],
      [-104.980994, 40.029409],
      [-104.981995, 40.029412],
      [-104.98542, 40.029407],
      [-104.986048, 40.029406],
      [-104.986503, 40.029405],
      [-104.986482, 40.028536],
      [-104.986523, 40.028536],
      [-104.986513, 40.026003],
      [-104.989739, 40.025984],
      [-104.991244, 40.025975],
      [-104.991419, 40.025974],
      [-104.991594, 40.025973],
      [-104.994316, 40.025958],
      [-104.994559, 40.025956],
      [-104.994802, 40.025954],
      [-104.994836, 40.025954],
      [-104.999122, 40.025928],
      [-104.999117, 40.025288],
      [-104.999117, 40.023998],
      [-104.999116, 40.023657],
      [-104.999116, 40.023509],
      [-104.997537, 40.02351],
      [-104.997354, 40.023511],
      [-104.996742, 40.023509],
      [-104.996753, 40.022423],
      [-104.996769, 40.02095],
      [-104.997391, 40.020936],
      [-104.997428, 40.020946],
      [-104.997427, 40.020935],
      [-104.998587, 40.020911],
      [-104.998729, 40.021001],
      [-104.999109, 40.021002],
      [-104.99911, 40.020633],
      [-104.999047, 40.020627],
      [-104.997816, 40.020631],
      [-104.997415, 40.020633],
      [-104.997391, 40.020625],
      [-104.997312, 40.020601],
      [-104.997284, 40.0206],
      [-104.997168, 40.020598],
      [-104.996627, 40.020585],
      [-104.996248, 40.02064],
      [-104.995984, 40.020624],
      [-104.995826, 40.020574],
      [-104.995683, 40.020437],
      [-104.995633, 40.020195],
      [-104.995719, 40.020052],
      [-104.995819, 40.019926],
      [-104.995897, 40.019761],
      [-104.995983, 40.019553],
      [-104.996118, 40.019366],
      [-104.996225, 40.019157],
      [-104.996404, 40.018981],
      [-104.996611, 40.018745],
      [-104.996718, 40.01864],
      [-104.996868, 40.018393],
      [-104.996989, 40.018283],
      [-104.997389, 40.017986],
      [-104.997603, 40.017832],
      [-104.997746, 40.017668],
      [-104.997788, 40.017333],
      [-104.997874, 40.017107],
      [-104.997888, 40.016943],
      [-104.998016, 40.016789],
      [-104.998452, 40.016519],
      [-104.998566, 40.016393],
      [-104.998787, 40.016129],
      [-104.99899, 40.016004],
      [-104.999001, 40.015997],
      [-104.999073, 40.015939],
      [-104.999073, 40.015907],
      [-104.999065, 40.014887],
      [-104.997215, 40.014887],
      [-104.992735, 40.014899],
      [-104.989614, 40.01489],
      [-104.989645, 40.007971],
      [-104.989647, 40.007679],
      [-104.989727, 40.00768],
      [-104.989819, 40.007681],
      [-104.992009, 40.007666],
      [-104.994335, 40.007655],
      [-104.995175, 40.007656],
      [-104.995974, 40.007651],
      [-104.996484, 40.007654],
      [-104.99649, 40.007654],
      [-104.996497, 40.007654],
      [-104.996506, 40.007654],
      [-104.996517, 40.007654],
      [-104.996532, 40.007654],
      [-104.996551, 40.007654],
      [-104.996576, 40.007654],
      [-104.996609, 40.007654],
      [-104.996653, 40.007654],
      [-104.996716, 40.007654],
      [-104.996779, 40.007654],
      [-104.996801, 40.007654],
      [-104.99681, 40.007654],
      [-104.996822, 40.007654],
      [-104.996841, 40.007654],
      [-104.996849, 40.007653],
      [-104.996858, 40.007653],
      [-104.996879, 40.007653],
      [-104.996885, 40.007653],
      [-104.996945, 40.007653],
      [-104.998486, 40.007646],
      [-104.998519, 40.007646],
      [-104.998528, 40.007646],
      [-104.999082, 40.007648],
      [-105.007999, 40.007455],
      [-105.007954, 40.00578],
      [-105.007929, 40.002536],
      [-105.007904, 40.000292],
      [-105.008402, 40.00029],
      [-105.008402, 40.002531],
      [-105.008426, 40.005772],
      [-105.008475, 40.007445],
      [-105.008555, 40.007444],
      [-105.008979, 40.007435],
      [-105.008961, 40.005764],
      [-105.008944, 40.00426],
      [-105.00893, 40.002954],
      [-105.008928, 40.002694],
      [-105.008926, 40.002527],
      [-105.008903, 40.00029],
      [-105.009432, 40.000289],
      [-105.010221, 40.000288],
      [-105.010347, 40.000289],
      [-105.011008, 40.000294],
      [-105.011684, 40.000292],
      [-105.01179, 40.000292],
      [-105.014591, 40.000285],
      [-105.015186, 40.00029],
      [-105.016009, 40.000308],
      [-105.017365, 40.000307],
      [-105.017772, 40.000307],
      [-105.022384, 40.000286],
      [-105.02762, 40.000263],
      [-105.037075, 40.00028],
      [-105.038601, 40.000268],
      [-105.041853, 40.000267],
      [-105.04392, 40.000267],
      [-105.044051, 40.000267],
      [-105.045672, 40.000266],
      [-105.046049, 40.000265],
      [-105.046237, 40.000265],
      [-105.047106, 40.000264],
      [-105.052809, 40.00026],
      [-105.052823, 40.00026],
      [-105.055432, 40.000251],
      [-105.055376, 40.144692],
      [-105.055375, 40.144929],
      [-105.055089, 40.261793],
      [-105.05672, 40.349281],
      [-104.945551, 40.349099],
      [-104.943371, 40.99819],
      [-104.882452, 40.998186]]]},
   'id': '08123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US08125',
    'STATE': '08',
    'COUNTY': '125',
    'NAME': 'Yuma',
    'LSAD': 'County',
    'CENSUSAREA': 2364.405},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.051465, 40.440008],
      [-102.05184, 40.396396],
      [-102.051572, 40.39308],
      [-102.051669, 40.349213],
      [-102.051922, 40.235344],
      [-102.051894, 40.229193],
      [-102.051909, 40.162674],
      [-102.052001, 40.148359],
      [-102.051744, 40.003078],
      [-102.051569, 39.849805],
      [-102.051363, 39.843471],
      [-102.051318, 39.833311],
      [-102.051254, 39.818992],
      [-102.050594, 39.675594],
      [-102.049954, 39.592331],
      [-102.049806, 39.574058],
      [-102.802932, 39.567841],
      [-102.803767, 40.002554],
      [-102.77996, 40.438446],
      [-102.664804, 40.438473],
      [-102.051465, 40.440008]]]},
   'id': '08125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09001',
    'STATE': '09',
    'COUNTY': '001',
    'NAME': 'Fairfield',
    'LSAD': 'County',
    'CENSUSAREA': 624.89},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.517473, 41.666646],
      [-73.516019, 41.665964],
      [-73.514784, 41.665886],
      [-73.511149, 41.666488],
      [-73.510379, 41.666498],
      [-73.506923, 41.665802],
      [-73.441466, 41.491294],
      [-73.331569, 41.472677],
      [-73.326774, 41.469515],
      [-73.312873, 41.467415],
      [-73.310473, 41.468815],
      [-73.207688, 41.420544],
      [-73.184857, 41.406296],
      [-73.187957, 41.397296],
      [-73.183269, 41.391711],
      [-73.173356, 41.383596],
      [-73.161253, 41.383853],
      [-73.147555, 41.367696],
      [-73.136054, 41.351196],
      [-73.115754, 41.332196],
      [-73.090938, 41.319256],
      [-73.08665, 41.314495],
      [-73.078952, 41.311596],
      [-73.077652, 41.307696],
      [-73.075352, 41.305596],
      [-73.067851, 41.300996],
      [-72.985095, 41.234358],
      [-72.986247, 41.233497],
      [-72.997948, 41.222697],
      [-73.003639, 41.215287],
      [-73.007548, 41.210197],
      [-73.013465, 41.205479],
      [-73.013988, 41.205062],
      [-73.014948, 41.204297],
      [-73.020149, 41.204097],
      [-73.020167, 41.204237],
      [-73.020195, 41.204446],
      [-73.02021, 41.204568],
      [-73.020254, 41.204906],
      [-73.020449, 41.206397],
      [-73.022549, 41.207197],
      [-73.024783, 41.207435],
      [-73.045602, 41.209658],
      [-73.05065, 41.210197],
      [-73.054947, 41.208468],
      [-73.05935, 41.206697],
      [-73.07761, 41.195176],
      [-73.07945, 41.194015],
      [-73.09122, 41.184153],
      [-73.092, 41.1835],
      [-73.092147, 41.183377],
      [-73.104328, 41.17317],
      [-73.105483, 41.172203],
      [-73.105493, 41.172194],
      [-73.107987, 41.168738],
      [-73.110352, 41.159697],
      [-73.109952, 41.156997],
      [-73.108352, 41.153718],
      [-73.111052, 41.150797],
      [-73.130253, 41.146797],
      [-73.16437, 41.158565],
      [-73.170074, 41.160532],
      [-73.170701, 41.164945],
      [-73.177774, 41.166697],
      [-73.202656, 41.158096],
      [-73.228295, 41.142602],
      [-73.235058, 41.143996],
      [-73.247958, 41.126396],
      [-73.262358, 41.117496],
      [-73.286759, 41.127896],
      [-73.296359, 41.125696],
      [-73.31186, 41.116296],
      [-73.33066, 41.109996],
      [-73.372296, 41.10402],
      [-73.392162, 41.087696],
      [-73.400154, 41.086299],
      [-73.41367, 41.073258],
      [-73.435063, 41.056696],
      [-73.450364, 41.057096],
      [-73.468239, 41.051347],
      [-73.477364, 41.035997],
      [-73.493327, 41.048173],
      [-73.516903, 41.038738],
      [-73.516766, 41.029497],
      [-73.522666, 41.019297],
      [-73.528866, 41.016397],
      [-73.531169, 41.021919],
      [-73.530189, 41.028776],
      [-73.532786, 41.03167],
      [-73.535338, 41.03192],
      [-73.551494, 41.024336],
      [-73.561968, 41.016797],
      [-73.567668, 41.010897],
      [-73.570068, 41.001597],
      [-73.583968, 41.000897],
      [-73.584988, 41.010537],
      [-73.595699, 41.015995],
      [-73.603952, 41.015054],
      [-73.643478, 41.002171],
      [-73.651175, 40.995229],
      [-73.657336, 40.985171],
      [-73.654671, 41.011697],
      [-73.655371, 41.012797],
      [-73.670472, 41.030097],
      [-73.679973, 41.041797],
      [-73.687173, 41.050697],
      [-73.694273, 41.059296],
      [-73.727775, 41.100696],
      [-73.639672, 41.141495],
      [-73.632153, 41.144921],
      [-73.614407, 41.153001],
      [-73.514617, 41.198434],
      [-73.509487, 41.200814],
      [-73.482709, 41.21276],
      [-73.550961, 41.295422],
      [-73.544728, 41.366375],
      [-73.543641, 41.376778],
      [-73.537673, 41.433905],
      [-73.537469, 41.43589],
      [-73.536969, 41.441094],
      [-73.536067, 41.451331],
      [-73.535986, 41.45306],
      [-73.535885, 41.455236],
      [-73.535857, 41.455709],
      [-73.535769, 41.457159],
      [-73.534369, 41.475894],
      [-73.534269, 41.476394],
      [-73.534269, 41.476911],
      [-73.53415, 41.47806],
      [-73.534055, 41.478968],
      [-73.533969, 41.479693],
      [-73.530067, 41.527194],
      [-73.521457, 41.616429],
      [-73.517473, 41.666646]]]},
   'id': '09001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09003',
    'STATE': '09',
    'COUNTY': '003',
    'NAME': 'Hartford',
    'LSAD': 'County',
    'CENSUSAREA': 735.097},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-72.752181, 41.578894],
      [-72.94635, 41.556797],
      [-72.98325, 41.639598],
      [-72.99855, 41.712498],
      [-73.012256, 41.775132],
      [-73.012534, 41.77541],
      [-73.012633, 41.777457],
      [-73.016534, 41.795655],
      [-73.016936, 41.798183],
      [-72.949024, 41.806431],
      [-72.905945, 41.921696],
      [-72.88706, 41.973121],
      [-73.029537, 41.966606],
      [-73.008745, 42.038854],
      [-73.008739, 42.039356],
      [-72.863733, 42.03771],
      [-72.863619, 42.037709],
      [-72.813541, 42.036494],
      [-72.816741, 41.997595],
      [-72.774757, 42.002129],
      [-72.766739, 42.002995],
      [-72.766139, 42.007695],
      [-72.758151, 42.020865],
      [-72.757467, 42.020947],
      [-72.755838, 42.036195],
      [-72.714134, 42.036608],
      [-72.695927, 42.036788],
      [-72.509187, 42.034607],
      [-72.509081, 42.033539],
      [-72.49973, 41.984295],
      [-72.498928, 41.977893],
      [-72.492729, 41.947497],
      [-72.503065, 41.946608],
      [-72.51333, 41.945401],
      [-72.51363, 41.942997],
      [-72.51733, 41.869897],
      [-72.463899, 41.745572],
      [-72.410629, 41.601798],
      [-72.417229, 41.590598],
      [-72.46673, 41.583899],
      [-72.54423, 41.642696],
      [-72.630524, 41.633282],
      [-72.627836, 41.640199],
      [-72.714538, 41.60431],
      [-72.731671, 41.595779],
      [-72.752941, 41.592497],
      [-72.752181, 41.578894]]]},
   'id': '09003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09005',
    'STATE': '09',
    'COUNTY': '005',
    'NAME': 'Litchfield',
    'LSAD': 'County',
    'CENSUSAREA': 920.56},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.145036, 41.557822],
      [-73.164676, 41.557088],
      [-73.15573, 41.515279],
      [-73.318889, 41.505189],
      [-73.327114, 41.484527],
      [-73.310473, 41.468815],
      [-73.312873, 41.467415],
      [-73.326774, 41.469515],
      [-73.331569, 41.472677],
      [-73.441466, 41.491294],
      [-73.506923, 41.665802],
      [-73.510379, 41.666498],
      [-73.511149, 41.666488],
      [-73.514784, 41.665886],
      [-73.516019, 41.665964],
      [-73.517473, 41.666646],
      [-73.510171, 41.758686],
      [-73.505008, 41.823773],
      [-73.504944, 41.824285],
      [-73.487314, 42.049638],
      [-73.29442, 42.046984],
      [-73.293097, 42.04694],
      [-73.231056, 42.044945],
      [-73.229798, 42.044877],
      [-73.127276, 42.041964],
      [-73.053254, 42.039861],
      [-73.008739, 42.039356],
      [-73.008745, 42.038854],
      [-73.029537, 41.966606],
      [-72.88706, 41.973121],
      [-72.905945, 41.921696],
      [-72.949024, 41.806431],
      [-73.016936, 41.798183],
      [-73.016534, 41.795655],
      [-73.012633, 41.777457],
      [-73.012534, 41.77541],
      [-73.012256, 41.775132],
      [-72.99855, 41.712498],
      [-72.98325, 41.639598],
      [-73.004046, 41.628577],
      [-73.021471, 41.627104],
      [-73.01865, 41.614097],
      [-73.036156, 41.615197],
      [-73.058024, 41.60674],
      [-73.145036, 41.557822]]]},
   'id': '09005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09007',
    'STATE': '09',
    'COUNTY': '007',
    'NAME': 'Middlesex',
    'LSAD': 'County',
    'CENSUSAREA': 369.301},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-72.322931, 41.518119],
      [-72.305531, 41.436282],
      [-72.43371, 41.423995],
      [-72.34146, 41.28011],
      [-72.348643, 41.277446],
      [-72.348068, 41.269698],
      [-72.386629, 41.261798],
      [-72.398688, 41.278172],
      [-72.40593, 41.278398],
      [-72.451925, 41.278885],
      [-72.472539, 41.270103],
      [-72.485693, 41.270881],
      [-72.499534, 41.265866],
      [-72.506634, 41.260099],
      [-72.51866, 41.261253],
      [-72.521312, 41.2656],
      [-72.529416, 41.264421],
      [-72.533247, 41.26269],
      [-72.536746, 41.256207],
      [-72.537776, 41.255646],
      [-72.678739, 41.433797],
      [-72.682539, 41.433797],
      [-72.708343, 41.429443],
      [-72.746141, 41.423297],
      [-72.733886, 41.485368],
      [-72.74333, 41.483114],
      [-72.744742, 41.497698],
      [-72.752181, 41.578894],
      [-72.752941, 41.592497],
      [-72.731671, 41.595779],
      [-72.714538, 41.60431],
      [-72.627836, 41.640199],
      [-72.630524, 41.633282],
      [-72.54423, 41.642696],
      [-72.46673, 41.583899],
      [-72.430767, 41.524567],
      [-72.322931, 41.518119]]]},
   'id': '09007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09009',
    'STATE': '09',
    'COUNTY': '009',
    'NAME': 'New Haven',
    'LSAD': 'County',
    'CENSUSAREA': 604.506},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.15573, 41.515279],
      [-73.164676, 41.557088],
      [-73.145036, 41.557822],
      [-73.058024, 41.60674],
      [-73.036156, 41.615197],
      [-73.01865, 41.614097],
      [-73.021471, 41.627104],
      [-73.004046, 41.628577],
      [-72.98325, 41.639598],
      [-72.94635, 41.556797],
      [-72.752181, 41.578894],
      [-72.744742, 41.497698],
      [-72.74333, 41.483114],
      [-72.733886, 41.485368],
      [-72.746141, 41.423297],
      [-72.708343, 41.429443],
      [-72.682539, 41.433797],
      [-72.678739, 41.433797],
      [-72.537776, 41.255646],
      [-72.546833, 41.250718],
      [-72.547235, 41.250499],
      [-72.570655, 41.267744],
      [-72.571076, 41.268054],
      [-72.571136, 41.268098],
      [-72.583336, 41.271698],
      [-72.585181, 41.271321],
      [-72.585934, 41.271168],
      [-72.586674, 41.271017],
      [-72.587926, 41.270761],
      [-72.589818, 41.270375],
      [-72.590967, 41.270141],
      [-72.598036, 41.268698],
      [-72.607863, 41.270387],
      [-72.610236, 41.270795],
      [-72.617237, 41.271998],
      [-72.617521, 41.27194],
      [-72.617983, 41.271845],
      [-72.631363, 41.269092],
      [-72.641001, 41.267108],
      [-72.641538, 41.266998],
      [-72.642811, 41.266884],
      [-72.650697, 41.266178],
      [-72.653838, 41.265897],
      [-72.653931, 41.265931],
      [-72.654715, 41.266219],
      [-72.662203, 41.268964],
      [-72.662838, 41.269197],
      [-72.667176, 41.268192],
      [-72.671673, 41.267151],
      [-72.672339, 41.266997],
      [-72.674319, 41.26552],
      [-72.684939, 41.257597],
      [-72.685414, 41.252607],
      [-72.685539, 41.251297],
      [-72.689446, 41.247629],
      [-72.690237, 41.246887],
      [-72.690439, 41.246697],
      [-72.693441, 41.245493],
      [-72.694744, 41.24497],
      [-72.69547, 41.244948],
      [-72.701806, 41.244752],
      [-72.706236, 41.244615],
      [-72.707212, 41.244585],
      [-72.708658, 41.24454],
      [-72.708963, 41.24453],
      [-72.709193, 41.244523],
      [-72.710595, 41.24448],
      [-72.710821, 41.244812],
      [-72.713674, 41.249007],
      [-72.711208, 41.251018],
      [-72.71246, 41.254167],
      [-72.722439, 41.259138],
      [-72.732813, 41.254727],
      [-72.754444, 41.266913],
      [-72.757477, 41.266913],
      [-72.786142, 41.264796],
      [-72.818737, 41.252244],
      [-72.819372, 41.254061],
      [-72.826883, 41.256755],
      [-72.847767, 41.25669],
      [-72.85021, 41.255544],
      [-72.854055, 41.24774],
      [-72.861344, 41.245297],
      [-72.881445, 41.242597],
      [-72.895445, 41.243697],
      [-72.900803, 41.245864],
      [-72.904345, 41.247297],
      [-72.905245, 41.248297],
      [-72.903045, 41.252797],
      [-72.902808, 41.252894],
      [-72.894745, 41.256197],
      [-72.89473, 41.25626],
      [-72.893845, 41.259897],
      [-72.89637, 41.263949],
      [-72.903129, 41.274794],
      [-72.907962, 41.282549],
      [-72.9082, 41.282932],
      [-72.916827, 41.282033],
      [-72.917037, 41.281905],
      [-72.920062, 41.280056],
      [-72.920658, 41.271574],
      [-72.920714, 41.27078],
      [-72.920846, 41.268897],
      [-72.931887, 41.261139],
      [-72.933472, 41.260024],
      [-72.935646, 41.258497],
      [-72.956984, 41.25292],
      [-72.959633, 41.252228],
      [-72.961345, 41.25178],
      [-72.962047, 41.251597],
      [-72.983751, 41.235364],
      [-72.985095, 41.234358],
      [-73.067851, 41.300996],
      [-73.075352, 41.305596],
      [-73.077652, 41.307696],
      [-73.078952, 41.311596],
      [-73.08665, 41.314495],
      [-73.090938, 41.319256],
      [-73.115754, 41.332196],
      [-73.136054, 41.351196],
      [-73.147555, 41.367696],
      [-73.161253, 41.383853],
      [-73.173356, 41.383596],
      [-73.183269, 41.391711],
      [-73.187957, 41.397296],
      [-73.184857, 41.406296],
      [-73.207688, 41.420544],
      [-73.310473, 41.468815],
      [-73.327114, 41.484527],
      [-73.318889, 41.505189],
      [-73.15573, 41.515279]]]},
   'id': '09009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09011',
    'STATE': '09',
    'COUNTY': '011',
    'NAME': 'New London',
    'LSAD': 'County',
    'CENSUSAREA': 664.878},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-72.157546, 41.657627],
      [-72.153391, 41.665643],
      [-72.120328, 41.661925],
      [-72.105651, 41.659528],
      [-72.103523, 41.659305],
      [-72.062051, 41.652239],
      [-71.954983, 41.634799],
      [-71.789465, 41.640017],
      [-71.789356, 41.59691],
      [-71.789359, 41.596852],
      [-71.797674, 41.41691],
      [-71.797683, 41.416709],
      [-71.81839, 41.419599],
      [-71.839649, 41.412119],
      [-71.842563, 41.409855],
      [-71.843472, 41.40583],
      [-71.842131, 41.395359],
      [-71.833443, 41.384524],
      [-71.831613, 41.370899],
      [-71.83124, 41.344645],
      [-71.83253, 41.341204],
      [-71.839782, 41.33469],
      [-71.85957, 41.322399],
      [-71.868235, 41.330941],
      [-71.886302, 41.33641],
      [-71.91671, 41.332217],
      [-71.922092, 41.334518],
      [-71.923282, 41.335113],
      [-71.936284, 41.337959],
      [-71.945652, 41.337799],
      [-71.956747, 41.329871],
      [-71.970955, 41.324526],
      [-71.979447, 41.329987],
      [-71.982194, 41.329861],
      [-71.988153, 41.320577],
      [-72.021898, 41.316838],
      [-72.084487, 41.319634],
      [-72.094443, 41.314164],
      [-72.09982, 41.306998],
      [-72.11182, 41.299098],
      [-72.134221, 41.299398],
      [-72.16158, 41.310262],
      [-72.173922, 41.317597],
      [-72.177622, 41.322497],
      [-72.184122, 41.323997],
      [-72.191022, 41.323197],
      [-72.201422, 41.315697],
      [-72.203022, 41.313197],
      [-72.204022, 41.299097],
      [-72.212924, 41.291365],
      [-72.225276, 41.299047],
      [-72.235531, 41.300413],
      [-72.248161, 41.299488],
      [-72.251895, 41.29862],
      [-72.250515, 41.294386],
      [-72.251323, 41.289997],
      [-72.261487, 41.282926],
      [-72.31776, 41.277782],
      [-72.327595, 41.27846],
      [-72.333894, 41.282916],
      [-72.34146, 41.28011],
      [-72.43371, 41.423995],
      [-72.305531, 41.436282],
      [-72.322931, 41.518119],
      [-72.430767, 41.524567],
      [-72.46673, 41.583899],
      [-72.417229, 41.590598],
      [-72.410629, 41.601798],
      [-72.239559, 41.714191],
      [-72.237947, 41.713167],
      [-72.186651, 41.676283],
      [-72.157546, 41.657627]]]},
   'id': '09011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09013',
    'STATE': '09',
    'COUNTY': '013',
    'NAME': 'Tolland',
    'LSAD': 'County',
    'CENSUSAREA': 410.214},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-72.10216, 42.028962],
      [-72.099229, 41.958948],
      [-72.123632, 41.95898],
      [-72.12452, 41.95905],
      [-72.151654, 41.959302],
      [-72.21698, 41.958161],
      [-72.217719, 41.835184],
      [-72.164558, 41.834913],
      [-72.156893, 41.753818],
      [-72.156321, 41.753491],
      [-72.239559, 41.714191],
      [-72.410629, 41.601798],
      [-72.463899, 41.745572],
      [-72.51733, 41.869897],
      [-72.51363, 41.942997],
      [-72.51333, 41.945401],
      [-72.503065, 41.946608],
      [-72.492729, 41.947497],
      [-72.498928, 41.977893],
      [-72.49973, 41.984295],
      [-72.509081, 42.033539],
      [-72.509187, 42.034607],
      [-72.397428, 42.033302],
      [-72.198828, 42.030982],
      [-72.135715, 42.030245],
      [-72.135687, 42.030245],
      [-72.10216, 42.028962]]]},
   'id': '09013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US09015',
    'STATE': '09',
    'COUNTY': '015',
    'NAME': 'Windham',
    'LSAD': 'County',
    'CENSUSAREA': 512.91},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-72.099229, 41.958948],
      [-72.10216, 42.028962],
      [-72.059752, 42.027339],
      [-71.80065, 42.023569],
      [-71.799242, 42.008065],
      [-71.796822, 41.928552],
      [-71.796089, 41.904468],
      [-71.794161, 41.841101],
      [-71.794161, 41.840141],
      [-71.792786, 41.80867],
      [-71.792767, 41.807001],
      [-71.789678, 41.724734],
      [-71.789678, 41.724568],
      [-71.789465, 41.640017],
      [-71.954983, 41.634799],
      [-72.062051, 41.652239],
      [-72.103523, 41.659305],
      [-72.105651, 41.659528],
      [-72.120328, 41.661925],
      [-72.153391, 41.665643],
      [-72.157546, 41.657627],
      [-72.186651, 41.676283],
      [-72.237947, 41.713167],
      [-72.239559, 41.714191],
      [-72.156321, 41.753491],
      [-72.156893, 41.753818],
      [-72.164558, 41.834913],
      [-72.217719, 41.835184],
      [-72.21698, 41.958161],
      [-72.151654, 41.959302],
      [-72.12452, 41.95905],
      [-72.123632, 41.95898],
      [-72.099229, 41.958948]]]},
   'id': '09015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US10001',
    'STATE': '10',
    'COUNTY': '001',
    'NAME': 'Kent',
    'LSAD': 'County',
    'CENSUSAREA': 586.179},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-75.747671, 39.143345],
      [-75.755953, 39.245958],
      [-75.755962, 39.246069],
      [-75.760104, 39.296817],
      [-75.584341, 39.308718],
      [-75.512372, 39.365656],
      [-75.511788, 39.365191],
      [-75.505276, 39.359169],
      [-75.494158, 39.354613],
      [-75.491797, 39.351845],
      [-75.494122, 39.34658],
      [-75.493148, 39.345527],
      [-75.491688, 39.343963],
      [-75.490377, 39.342818],
      [-75.479845, 39.337472],
      [-75.479963, 39.336577],
      [-75.469324, 39.33082],
      [-75.460423, 39.328236],
      [-75.439027, 39.313384],
      [-75.436936, 39.309379],
      [-75.435551, 39.297546],
      [-75.435374, 39.296676],
      [-75.427953, 39.285049],
      [-75.408376, 39.264698],
      [-75.402964, 39.254626],
      [-75.404823, 39.245898],
      [-75.405927, 39.243631],
      [-75.405716, 39.223834],
      [-75.404745, 39.222666],
      [-75.396892, 39.216141],
      [-75.393015, 39.204512],
      [-75.39479, 39.188354],
      [-75.398584, 39.186616],
      [-75.400144, 39.186456],
      [-75.408266, 39.174625],
      [-75.410625, 39.156246],
      [-75.401193, 39.088762],
      [-75.402035, 39.066885],
      [-75.400294, 39.065645],
      [-75.395806, 39.059211],
      [-75.396277, 39.057884],
      [-75.387914, 39.051174],
      [-75.379873, 39.04879],
      [-75.345763, 39.024857],
      [-75.34089, 39.01996],
      [-75.318354, 38.988191],
      [-75.314951, 38.980775],
      [-75.311607, 38.967637],
      [-75.312546, 38.951065],
      [-75.312546, 38.94928],
      [-75.311923, 38.945917],
      [-75.381339, 38.961285],
      [-75.555013, 38.835649],
      [-75.722599, 38.829859],
      [-75.72261, 38.830008],
      [-75.722882, 38.833156],
      [-75.724002, 38.846682],
      [-75.724061, 38.847781],
      [-75.725565, 38.868152],
      [-75.725829, 38.869296],
      [-75.745793, 39.114935],
      [-75.746121, 39.120318],
      [-75.747668, 39.143306],
      [-75.747671, 39.143345]]]},
   'id': '10001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US10003',
    'STATE': '10',
    'COUNTY': '003',
    'NAME': 'New Castle',
    'LSAD': 'County',
    'CENSUSAREA': 426.286},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-75.564927, 39.583248],
       [-75.576271, 39.588144],
       [-75.578719, 39.591504],
       [-75.579615, 39.598656],
       [-75.565823, 39.590608],
       [-75.564927, 39.583248]]],
     [[[-75.55587, 39.605824],
       [-75.561934, 39.605216],
       [-75.567694, 39.613744],
       [-75.571759, 39.623584],
       [-75.570798, 39.626768],
       [-75.559446, 39.629812],
       [-75.55587, 39.605824]]],
     [[[-75.594846, 39.837286],
       [-75.593666, 39.837455],
       [-75.593082, 39.8375],
       [-75.5799, 39.838522],
       [-75.579849, 39.838526],
       [-75.539346, 39.838211],
       [-75.498843, 39.833312],
       [-75.45374, 39.820312],
       [-75.428038, 39.809212],
       [-75.415041, 39.801786],
       [-75.416095, 39.79583],
       [-75.437938, 39.783413],
       [-75.440623, 39.780926],
       [-75.448135, 39.773969],
       [-75.466249, 39.750769],
       [-75.466263, 39.750737],
       [-75.469239, 39.743613],
       [-75.474168, 39.735473],
       [-75.475384, 39.731057],
       [-75.504042, 39.698313],
       [-75.509742, 39.686113],
       [-75.529744, 39.692613],
       [-75.562246, 39.656712],
       [-75.587147, 39.651012],
       [-75.611969, 39.621968],
       [-75.613153, 39.62096],
       [-75.613377, 39.620288],
       [-75.614065, 39.61832],
       [-75.614929, 39.615952],
       [-75.614273, 39.61464],
       [-75.613345, 39.613056],
       [-75.613665, 39.61256],
       [-75.613233, 39.607408],
       [-75.613477, 39.606861],
       [-75.613473, 39.606832],
       [-75.613793, 39.606192],
       [-75.611905, 39.597568],
       [-75.611873, 39.597408],
       [-75.60464, 39.58992],
       [-75.603584, 39.58896],
       [-75.592224, 39.583568],
       [-75.591984, 39.583248],
       [-75.587744, 39.580672],
       [-75.5872, 39.580256],
       [-75.586608, 39.57888],
       [-75.586016, 39.578448],
       [-75.571599, 39.567728],
       [-75.570783, 39.56728],
       [-75.563034, 39.56224],
       [-75.564649, 39.559922],
       [-75.565636, 39.558509],
       [-75.569359, 39.540589],
       [-75.569418, 39.539124],
       [-75.570362, 39.527223],
       [-75.560728, 39.520472],
       [-75.566933, 39.508273],
       [-75.576436, 39.509195],
       [-75.587729, 39.496353],
       [-75.587729, 39.495369],
       [-75.593068, 39.479186],
       [-75.593068, 39.477996],
       [-75.589901, 39.462022],
       [-75.589439, 39.460812],
       [-75.580185, 39.450786],
       [-75.578914, 39.44788],
       [-75.570985, 39.442486],
       [-75.57183, 39.438897],
       [-75.55589, 39.430351],
       [-75.538512, 39.416502],
       [-75.535977, 39.409384],
       [-75.523583, 39.391583],
       [-75.521682, 39.387871],
       [-75.512996, 39.366153],
       [-75.512372, 39.365656],
       [-75.584341, 39.308718],
       [-75.760104, 39.296817],
       [-75.766667, 39.377216],
       [-75.766693, 39.377537],
       [-75.77924, 39.534737],
       [-75.779383, 39.536522],
       [-75.78689, 39.630575],
       [-75.78745, 39.637455],
       [-75.788616, 39.680742],
       [-75.788658, 39.681911],
       [-75.788395, 39.700031],
       [-75.788395, 39.700287],
       [-75.788359, 39.721811],
       [-75.739705, 39.772623],
       [-75.716969, 39.791998],
       [-75.685991, 39.811054],
       [-75.662822, 39.82115],
       [-75.641518, 39.828363],
       [-75.634706, 39.830164],
       [-75.595756, 39.837156],
       [-75.594846, 39.837286]]]]},
   'id': '10003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US10005',
    'STATE': '10',
    'COUNTY': '005',
    'NAME': 'Sussex',
    'LSAD': 'County',
    'CENSUSAREA': 936.079},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-75.311923, 38.945917],
      [-75.311882, 38.945698],
      [-75.311542, 38.944633],
      [-75.302552, 38.939002],
      [-75.312282, 38.924594],
      [-75.304078, 38.91316],
      [-75.263115, 38.877351],
      [-75.232029, 38.844254],
      [-75.205329, 38.823386],
      [-75.190552, 38.806861],
      [-75.160748, 38.791224],
      [-75.159022, 38.790193],
      [-75.134022, 38.782242],
      [-75.113331, 38.782998],
      [-75.097103, 38.788703],
      [-75.093654, 38.793992],
      [-75.097197, 38.803101],
      [-75.093805, 38.803812],
      [-75.089473, 38.797198],
      [-75.082153, 38.772157],
      [-75.080217, 38.750112],
      [-75.079221, 38.738238],
      [-75.06551, 38.66103],
      [-75.065217, 38.632394],
      [-75.06192, 38.608869],
      [-75.061259, 38.608602],
      [-75.060478, 38.608012],
      [-75.060032, 38.607709],
      [-75.049748, 38.486387],
      [-75.048939, 38.451263],
      [-75.049268, 38.451264],
      [-75.05251, 38.451273],
      [-75.053483, 38.451274],
      [-75.066327, 38.451291],
      [-75.069909, 38.451276],
      [-75.070356, 38.451276],
      [-75.085814, 38.451258],
      [-75.088281, 38.451256],
      [-75.089649, 38.451254],
      [-75.141894, 38.451196],
      [-75.185413, 38.451013],
      [-75.252723, 38.451397],
      [-75.26035, 38.451492],
      [-75.341247, 38.45197],
      [-75.34125, 38.45197],
      [-75.355797, 38.452008],
      [-75.371054, 38.452107],
      [-75.393563, 38.452114],
      [-75.394786, 38.45216],
      [-75.410884, 38.4524],
      [-75.424831, 38.45261],
      [-75.428728, 38.452671],
      [-75.47915, 38.453699],
      [-75.500142, 38.454144],
      [-75.502961, 38.45422],
      [-75.521304, 38.454657],
      [-75.52273, 38.454657],
      [-75.533763, 38.454958],
      [-75.559212, 38.455563],
      [-75.559934, 38.455579],
      [-75.57411, 38.455991],
      [-75.583601, 38.456424],
      [-75.589307, 38.456286],
      [-75.593082, 38.456404],
      [-75.598069, 38.456855],
      [-75.630457, 38.457904],
      [-75.662843, 38.458759],
      [-75.665585, 38.4589],
      [-75.693521, 38.460128],
      [-75.696369, 38.492373],
      [-75.696688, 38.496467],
      [-75.698777, 38.522001],
      [-75.700179, 38.542717],
      [-75.701465, 38.559433],
      [-75.701565, 38.560736],
      [-75.703445, 38.58512],
      [-75.703981, 38.592066],
      [-75.705774, 38.61474],
      [-75.70586, 38.616268],
      [-75.706235, 38.621296],
      [-75.706585, 38.626125],
      [-75.707346, 38.63528],
      [-75.707352, 38.635359],
      [-75.722028, 38.822078],
      [-75.722599, 38.829859],
      [-75.555013, 38.835649],
      [-75.381339, 38.961285],
      [-75.311923, 38.945917]]]},
   'id': '10005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US11001',
    'STATE': '11',
    'COUNTY': '001',
    'NAME': 'District of Columbia',
    'LSAD': '',
    'CENSUSAREA': 61.048},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-77.032986, 38.8395],
      [-77.031698, 38.850512],
      [-77.040599, 38.871212],
      [-77.068199, 38.899811],
      [-77.0902, 38.904211],
      [-77.1012, 38.911111],
      [-77.119863, 38.934265],
      [-77.1199, 38.934311],
      [-77.1007, 38.94891],
      [-77.054299, 38.98511],
      [-77.040999, 38.99511],
      [-77.036299, 38.99171],
      [-77.015598, 38.97591],
      [-77.013798, 38.97441],
      [-77.008298, 38.97011],
      [-77.002636, 38.965521],
      [-77.002498, 38.96541],
      [-76.941722, 38.918019],
      [-76.909395, 38.892812],
      [-76.910795, 38.891712],
      [-76.919295, 38.885112],
      [-76.920195, 38.884412],
      [-76.949696, 38.861312],
      [-76.953696, 38.858512],
      [-77.001397, 38.821513],
      [-77.024392, 38.80297],
      [-77.038598, 38.791513],
      [-77.032986, 38.8395]]]},
   'id': '11001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12001',
    'STATE': '12',
    'COUNTY': '001',
    'NAME': 'Alachua',
    'LSAD': 'County',
    'CENSUSAREA': 875.02},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.556511, 29.511982],
      [-82.656301, 29.564811],
      [-82.658128, 29.828068],
      [-82.658554, 29.830144],
      [-82.529705, 29.940881],
      [-82.418728, 29.923093],
      [-82.272563, 29.843011],
      [-82.133126, 29.835949],
      [-82.055625, 29.718232],
      [-82.050829, 29.716098],
      [-82.050291, 29.709735],
      [-82.055027, 29.669608],
      [-82.055899, 29.471232],
      [-82.105688, 29.435966],
      [-82.213245, 29.431764],
      [-82.22501, 29.484298],
      [-82.40662, 29.485048],
      [-82.556766, 29.480055],
      [-82.556511, 29.511982]]]},
   'id': '12001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12003',
    'STATE': '12',
    'COUNTY': '003',
    'NAME': 'Baker',
    'LSAD': 'County',
    'CENSUSAREA': 585.231},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.050031, 30.36249],
      [-82.049236, 30.273432],
      [-82.049411, 30.186933],
      [-82.049425, 30.143136],
      [-82.142578, 30.143117],
      [-82.458364, 30.136449],
      [-82.459792, 30.584287],
      [-82.459544, 30.584272],
      [-82.418915, 30.581745],
      [-82.374844, 30.579004],
      [-82.287343, 30.573458],
      [-82.2581, 30.571559],
      [-82.249841, 30.570863],
      [-82.214847, 30.567009],
      [-82.214385, 30.566958],
      [-82.21233, 30.499558],
      [-82.20604, 30.455507],
      [-82.210291, 30.42459],
      [-82.204151, 30.40133],
      [-82.189583, 30.376213],
      [-82.171508, 30.359869],
      [-82.165192, 30.358035],
      [-82.124835, 30.366564],
      [-82.050069, 30.362338],
      [-82.050031, 30.36249]]]},
   'id': '12003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12005',
    'STATE': '12',
    'COUNTY': '005',
    'NAME': 'Bay',
    'LSAD': 'County',
    'CENSUSAREA': 758.459},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.996083, 30.269148],
      [-85.99459, 30.290853],
      [-85.994712, 30.311702],
      [-85.992736, 30.38932],
      [-85.8535, 30.440623],
      [-85.487968, 30.436655],
      [-85.486358, 30.567574],
      [-85.434782, 30.56756],
      [-85.383948, 30.566856],
      [-85.389679, 30.200973],
      [-85.388374, 29.926919],
      [-85.388677, 29.924355],
      [-85.405052, 29.938487],
      [-85.425956, 29.949888],
      [-85.460488, 29.959579],
      [-85.469425, 29.957788],
      [-85.487764, 29.961227],
      [-85.509148, 29.971466],
      [-85.541176, 29.995791],
      [-85.571907, 30.02644],
      [-85.58139, 30.037783],
      [-85.588242, 30.055543],
      [-85.601178, 30.056342],
      [-85.618254, 30.065481],
      [-85.637285, 30.073319],
      [-85.653251, 30.077839],
      [-85.69681, 30.09689],
      [-85.730054, 30.118153],
      [-85.74993, 30.136537],
      [-85.775405, 30.15629],
      [-85.811219, 30.17832],
      [-85.878138, 30.215619],
      [-85.9226, 30.238024],
      [-85.996083, 30.269148]]]},
   'id': '12005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12007',
    'STATE': '12',
    'COUNTY': '007',
    'NAME': 'Bradford',
    'LSAD': 'County',
    'CENSUSAREA': 293.962},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.049244, 29.71867],
      [-82.055625, 29.718232],
      [-82.133126, 29.835949],
      [-82.272563, 29.843011],
      [-82.418728, 29.923093],
      [-82.307409, 29.956156],
      [-82.142578, 30.143117],
      [-82.049425, 30.143136],
      [-82.046112, 29.747129],
      [-82.049244, 29.71867]]]},
   'id': '12007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12009',
    'STATE': '12',
    'COUNTY': '009',
    'NAME': 'Brevard',
    'LSAD': 'County',
    'CENSUSAREA': 1015.664},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.631314, 28.655188],
      [-80.61679, 28.634561],
      [-80.583884, 28.597705],
      [-80.574868, 28.585166],
      [-80.567361, 28.562353],
      [-80.560973, 28.530736],
      [-80.536115, 28.478647],
      [-80.525094, 28.459454],
      [-80.526732, 28.451705],
      [-80.562877, 28.437779],
      [-80.574136, 28.427764],
      [-80.587813, 28.410856],
      [-80.596174, 28.390682],
      [-80.603374, 28.363983],
      [-80.606874, 28.336484],
      [-80.608074, 28.311285],
      [-80.604214, 28.257733],
      [-80.589975, 28.17799],
      [-80.566432, 28.09563],
      [-80.547675, 28.048795],
      [-80.508871, 27.970477],
      [-80.446973, 27.861954],
      [-80.447084, 27.860755],
      [-80.509075, 27.822058],
      [-80.868881, 27.822522],
      [-80.862815, 28.347221],
      [-80.862881, 28.347439],
      [-80.862908, 28.347487],
      [-80.88089, 28.503633],
      [-80.98725, 28.612997],
      [-80.964466, 28.612992],
      [-80.967895, 28.790197],
      [-80.732244, 28.791237],
      [-80.713183, 28.761997],
      [-80.713108, 28.761882],
      [-80.712714, 28.761277],
      [-80.709725, 28.756692],
      [-80.708545, 28.755202],
      [-80.672232, 28.709363],
      [-80.663183, 28.69794],
      [-80.647924, 28.678677],
      [-80.64776, 28.67847],
      [-80.647288, 28.677875],
      [-80.645839, 28.675817],
      [-80.641436, 28.669564],
      [-80.639019, 28.666131],
      [-80.631314, 28.655188]]]},
   'id': '12009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12011',
    'STATE': '12',
    'COUNTY': '011',
    'NAME': 'Broward',
    'LSAD': 'County',
    'CENSUSAREA': 1209.785},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.278764, 25.970968],
      [-80.295187, 25.97057],
      [-80.294972, 25.95677],
      [-80.326712, 25.957118],
      [-80.44049, 25.956861],
      [-80.680016, 25.956857],
      [-80.680038, 25.978749],
      [-80.872932, 25.979434],
      [-80.872748, 26.00037],
      [-80.879809, 26.259455],
      [-80.881233, 26.333806],
      [-80.297471, 26.334356],
      [-80.296935, 26.334356],
      [-80.15377, 26.327766],
      [-80.134037, 26.327905],
      [-80.13125, 26.327821],
      [-80.130164, 26.327858],
      [-80.121329, 26.32774],
      [-80.116782, 26.327845],
      [-80.099747, 26.327668],
      [-80.098268, 26.322599],
      [-80.091929, 26.326352],
      [-80.088999, 26.324357],
      [-80.087905, 26.320756],
      [-80.074837, 26.321032],
      [-80.075264, 26.318656],
      [-80.079865, 26.264358],
      [-80.085565, 26.249259],
      [-80.089365, 26.231859],
      [-80.101366, 26.147762],
      [-80.105266, 26.096264],
      [-80.106813, 26.092991],
      [-80.108995, 26.088372],
      [-80.109566, 26.087165],
      [-80.112334, 26.053193],
      [-80.117778, 25.986369],
      [-80.117798, 25.975152],
      [-80.118078, 25.975158],
      [-80.123874, 25.974484],
      [-80.133862, 25.97411],
      [-80.133867, 25.974868],
      [-80.142227, 25.974674],
      [-80.143501, 25.974511],
      [-80.246763, 25.971874],
      [-80.278764, 25.970968]]]},
   'id': '12011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12013',
    'STATE': '12',
    'COUNTY': '013',
    'NAME': 'Calhoun',
    'LSAD': 'County',
    'CENSUSAREA': 567.334},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.389679, 30.200973],
      [-85.383948, 30.566856],
      [-85.171891, 30.564336],
      [-85.167713, 30.608026],
      [-84.932519, 30.606393],
      [-84.990017, 30.524795],
      [-84.983203, 30.441837],
      [-85.059092, 30.263229],
      [-85.11566, 30.199976],
      [-85.386263, 30.201385],
      [-85.389679, 30.200973]]]},
   'id': '12013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12015',
    'STATE': '12',
    'COUNTY': '015',
    'NAME': 'Charlotte',
    'LSAD': 'County',
    'CENSUSAREA': 680.279},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.375737, 26.946041],
      [-82.340238, 26.94556],
      [-82.339027, 26.945912],
      [-82.326294, 26.945846],
      [-82.322536, 26.945627],
      [-82.299896, 26.945564],
      [-82.255521, 26.945264],
      [-82.255237, 27.032975],
      [-82.171655, 27.032769],
      [-82.057469, 27.032119],
      [-81.562202, 27.033836],
      [-81.565931, 26.769552],
      [-82.062029, 26.770439],
      [-82.061401, 26.774279],
      [-82.061401, 26.789228],
      [-82.055076, 26.802452],
      [-82.057951, 26.822],
      [-82.058526, 26.838674],
      [-82.056801, 26.858797],
      [-82.059101, 26.876621],
      [-82.066575, 26.88237],
      [-82.090723, 26.888694],
      [-82.093023, 26.906518],
      [-82.090148, 26.923191],
      [-82.083249, 26.927791],
      [-82.067725, 26.927791],
      [-82.061976, 26.931241],
      [-82.061401, 26.938715],
      [-82.063126, 26.950214],
      [-82.076349, 26.958263],
      [-82.107972, 26.957688],
      [-82.113039, 26.955788],
      [-82.117171, 26.954239],
      [-82.124645, 26.945615],
      [-82.137294, 26.926066],
      [-82.162017, 26.925491],
      [-82.169491, 26.923191],
      [-82.175241, 26.916867],
      [-82.172941, 26.897319],
      [-82.156267, 26.851898],
      [-82.147068, 26.789803],
      [-82.151093, 26.783479],
      [-82.172941, 26.778879],
      [-82.17869, 26.772555],
      [-82.209329, 26.772146],
      [-82.221812, 26.77198],
      [-82.232193, 26.78288],
      [-82.233311, 26.784054],
      [-82.234019, 26.783251],
      [-82.241935, 26.774279],
      [-82.251134, 26.755881],
      [-82.259867, 26.717398],
      [-82.263804, 26.725644],
      [-82.264682, 26.756836],
      [-82.269499, 26.784674],
      [-82.271699, 26.789516],
      [-82.281552, 26.811203],
      [-82.289086, 26.827784],
      [-82.301736, 26.841588],
      [-82.351649, 26.908384],
      [-82.375737, 26.946041]]]},
   'id': '12015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12017',
    'STATE': '12',
    'COUNTY': '017',
    'NAME': 'Citrus',
    'LSAD': 'County',
    'CENSUSAREA': 581.696},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.535591, 29.044855],
      [-82.426997, 29.021385],
      [-82.311697, 28.960391],
      [-82.170848, 28.79019],
      [-82.263052, 28.667634],
      [-82.417684, 28.665897],
      [-82.418353, 28.694859],
      [-82.646411, 28.694434],
      [-82.645482, 28.697553],
      [-82.652926, 28.705618],
      [-82.656028, 28.712443],
      [-82.652926, 28.719267],
      [-82.656028, 28.727952],
      [-82.662232, 28.737258],
      [-82.651065, 28.747184],
      [-82.645482, 28.767037],
      [-82.643, 28.782546],
      [-82.643, 28.789991],
      [-82.648584, 28.796195],
      [-82.650445, 28.80488],
      [-82.652926, 28.830936],
      [-82.638657, 28.843344],
      [-82.643, 28.860094],
      [-82.639898, 28.876224],
      [-82.644861, 28.889252],
      [-82.656028, 28.899179],
      [-82.673399, 28.900419],
      [-82.688864, 28.905609],
      [-82.702618, 28.932955],
      [-82.708793, 28.935979],
      [-82.723861, 28.953506],
      [-82.735754, 28.973709],
      [-82.737872, 28.995703],
      [-82.758906, 28.993277],
      [-82.689814, 29.033962],
      [-82.612653, 29.009271],
      [-82.535591, 29.044855]]]},
   'id': '12017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12019',
    'STATE': '12',
    'COUNTY': '019',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 604.36},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.049411, 30.186933],
      [-81.711348, 30.191193],
      [-81.680215, 30.12124],
      [-81.688876, 30.028566],
      [-81.60099, 29.956017],
      [-81.581207, 29.840176],
      [-81.797218, 29.836649],
      [-81.939427, 29.747497],
      [-82.049244, 29.71867],
      [-82.046112, 29.747129],
      [-82.049425, 30.143136],
      [-82.049411, 30.186933]]]},
   'id': '12019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12021',
    'STATE': '12',
    'COUNTY': '021',
    'NAME': 'Collier',
    'LSAD': 'County',
    'CENSUSAREA': 1998.324},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.563763, 26.513324],
      [-81.271768, 26.517069],
      [-81.271721, 26.422651],
      [-81.26855, 26.253045],
      [-80.879809, 26.259455],
      [-80.872748, 26.00037],
      [-80.872932, 25.979434],
      [-80.873096, 25.805377],
      [-81.344564, 25.803322],
      [-81.349152, 25.816847],
      [-81.352731, 25.822015],
      [-81.362272, 25.824401],
      [-81.386127, 25.839906],
      [-81.394476, 25.851834],
      [-81.417536, 25.864954],
      [-81.424295, 25.867737],
      [-81.429066, 25.865351],
      [-81.441391, 25.863761],
      [-81.458487, 25.868929],
      [-81.471607, 25.881652],
      [-81.473992, 25.888411],
      [-81.48751, 25.888411],
      [-81.501027, 25.884037],
      [-81.508979, 25.884037],
      [-81.512955, 25.886423],
      [-81.511762, 25.89676],
      [-81.515738, 25.899941],
      [-81.527665, 25.901531],
      [-81.541183, 25.900338],
      [-81.577363, 25.889206],
      [-81.584519, 25.888808],
      [-81.614735, 25.893977],
      [-81.623482, 25.897158],
      [-81.640084, 25.897784],
      [-81.644553, 25.897953],
      [-81.654493, 25.893579],
      [-81.663821, 25.885605],
      [-81.672633, 25.856654],
      [-81.678287, 25.845301],
      [-81.6848, 25.847205],
      [-81.68954, 25.85271],
      [-81.713172, 25.897568],
      [-81.717687, 25.902039],
      [-81.727086, 25.907207],
      [-81.73195, 25.931506],
      [-81.738118, 25.942009],
      [-81.745579, 25.949643],
      [-81.749724, 25.960463],
      [-81.747834, 25.994273],
      [-81.750668, 25.998425],
      [-81.757463, 26.000374],
      [-81.762439, 26.00607],
      [-81.801663, 26.088227],
      [-81.808833, 26.152246],
      [-81.81461, 26.173167],
      [-81.81681, 26.207166],
      [-81.820675, 26.236735],
      [-81.833142, 26.294518],
      [-81.844555, 26.327712],
      [-81.845834, 26.330378],
      [-81.690494, 26.317334],
      [-81.659506, 26.421077],
      [-81.56218, 26.422625],
      [-81.563763, 26.513324]]]},
   'id': '12021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12023',
    'STATE': '12',
    'COUNTY': '023',
    'NAME': 'Columbia',
    'LSAD': 'County',
    'CENSUSAREA': 797.574},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.584002, 30.591796],
      [-82.569237, 30.590965],
      [-82.565476, 30.590622],
      [-82.553159, 30.589934],
      [-82.545055, 30.589361],
      [-82.536233, 30.588885],
      [-82.524899, 30.588189],
      [-82.459792, 30.584287],
      [-82.458364, 30.136449],
      [-82.57601, 29.991468],
      [-82.529705, 29.940881],
      [-82.658554, 29.830144],
      [-82.800477, 29.932126],
      [-82.794594, 30.337024],
      [-82.681473, 30.342805],
      [-82.645768, 30.407992],
      [-82.726583, 30.559486],
      [-82.689539, 30.597734],
      [-82.689271, 30.597719],
      [-82.584002, 30.591796]]]},
   'id': '12023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12027',
    'STATE': '12',
    'COUNTY': '027',
    'NAME': 'DeSoto',
    'LSAD': 'County',
    'CENSUSAREA': 637.059},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.057469, 27.032119],
      [-82.056497, 27.207769],
      [-82.055753, 27.338264],
      [-81.563696, 27.34068],
      [-81.562202, 27.033836],
      [-82.057469, 27.032119]]]},
   'id': '12027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12029',
    'STATE': '12',
    'COUNTY': '029',
    'NAME': 'Dixie',
    'LSAD': 'County',
    'CENSUSAREA': 705.053},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.412278, 29.666922],
      [-83.373351, 29.665951],
      [-83.318859, 29.822623],
      [-82.920608, 29.824143],
      [-82.949707, 29.754409],
      [-82.937374, 29.591312],
      [-82.984371, 29.471004],
      [-83.068522, 29.343953],
      [-83.166091, 29.28888],
      [-83.169576, 29.290355],
      [-83.176736, 29.31422],
      [-83.17826, 29.327916],
      [-83.176852, 29.329269],
      [-83.175518, 29.34469],
      [-83.189581, 29.363417],
      [-83.200702, 29.373855],
      [-83.202446, 29.394422],
      [-83.218075, 29.420492],
      [-83.240509, 29.433178],
      [-83.263965, 29.435806],
      [-83.272019, 29.432256],
      [-83.294747, 29.437923],
      [-83.307094, 29.459651],
      [-83.307828, 29.468861],
      [-83.311546, 29.475666],
      [-83.323214, 29.476789],
      [-83.33113, 29.475594],
      [-83.350067, 29.489358],
      [-83.356722, 29.499901],
      [-83.370288, 29.499901],
      [-83.379254, 29.503558],
      [-83.383973, 29.512995],
      [-83.400252, 29.517242],
      [-83.401552, 29.523291],
      [-83.39983, 29.533042],
      [-83.405256, 29.578319],
      [-83.405068, 29.59557],
      [-83.39948, 29.612956],
      [-83.404081, 29.640798],
      [-83.412278, 29.666922]]]},
   'id': '12029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12031',
    'STATE': '12',
    'COUNTY': '031',
    'NAME': 'Duval',
    'LSAD': 'County',
    'CENSUSAREA': 762.192},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.049236, 30.273432],
      [-81.791665, 30.50561],
      [-81.72163, 30.571968],
      [-81.624513, 30.586232],
      [-81.543018, 30.523889],
      [-81.499575, 30.563793],
      [-81.442784, 30.50992],
      [-81.447087, 30.503679],
      [-81.440108, 30.497678],
      [-81.42601, 30.496739],
      [-81.410809, 30.482039],
      [-81.407008, 30.42204],
      [-81.397422, 30.400626],
      [-81.396407, 30.34004],
      [-81.391606, 30.303441],
      [-81.385505, 30.273841],
      [-81.379879, 30.252914],
      [-81.436929, 30.252335],
      [-81.433737, 30.106028],
      [-81.601212, 30.130541],
      [-81.623813, 30.133641],
      [-81.650514, 30.121541],
      [-81.680215, 30.12124],
      [-81.711348, 30.191193],
      [-82.049411, 30.186933],
      [-82.049236, 30.273432]]]},
   'id': '12031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12033',
    'STATE': '12',
    'COUNTY': '033',
    'NAME': 'Escambia',
    'LSAD': 'County',
    'CENSUSAREA': 656.461},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.919292, 30.370675],
      [-87.155392, 30.327748],
      [-87.206254, 30.320943],
      [-87.267827, 30.31548],
      [-87.282787, 30.318744],
      [-87.295422, 30.323503],
      [-87.319518, 30.317814],
      [-87.350486, 30.313064],
      [-87.419859, 30.297128],
      [-87.518324, 30.280435],
      [-87.452378, 30.300201],
      [-87.450078, 30.3111],
      [-87.450962, 30.346262],
      [-87.451378, 30.367199],
      [-87.440678, 30.391498],
      [-87.427478, 30.408398],
      [-87.419177, 30.410198],
      [-87.430578, 30.491096],
      [-87.448332, 30.513063],
      [-87.449841, 30.514369],
      [-87.449921, 30.51469],
      [-87.394479, 30.625192],
      [-87.394219, 30.641699],
      [-87.396997, 30.65364],
      [-87.407118, 30.671796],
      [-87.449362, 30.698913],
      [-87.481225, 30.716508],
      [-87.497515, 30.720123],
      [-87.502926, 30.722369],
      [-87.532607, 30.743489],
      [-87.624137, 30.845713],
      [-87.634938, 30.865886],
      [-87.622203, 30.897508],
      [-87.601355, 30.936294],
      [-87.594111, 30.976335],
      [-87.598927, 30.997454],
      [-87.598928, 30.997457],
      [-87.571281, 30.99787],
      [-87.548543, 30.997927],
      [-87.480243, 30.998202],
      [-87.479703, 30.998197],
      [-87.478706, 30.998213],
      [-87.466879, 30.998178],
      [-87.466827, 30.998178],
      [-87.461783, 30.998201],
      [-87.461638, 30.998202],
      [-87.458658, 30.998386],
      [-87.455705, 30.998318],
      [-87.449811, 30.998272],
      [-87.432292, 30.998205],
      [-87.425774, 30.99809],
      [-87.367842, 30.998292],
      [-87.364011, 30.998218],
      [-87.355656, 30.998244],
      [-87.333973, 30.998272],
      [-87.312183, 30.998435],
      [-87.30403, 30.998191],
      [-87.301567, 30.998434],
      [-87.290995, 30.998352],
      [-87.288905, 30.998345],
      [-87.265564, 30.998267],
      [-87.26054, 30.998195],
      [-87.259689, 30.998172],
      [-87.25796, 30.998263],
      [-87.257002, 30.998194],
      [-87.255592, 30.998216],
      [-87.25498, 30.998285],
      [-87.163084, 30.999051],
      [-87.286882, 30.925441],
      [-87.313611, 30.847266],
      [-87.308502, 30.72691],
      [-87.269407, 30.711687],
      [-87.258884, 30.611281],
      [-87.124968, 30.500196],
      [-87.1344, 30.420294],
      [-87.23297, 30.348999],
      [-86.919292, 30.370675]]]},
   'id': '12033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12035',
    'STATE': '12',
    'COUNTY': '035',
    'NAME': 'Flagler',
    'LSAD': 'County',
    'CENSUSAREA': 485.461},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.212878, 29.670667],
      [-81.211565, 29.667085],
      [-81.163581, 29.55529],
      [-81.123896, 29.474465],
      [-81.101923, 29.427055],
      [-81.155881, 29.410954],
      [-81.150081, 29.265957],
      [-81.41729, 29.261156],
      [-81.433992, 29.398552],
      [-81.478793, 29.399052],
      [-81.520596, 29.500249],
      [-81.52366, 29.622432],
      [-81.324059, 29.62561],
      [-81.212878, 29.670667]]]},
   'id': '12035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12037',
    'STATE': '12',
    'COUNTY': '037',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 534.725},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-84.777208, 29.707398],
       [-84.729836, 29.738881],
       [-84.716994, 29.749066],
       [-84.696726, 29.76993],
       [-84.694125, 29.764593],
       [-84.694939, 29.761844],
       [-84.713747, 29.74139],
       [-84.765117, 29.699724],
       [-84.776954, 29.692191],
       [-84.799129, 29.681565],
       [-84.853829, 29.66472],
       [-84.884632, 29.652248],
       [-84.957779, 29.612635],
       [-85.036219, 29.588919],
       [-85.051033, 29.586928],
       [-85.054624, 29.592084],
       [-85.069453, 29.605282],
       [-85.09519, 29.62249],
       [-85.097082, 29.625215],
       [-85.094882, 29.627757],
       [-85.06653, 29.609952],
       [-85.038497, 29.599552],
       [-85.023501, 29.597073],
       [-85.017205, 29.604379],
       [-84.987775, 29.610307],
       [-84.968314, 29.617238],
       [-84.932592, 29.637232],
       [-84.925842, 29.644949],
       [-84.920333, 29.648638],
       [-84.895885, 29.657444],
       [-84.862099, 29.672572],
       [-84.813352, 29.687028],
       [-84.79816, 29.699321],
       [-84.777208, 29.707398]]],
     [[[-85.156415, 29.679628],
       [-85.137397, 29.684348],
       [-85.134639, 29.686569],
       [-85.114268, 29.688658],
       [-85.093902, 29.684838],
       [-85.083719, 29.679019],
       [-85.077237, 29.670862],
       [-85.091399, 29.648634],
       [-85.097218, 29.633004],
       [-85.124913, 29.628433],
       [-85.142746, 29.635404],
       [-85.16252, 29.650282],
       [-85.18453, 29.663987],
       [-85.204314, 29.672695],
       [-85.222546, 29.678039],
       [-85.220324, 29.680138],
       [-85.208981, 29.681775],
       [-85.184776, 29.68271],
       [-85.168625, 29.682409],
       [-85.156415, 29.679628]]],
     [[[-84.54445, 30.01103],
       [-84.341261, 29.960775],
       [-84.339426, 29.946007],
       [-84.336511, 29.942508],
       [-84.333746, 29.923721],
       [-84.335953, 29.912962],
       [-84.343389, 29.899539],
       [-84.349066, 29.896812],
       [-84.378937, 29.893112],
       [-84.404958, 29.901229],
       [-84.423834, 29.902996],
       [-84.434287, 29.906328],
       [-84.443652, 29.913785],
       [-84.451705, 29.929085],
       [-84.470323, 29.924524],
       [-84.494562, 29.913957],
       [-84.511996, 29.916574],
       [-84.535873, 29.910092],
       [-84.57744, 29.887828],
       [-84.603303, 29.876117],
       [-84.613154, 29.867984],
       [-84.647958, 29.847104],
       [-84.656318, 29.837943],
       [-84.65645, 29.834277],
       [-84.669728, 29.82891],
       [-84.683934, 29.831327],
       [-84.692053, 29.829059],
       [-84.730327, 29.8069],
       [-84.755595, 29.78854],
       [-84.762998, 29.788846],
       [-84.824197, 29.758288],
       [-84.837168, 29.755926],
       [-84.868271, 29.742454],
       [-84.881777, 29.733882],
       [-84.888031, 29.722406],
       [-84.892493, 29.72266],
       [-84.901781, 29.735723],
       [-84.890066, 29.755802],
       [-84.877111, 29.772888],
       [-84.893992, 29.785176],
       [-84.90413, 29.786279],
       [-84.91511, 29.783303],
       [-84.920917, 29.772901],
       [-84.93837, 29.750211],
       [-84.946595, 29.745032],
       [-84.964007, 29.742422],
       [-84.968841, 29.72708],
       [-84.977004, 29.721209],
       [-84.993264, 29.714961],
       [-85.037212, 29.711074],
       [-85.072123, 29.719027],
       [-85.101682, 29.718748],
       [-85.121473, 29.715854],
       [-85.153238, 29.708231],
       [-85.177284, 29.700193],
       [-85.217355, 29.694953],
       [-85.109401, 29.776793],
       [-85.040078, 29.779346],
       [-85.012191, 29.873167],
       [-85.025439, 29.971399],
       [-85.007626, 30.013883],
       [-84.54445, 30.01103]]]]},
   'id': '12037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12039',
    'STATE': '12',
    'COUNTY': '039',
    'NAME': 'Gadsden',
    'LSAD': 'County',
    'CENSUSAREA': 516.332},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.864693, 30.711542],
      [-84.863465, 30.711487],
      [-84.606386, 30.699865],
      [-84.606249, 30.699872],
      [-84.53937, 30.696775],
      [-84.535042, 30.696523],
      [-84.380719, 30.689673],
      [-84.282562, 30.685316],
      [-84.378384, 30.573467],
      [-84.420474, 30.463905],
      [-84.646408, 30.388281],
      [-84.781111, 30.459794],
      [-84.781813, 30.518693],
      [-84.882616, 30.533094],
      [-84.932519, 30.606393],
      [-84.864693, 30.711542]]]},
   'id': '12039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12041',
    'STATE': '12',
    'COUNTY': '041',
    'NAME': 'Gilchrist',
    'LSAD': 'County',
    'CENSUSAREA': 349.677},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.658554, 29.830144],
      [-82.658128, 29.828068],
      [-82.656301, 29.564811],
      [-82.937374, 29.591312],
      [-82.949707, 29.754409],
      [-82.920608, 29.824143],
      [-82.892872, 29.82746],
      [-82.875616, 29.866527],
      [-82.879802, 29.886847],
      [-82.864246, 29.909836],
      [-82.800477, 29.932126],
      [-82.658554, 29.830144]]]},
   'id': '12041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12043',
    'STATE': '12',
    'COUNTY': '043',
    'NAME': 'Glades',
    'LSAD': 'County',
    'CENSUSAREA': 806.009},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.943186, 27.210599],
      [-80.871169, 27.154951],
      [-80.885639, 26.958919],
      [-80.945354, 26.769049],
      [-81.565931, 26.769552],
      [-81.562202, 27.033836],
      [-81.267152, 27.032461],
      [-81.267677, 27.121097],
      [-81.168281, 27.121734],
      [-81.169138, 27.209585],
      [-80.943186, 27.210599]]]},
   'id': '12043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12045',
    'STATE': '12',
    'COUNTY': '045',
    'NAME': 'Gulf',
    'LSAD': 'County',
    'CENSUSAREA': 564.012},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.11566, 30.199976],
      [-85.153773, 30.091294],
      [-85.113691, 30.023173],
      [-85.025439, 29.971399],
      [-85.012191, 29.873167],
      [-85.040078, 29.779346],
      [-85.109401, 29.776793],
      [-85.217355, 29.694953],
      [-85.22745, 29.693633],
      [-85.259719, 29.681296],
      [-85.29074, 29.684081],
      [-85.319215, 29.681494],
      [-85.343619, 29.672004],
      [-85.347711, 29.66719],
      [-85.344768, 29.654793],
      [-85.352615, 29.659787],
      [-85.369419, 29.681048],
      [-85.380303, 29.698485],
      [-85.397871, 29.740498],
      [-85.413983, 29.799865],
      [-85.417971, 29.828855],
      [-85.416548, 29.842628],
      [-85.413575, 29.85294],
      [-85.405815, 29.865817],
      [-85.392469, 29.870914],
      [-85.39874, 29.859267],
      [-85.405011, 29.830151],
      [-85.405907, 29.80193],
      [-85.395528, 29.762368],
      [-85.37796, 29.709621],
      [-85.3638, 29.693526],
      [-85.353885, 29.684765],
      [-85.344986, 29.685015],
      [-85.317661, 29.691286],
      [-85.31139, 29.697557],
      [-85.301331, 29.797117],
      [-85.302591, 29.808094],
      [-85.304877, 29.811096],
      [-85.31142, 29.814373],
      [-85.314547, 29.822279],
      [-85.314783, 29.830575],
      [-85.312911, 29.832273],
      [-85.317464, 29.838894],
      [-85.325008, 29.844966],
      [-85.332289, 29.845905],
      [-85.336654, 29.849295],
      [-85.347044, 29.871981],
      [-85.363731, 29.898915],
      [-85.38473, 29.920949],
      [-85.388677, 29.924355],
      [-85.388374, 29.926919],
      [-85.389679, 30.200973],
      [-85.386263, 30.201385],
      [-85.11566, 30.199976]]]},
   'id': '12045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12047',
    'STATE': '12',
    'COUNTY': '047',
    'NAME': 'Hamilton',
    'LSAD': 'County',
    'CENSUSAREA': 513.79},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.187391, 30.627223],
      [-83.174411, 30.626444],
      [-83.163309, 30.625895],
      [-83.15617, 30.625504],
      [-83.136616, 30.624346],
      [-82.878779, 30.609082],
      [-82.877259, 30.609024],
      [-82.698902, 30.598271],
      [-82.698618, 30.598232],
      [-82.689539, 30.597734],
      [-82.726583, 30.559486],
      [-82.645768, 30.407992],
      [-82.681473, 30.342805],
      [-82.794594, 30.337024],
      [-83.002058, 30.429371],
      [-83.078706, 30.438116],
      [-83.170969, 30.385225],
      [-83.243766, 30.473132],
      [-83.272612, 30.627687],
      [-83.30925, 30.634405],
      [-83.309249, 30.634405],
      [-83.256218, 30.631279],
      [-83.187391, 30.627223]]]},
   'id': '12047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12049',
    'STATE': '12',
    'COUNTY': '049',
    'NAME': 'Hardee',
    'LSAD': 'County',
    'CENSUSAREA': 637.783},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.054349, 27.646382],
      [-81.563318, 27.646647],
      [-81.563696, 27.34068],
      [-82.055753, 27.338264],
      [-82.054349, 27.646382]]]},
   'id': '12049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12051',
    'STATE': '12',
    'COUNTY': '051',
    'NAME': 'Hendry',
    'LSAD': 'County',
    'CENSUSAREA': 1152.75},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.879809, 26.259455],
      [-81.26855, 26.253045],
      [-81.271721, 26.422651],
      [-81.271768, 26.517069],
      [-81.563763, 26.513324],
      [-81.565931, 26.769552],
      [-80.945354, 26.769049],
      [-80.885639, 26.958919],
      [-80.886099, 26.72548],
      [-80.881233, 26.333806],
      [-80.879809, 26.259455]]]},
   'id': '12051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12053',
    'STATE': '12',
    'COUNTY': '053',
    'NAME': 'Hernando',
    'LSAD': 'County',
    'CENSUSAREA': 472.539},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.054694, 28.478397],
      [-82.253293, 28.478491],
      [-82.253439, 28.434824],
      [-82.600636, 28.43391],
      [-82.678743, 28.433456],
      [-82.677839, 28.434367],
      [-82.674787, 28.441956],
      [-82.680396, 28.457194],
      [-82.67241, 28.464746],
      [-82.665055, 28.484434],
      [-82.66447, 28.488788],
      [-82.66639, 28.49733],
      [-82.670146, 28.500769],
      [-82.669416, 28.519879],
      [-82.66804, 28.528199],
      [-82.663705, 28.530193],
      [-82.656694, 28.544814],
      [-82.661729, 28.549743],
      [-82.66165, 28.554143],
      [-82.65705, 28.568028],
      [-82.654138, 28.590837],
      [-82.664055, 28.606584],
      [-82.656649, 28.623727],
      [-82.65851, 28.636756],
      [-82.654167, 28.668395],
      [-82.646411, 28.694434],
      [-82.418353, 28.694859],
      [-82.417684, 28.665897],
      [-82.263052, 28.667634],
      [-82.208184, 28.572054],
      [-82.054469, 28.521367],
      [-82.054694, 28.478397]]]},
   'id': '12053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12055',
    'STATE': '12',
    'COUNTY': '055',
    'NAME': 'Highlands',
    'LSAD': 'County',
    'CENSUSAREA': 1016.615},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.943186, 27.210599],
      [-81.169138, 27.209585],
      [-81.168281, 27.121734],
      [-81.267677, 27.121097],
      [-81.267152, 27.032461],
      [-81.562202, 27.033836],
      [-81.563696, 27.34068],
      [-81.563318, 27.646647],
      [-81.142164, 27.643238],
      [-81.213717, 27.528654],
      [-80.970916, 27.217698],
      [-80.951656, 27.224825],
      [-80.943186, 27.210599]]]},
   'id': '12055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12057',
    'STATE': '12',
    'COUNTY': '057',
    'NAME': 'Hillsborough',
    'LSAD': 'County',
    'CENSUSAREA': 1020.214},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.643968, 28.173301],
      [-82.105853, 28.17165],
      [-82.056261, 28.171592],
      [-82.056404, 28.080385],
      [-82.054035, 27.850683],
      [-82.054349, 27.646382],
      [-82.52475, 27.645422],
      [-82.524947, 27.645422],
      [-82.549548, 27.645557],
      [-82.554499, 27.645145],
      [-82.537146, 27.672933],
      [-82.514265, 27.705588],
      [-82.494891, 27.718963],
      [-82.482449, 27.719886],
      [-82.477638, 27.723004],
      [-82.476297, 27.729929],
      [-82.477129, 27.735216],
      [-82.482305, 27.742649],
      [-82.478339, 27.74625],
      [-82.457543, 27.752571],
      [-82.434635, 27.764355],
      [-82.43198, 27.768092],
      [-82.433981, 27.774087],
      [-82.419066, 27.793767],
      [-82.418401, 27.803187],
      [-82.410837, 27.810868],
      [-82.402857, 27.812671],
      [-82.393383, 27.837519],
      [-82.397463, 27.851631],
      [-82.402615, 27.882602],
      [-82.413915, 27.901401],
      [-82.432316, 27.901301],
      [-82.451591, 27.907506],
      [-82.460016, 27.9116],
      [-82.459616, 27.9169],
      [-82.462078, 27.920066],
      [-82.478063, 27.92768],
      [-82.489817, 27.9196],
      [-82.491117, 27.9145],
      [-82.487417, 27.895001],
      [-82.488057, 27.863566],
      [-82.480137, 27.853246],
      [-82.471624, 27.847342],
      [-82.46884, 27.843295],
      [-82.47244, 27.822559],
      [-82.475273, 27.820991],
      [-82.489849, 27.822607],
      [-82.511193, 27.828015],
      [-82.553946, 27.848462],
      [-82.552918, 27.862702],
      [-82.538618, 27.864901],
      [-82.533218, 27.870701],
      [-82.529918, 27.877501],
      [-82.539318, 27.885001],
      [-82.542818, 27.890601],
      [-82.541747, 27.893706],
      [-82.535818, 27.898],
      [-82.531318, 27.9039],
      [-82.533718, 27.932999],
      [-82.541218, 27.948998],
      [-82.553918, 27.966998],
      [-82.589419, 27.970898],
      [-82.61952, 27.969698],
      [-82.648616, 27.966309],
      [-82.648557, 28.03863],
      [-82.651165, 28.173266],
      [-82.649725, 28.173314],
      [-82.643968, 28.173301]]]},
   'id': '12057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12059',
    'STATE': '12',
    'COUNTY': '059',
    'NAME': 'Holmes',
    'LSAD': 'County',
    'CENSUSAREA': 478.777},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.599934, 30.830552],
      [-85.619011, 30.743868],
      [-85.736051, 30.74637],
      [-85.821616, 30.790775],
      [-85.844421, 30.70313],
      [-86.037591, 30.704572],
      [-86.035039, 30.99332],
      [-85.498272, 30.996928],
      [-85.497992, 30.996931],
      [-85.599934, 30.830552]]]},
   'id': '12059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12061',
    'STATE': '12',
    'COUNTY': '061',
    'NAME': 'Indian River',
    'LSAD': 'County',
    'CENSUSAREA': 502.872},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.868881, 27.822522],
      [-80.509075, 27.822058],
      [-80.447084, 27.860755],
      [-80.447179, 27.859731],
      [-80.383695, 27.740045],
      [-80.351717, 27.642623],
      [-80.350553, 27.628361],
      [-80.34437, 27.616226],
      [-80.330956, 27.597541],
      [-80.324699, 27.569178],
      [-80.321271, 27.557378],
      [-80.679821, 27.55847],
      [-80.777166, 27.558733],
      [-80.778047, 27.643195],
      [-80.87315, 27.642288],
      [-80.868881, 27.822522]]]},
   'id': '12061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12063',
    'STATE': '12',
    'COUNTY': '063',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 917.76},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.154452, 31.000835],
      [-85.152218, 31.000834],
      [-85.152085, 31.000888],
      [-85.145835, 31.000695],
      [-85.057534, 31.000585],
      [-85.054802, 31.000585],
      [-85.052088, 31.000585],
      [-85.031155, 31.000647],
      [-85.030107, 31.000653],
      [-85.027512, 31.00067],
      [-85.024108, 31.000681],
      [-85.002368, 31.000682],
      [-84.998628, 30.971386],
      [-84.983527, 30.935486],
      [-84.959626, 30.910587],
      [-84.941925, 30.887988],
      [-84.896122, 30.750591],
      [-84.864693, 30.711542],
      [-84.932519, 30.606393],
      [-85.167713, 30.608026],
      [-85.171891, 30.564336],
      [-85.383948, 30.566856],
      [-85.434782, 30.56756],
      [-85.432274, 30.785457],
      [-85.482276, 30.829509],
      [-85.599934, 30.830552],
      [-85.497992, 30.996931],
      [-85.488298, 30.997041],
      [-85.154452, 31.000835]]]},
   'id': '12063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12065',
    'STATE': '12',
    'COUNTY': '065',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 598.095},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.007391, 30.672097],
      [-83.880317, 30.665807],
      [-83.88022, 30.665832],
      [-83.855216, 30.664412],
      [-83.820886, 30.662612],
      [-83.810536, 30.66188],
      [-83.743729, 30.658396],
      [-83.676773, 30.654905],
      [-83.674058, 30.654747],
      [-83.61172, 30.651258],
      [-83.604186, 30.581916],
      [-83.731107, 30.492315],
      [-83.72172, 30.434354],
      [-83.806667, 30.371689],
      [-83.820235, 30.30354],
      [-83.829465, 30.287863],
      [-83.856987, 30.273318],
      [-83.915533, 30.245386],
      [-83.991607, 30.08392],
      [-84.000716, 30.096209],
      [-84.024274, 30.103271],
      [-84.048715, 30.103208],
      [-84.06299, 30.101378],
      [-84.076043, 30.095464],
      [-84.075539, 30.273617],
      [-84.075819, 30.369819],
      [-84.075191, 30.381902],
      [-84.074892, 30.413106],
      [-84.074691, 30.434302],
      [-84.041488, 30.463308],
      [-84.041197, 30.483827],
      [-84.041192, 30.483967],
      [-83.977165, 30.521987],
      [-84.007454, 30.6721],
      [-84.007391, 30.672097]]]},
   'id': '12065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12067',
    'STATE': '12',
    'COUNTY': '067',
    'NAME': 'Lafayette',
    'LSAD': 'County',
    'CENSUSAREA': 543.411},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.36726, 30.26044],
      [-83.249862, 30.260353],
      [-83.247253, 30.26067],
      [-83.22636, 30.114621],
      [-83.160557, 30.109823],
      [-82.963112, 29.99305],
      [-82.879802, 29.886847],
      [-82.875616, 29.866527],
      [-82.892872, 29.82746],
      [-82.920608, 29.824143],
      [-83.318859, 29.822623],
      [-83.37089, 29.887934],
      [-83.36726, 30.26044]]]},
   'id': '12067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12069',
    'STATE': '12',
    'COUNTY': '069',
    'NAME': 'Lake',
    'LSAD': 'County',
    'CENSUSAREA': 938.381},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.657268, 28.347098],
      [-81.818903, 28.361712],
      [-81.957641, 28.34518],
      [-81.95358, 28.82094],
      [-81.95419, 28.960053],
      [-81.843025, 28.959884],
      [-81.842194, 28.961024],
      [-81.658698, 28.960345],
      [-81.639151, 29.06288],
      [-81.640517, 29.1316],
      [-81.641916, 29.276766],
      [-81.61234, 29.202943],
      [-81.531262, 29.176621],
      [-81.502055, 29.097802],
      [-81.354554, 28.984375],
      [-81.36694, 28.879227],
      [-81.367052, 28.878315],
      [-81.366764, 28.876619],
      [-81.366158, 28.874744],
      [-81.366705, 28.87325],
      [-81.368608, 28.872921],
      [-81.369692, 28.870536],
      [-81.372009, 28.869039],
      [-81.373491, 28.87025],
      [-81.376006, 28.865901],
      [-81.375088, 28.863366],
      [-81.414446, 28.784955],
      [-81.592971, 28.78597],
      [-81.624731, 28.785927],
      [-81.658114, 28.68271],
      [-81.65739, 28.553122],
      [-81.657268, 28.347098]]]},
   'id': '12069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12071',
    'STATE': '12',
    'COUNTY': '071',
    'NAME': 'Lee',
    'LSAD': 'County',
    'CENSUSAREA': 784.513},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-82.255777, 26.703437],
       [-82.255159, 26.70816],
       [-82.246535, 26.706435],
       [-82.24251, 26.694361],
       [-82.24596, 26.688612],
       [-82.246535, 26.683437],
       [-82.23744, 26.661976],
       [-82.218342, 26.626407],
       [-82.214337, 26.602944],
       [-82.196514, 26.559823],
       [-82.187315, 26.527626],
       [-82.177541, 26.502328],
       [-82.166042, 26.489679],
       [-82.149368, 26.477605],
       [-82.131545, 26.47703],
       [-82.120046, 26.473581],
       [-82.088423, 26.455182],
       [-82.076924, 26.466106],
       [-82.062551, 26.470131],
       [-82.038403, 26.456907],
       [-82.015607, 26.454858],
       [-82.013713, 26.454258],
       [-82.013913, 26.452058],
       [-82.063114, 26.425459],
       [-82.075015, 26.422059],
       [-82.082915, 26.422059],
       [-82.098115, 26.424959],
       [-82.126671, 26.436279],
       [-82.148716, 26.455458],
       [-82.172917, 26.467658],
       [-82.177017, 26.471558],
       [-82.180717, 26.476257],
       [-82.186441, 26.489221],
       [-82.201402, 26.55631],
       [-82.205523, 26.566536],
       [-82.222131, 26.590402],
       [-82.238872, 26.636433],
       [-82.248659, 26.654337],
       [-82.263008, 26.673388],
       [-82.268007, 26.682791],
       [-82.264351, 26.698496],
       [-82.255777, 26.703437]]],
     [[[-81.690494, 26.317334],
       [-81.845834, 26.330378],
       [-81.868983, 26.378648],
       [-81.90191, 26.410859],
       [-81.90271, 26.416159],
       [-81.91171, 26.427158],
       [-81.923611, 26.436658],
       [-81.938411, 26.445058],
       [-81.956611, 26.452358],
       [-81.964212, 26.457957],
       [-81.967112, 26.462857],
       [-81.966212, 26.465057],
       [-81.969509, 26.476505],
       [-81.980712, 26.480957],
       [-81.997012, 26.484856],
       [-82.008961, 26.484052],
       [-82.01368, 26.490829],
       [-82.00908, 26.505203],
       [-82.024604, 26.512677],
       [-82.043577, 26.519577],
       [-82.06715, 26.513252],
       [-82.07175, 26.492554],
       [-82.094748, 26.48393],
       [-82.105672, 26.48393],
       [-82.111996, 26.54085],
       [-82.118896, 26.560973],
       [-82.122345, 26.579371],
       [-82.137869, 26.637441],
       [-82.149943, 26.654115],
       [-82.181565, 26.681712],
       [-82.17984, 26.696661],
       [-82.173516, 26.701836],
       [-82.151668, 26.704136],
       [-82.139019, 26.702986],
       [-82.125795, 26.699536],
       [-82.118896, 26.690912],
       [-82.106247, 26.667339],
       [-82.099922, 26.662739],
       [-82.093023, 26.665614],
       [-82.086698, 26.685162],
       [-82.084974, 26.702411],
       [-82.079799, 26.716784],
       [-82.066575, 26.742657],
       [-82.062029, 26.770439],
       [-81.565931, 26.769552],
       [-81.563763, 26.513324],
       [-81.56218, 26.422625],
       [-81.659506, 26.421077],
       [-81.690494, 26.317334]]]]},
   'id': '12071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12073',
    'STATE': '12',
    'COUNTY': '073',
    'NAME': 'Leon',
    'LSAD': 'County',
    'CENSUSAREA': 666.852},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.039707, 30.673819],
      [-84.007454, 30.6721],
      [-83.977165, 30.521987],
      [-84.041192, 30.483967],
      [-84.041197, 30.483827],
      [-84.041488, 30.463308],
      [-84.074691, 30.434302],
      [-84.074892, 30.413106],
      [-84.075191, 30.381902],
      [-84.075819, 30.369819],
      [-84.075539, 30.273617],
      [-84.241222, 30.274244],
      [-84.247673, 30.303493],
      [-84.713351, 30.30017],
      [-84.646408, 30.388281],
      [-84.420474, 30.463905],
      [-84.378384, 30.573467],
      [-84.282562, 30.685316],
      [-84.28121, 30.685256],
      [-84.083753, 30.675954],
      [-84.057228, 30.674705],
      [-84.046605, 30.6742],
      [-84.04181, 30.673878],
      [-84.039707, 30.673819]]]},
   'id': '12073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12075',
    'STATE': '12',
    'COUNTY': '075',
    'NAME': 'Levy',
    'LSAD': 'County',
    'CENSUSAREA': 1118.206},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.405152, 29.33026],
      [-82.404594, 29.27886],
      [-82.403237, 29.215623],
      [-82.53486, 29.21468],
      [-82.535591, 29.044855],
      [-82.612653, 29.009271],
      [-82.689814, 29.033962],
      [-82.758906, 28.993277],
      [-82.760551, 28.993087],
      [-82.764055, 28.999707],
      [-82.759378, 29.006619],
      [-82.753513, 29.026496],
      [-82.759704, 29.054192],
      [-82.783328, 29.064619],
      [-82.780558, 29.07358],
      [-82.816925, 29.076215],
      [-82.823659, 29.098902],
      [-82.809483, 29.10462],
      [-82.801166, 29.105103],
      [-82.799117, 29.110647],
      [-82.798876, 29.114504],
      [-82.805703, 29.129848],
      [-82.804736, 29.146624],
      [-82.827073, 29.158425],
      [-82.858179, 29.162275],
      [-82.887211, 29.161741],
      [-82.922613, 29.169769],
      [-82.932405, 29.167891],
      [-82.945302, 29.167821],
      [-82.974676, 29.17091],
      [-82.979522, 29.171817],
      [-82.987162, 29.180094],
      [-82.991653, 29.180664],
      [-82.996144, 29.178074],
      [-83.018212, 29.151417],
      [-83.019071, 29.141324],
      [-83.030453, 29.134023],
      [-83.053207, 29.130839],
      [-83.056867, 29.146263],
      [-83.068249, 29.153135],
      [-83.060947, 29.170959],
      [-83.061162, 29.176113],
      [-83.065242, 29.184489],
      [-83.078986, 29.196944],
      [-83.087839, 29.21642],
      [-83.074734, 29.247975],
      [-83.077265, 29.255331],
      [-83.089013, 29.266502],
      [-83.107477, 29.268889],
      [-83.125567, 29.278845],
      [-83.128027, 29.282733],
      [-83.146445, 29.289194],
      [-83.149764, 29.289768],
      [-83.16073, 29.286611],
      [-83.166091, 29.28888],
      [-83.068522, 29.343953],
      [-82.984371, 29.471004],
      [-82.937374, 29.591312],
      [-82.656301, 29.564811],
      [-82.556511, 29.511982],
      [-82.556766, 29.480055],
      [-82.40662, 29.485048],
      [-82.405152, 29.33026]]]},
   'id': '12075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12077',
    'STATE': '12',
    'COUNTY': '077',
    'NAME': 'Liberty',
    'LSAD': 'County',
    'CENSUSAREA': 835.562},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.54445, 30.01103],
      [-85.007626, 30.013883],
      [-85.025439, 29.971399],
      [-85.113691, 30.023173],
      [-85.153773, 30.091294],
      [-85.11566, 30.199976],
      [-85.059092, 30.263229],
      [-84.983203, 30.441837],
      [-84.990017, 30.524795],
      [-84.932519, 30.606393],
      [-84.882616, 30.533094],
      [-84.781813, 30.518693],
      [-84.781111, 30.459794],
      [-84.646408, 30.388281],
      [-84.713351, 30.30017],
      [-84.669258, 30.1252],
      [-84.54445, 30.01103]]]},
   'id': '12077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12079',
    'STATE': '12',
    'COUNTY': '079',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 695.948},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.309455, 30.634417],
      [-83.30925, 30.634405],
      [-83.272612, 30.627687],
      [-83.243766, 30.473132],
      [-83.170969, 30.385225],
      [-83.247253, 30.26067],
      [-83.249862, 30.260353],
      [-83.36726, 30.26044],
      [-83.469267, 30.260351],
      [-83.468768, 30.304212],
      [-83.820235, 30.30354],
      [-83.806667, 30.371689],
      [-83.72172, 30.434354],
      [-83.731107, 30.492315],
      [-83.604186, 30.581916],
      [-83.61172, 30.651258],
      [-83.611667, 30.651255],
      [-83.448895, 30.64241],
      [-83.440021, 30.642023],
      [-83.429584, 30.641496],
      [-83.429477, 30.641519],
      [-83.390062, 30.639333],
      [-83.37946, 30.63868],
      [-83.357703, 30.637359],
      [-83.341011, 30.636346],
      [-83.340852, 30.636336],
      [-83.311647, 30.634577],
      [-83.309455, 30.634417]]]},
   'id': '12079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12081',
    'STATE': '12',
    'COUNTY': '081',
    'NAME': 'Manatee',
    'LSAD': 'County',
    'CENSUSAREA': 742.931},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.642837, 27.389737],
      [-82.675121, 27.424318],
      [-82.691821, 27.437218],
      [-82.691004, 27.444331],
      [-82.707821, 27.487615],
      [-82.714521, 27.500415],
      [-82.724522, 27.513614],
      [-82.743017, 27.531086],
      [-82.745748, 27.538834],
      [-82.742437, 27.53936],
      [-82.708121, 27.523514],
      [-82.710621, 27.501715],
      [-82.706821, 27.498415],
      [-82.690421, 27.496415],
      [-82.686421, 27.497215],
      [-82.686921, 27.508015],
      [-82.683621, 27.513115],
      [-82.674621, 27.519614],
      [-82.66202, 27.522814],
      [-82.65072, 27.523115],
      [-82.646014, 27.53354],
      [-82.632053, 27.551908],
      [-82.612019, 27.571231],
      [-82.613003, 27.582837],
      [-82.612749, 27.583319],
      [-82.611717, 27.585283],
      [-82.596488, 27.594045],
      [-82.584629, 27.596021],
      [-82.570607, 27.608882],
      [-82.565667, 27.615713],
      [-82.558538, 27.638678],
      [-82.554499, 27.645145],
      [-82.549548, 27.645557],
      [-82.524947, 27.645422],
      [-82.52475, 27.645422],
      [-82.054349, 27.646382],
      [-82.055753, 27.338264],
      [-82.056497, 27.207769],
      [-82.253596, 27.208916],
      [-82.252264, 27.386243],
      [-82.642837, 27.389737]]]},
   'id': '12081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12083',
    'STATE': '12',
    'COUNTY': '083',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 1584.546},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.311697, 28.960391],
      [-82.426997, 29.021385],
      [-82.535591, 29.044855],
      [-82.53486, 29.21468],
      [-82.403237, 29.215623],
      [-82.404594, 29.27886],
      [-82.405152, 29.33026],
      [-82.40662, 29.485048],
      [-82.22501, 29.484298],
      [-82.213245, 29.431764],
      [-82.105688, 29.435966],
      [-82.055899, 29.471232],
      [-81.843009, 29.521004],
      [-81.776205, 29.487448],
      [-81.741422, 29.371049],
      [-81.680903, 29.32443],
      [-81.675523, 29.310628],
      [-81.667885, 29.301488],
      [-81.655677, 29.29994],
      [-81.648438, 29.290173],
      [-81.641916, 29.276766],
      [-81.640517, 29.1316],
      [-81.639151, 29.06288],
      [-81.658698, 28.960345],
      [-81.842194, 28.961024],
      [-81.843025, 28.959884],
      [-81.95419, 28.960053],
      [-82.311697, 28.960391]]]},
   'id': '12083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12085',
    'STATE': '12',
    'COUNTY': '085',
    'NAME': 'Martin',
    'LSAD': 'County',
    'CENSUSAREA': 543.464},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.38469, 26.958382],
      [-80.885639, 26.958919],
      [-80.677427, 27.121619],
      [-80.677862, 27.205988],
      [-80.481534, 27.20637],
      [-80.481413, 27.20637],
      [-80.28551, 27.206025],
      [-80.284771, 27.263723],
      [-80.199288, 27.263022],
      [-80.19309, 27.249546],
      [-80.16147, 27.192814],
      [-80.153375, 27.169308],
      [-80.159554, 27.163325],
      [-80.14982, 27.143557],
      [-80.138605, 27.111517],
      [-80.116772, 27.072397],
      [-80.093909, 27.018587],
      [-80.079531, 26.9705],
      [-80.246728, 26.957189],
      [-80.374523, 26.958386],
      [-80.38469, 26.958382]]]},
   'id': '12085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12086',
    'STATE': '12',
    'COUNTY': '086',
    'NAME': 'Miami-Dade',
    'LSAD': 'County',
    'CENSUSAREA': 1897.716},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.44049, 25.956861],
      [-80.326712, 25.957118],
      [-80.294972, 25.95677],
      [-80.295187, 25.97057],
      [-80.278764, 25.970968],
      [-80.246763, 25.971874],
      [-80.143501, 25.974511],
      [-80.142227, 25.974674],
      [-80.133867, 25.974868],
      [-80.133862, 25.97411],
      [-80.123874, 25.974484],
      [-80.118078, 25.975158],
      [-80.117798, 25.975152],
      [-80.117904, 25.915772],
      [-80.12087, 25.883152],
      [-80.119684, 25.841043],
      [-80.122056, 25.817913],
      [-80.127394, 25.791224],
      [-80.127987, 25.772245],
      [-80.137476, 25.750301],
      [-80.144, 25.740812],
      [-80.152896, 25.702855],
      [-80.154082, 25.683283],
      [-80.152303, 25.676759],
      [-80.154972, 25.66549],
      [-80.160903, 25.664897],
      [-80.176916, 25.685062],
      [-80.170392, 25.710565],
      [-80.164461, 25.721833],
      [-80.166241, 25.72895],
      [-80.172765, 25.737847],
      [-80.184626, 25.745557],
      [-80.197674, 25.74437],
      [-80.229107, 25.732509],
      [-80.240376, 25.724206],
      [-80.244528, 25.717089],
      [-80.250459, 25.688028],
      [-80.265879, 25.658373],
      [-80.267065, 25.651849],
      [-80.277147, 25.637022],
      [-80.288416, 25.630498],
      [-80.296719, 25.622195],
      [-80.301464, 25.613299],
      [-80.305615, 25.593134],
      [-80.305615, 25.575342],
      [-80.302057, 25.567632],
      [-80.313918, 25.539164],
      [-80.324594, 25.535605],
      [-80.328746, 25.53264],
      [-80.339421, 25.499427],
      [-80.339421, 25.478669],
      [-80.337049, 25.465621],
      [-80.328152, 25.443084],
      [-80.320442, 25.437153],
      [-80.326373, 25.422919],
      [-80.32578, 25.39801],
      [-80.320442, 25.391486],
      [-80.31036, 25.389707],
      [-80.306801, 25.384369],
      [-80.31036, 25.3731],
      [-80.335269, 25.338701],
      [-80.352469, 25.329805],
      [-80.361662, 25.327433],
      [-80.374116, 25.31735],
      [-80.383013, 25.301337],
      [-80.385978, 25.288289],
      [-80.419191, 25.26338],
      [-80.437815, 25.253077],
      [-80.447066, 25.24796],
      [-80.462832, 25.236248],
      [-80.467824, 25.23254],
      [-80.468366, 25.231977],
      [-80.469843, 25.230442],
      [-80.483244, 25.216526],
      [-80.487591, 25.207829],
      [-80.488035, 25.206942],
      [-80.488216, 25.206757],
      [-80.495341, 25.199463],
      [-80.496179, 25.199637],
      [-80.498361, 25.200091],
      [-80.498644, 25.20015],
      [-80.502983, 25.20316],
      [-80.503125, 25.203259],
      [-80.50778, 25.206488],
      [-80.508113, 25.206719],
      [-80.508116, 25.206725],
      [-80.512928, 25.216719],
      [-80.514724, 25.217702],
      [-80.515297, 25.218016],
      [-80.520359, 25.220788],
      [-80.52319, 25.22008],
      [-80.525784, 25.218649],
      [-80.530207, 25.216207],
      [-80.540947, 25.21821],
      [-80.54204, 25.22185],
      [-80.540947, 25.224945],
      [-80.540765, 25.229678],
      [-80.548491, 25.236535],
      [-80.558223, 25.239012],
      [-80.570785, 25.239366],
      [-80.589186, 25.223796],
      [-80.587593, 25.207695],
      [-80.584783, 25.200695],
      [-80.584771, 25.200665],
      [-80.594338, 25.193437],
      [-80.601627, 25.187931],
      [-80.609607, 25.181902],
      [-80.609609, 25.181901],
      [-80.618989, 25.177345],
      [-80.619024, 25.177328],
      [-80.633992, 25.176829],
      [-80.639873, 25.176633],
      [-80.640275, 25.17662],
      [-80.640823, 25.176364],
      [-80.642456, 25.175601],
      [-80.645737, 25.174069],
      [-80.645822, 25.174029],
      [-80.646099, 25.173599],
      [-80.648565, 25.169773],
      [-80.649251, 25.168708],
      [-80.656944, 25.168216],
      [-80.660692, 25.167976],
      [-80.66995, 25.167384],
      [-80.674324, 25.167104],
      [-80.679852, 25.166751],
      [-80.683909, 25.166491],
      [-80.688361, 25.164711],
      [-80.695038, 25.157588],
      [-80.70127, 25.146683],
      [-80.703718, 25.139115],
      [-80.715099, 25.140872],
      [-80.721886, 25.145101],
      [-80.728602, 25.144316],
      [-80.734741, 25.143598],
      [-80.73833, 25.143178],
      [-80.742877, 25.142646],
      [-80.746379, 25.148559],
      [-80.746264, 25.155303],
      [-80.751866, 25.163762],
      [-80.757581, 25.166734],
      [-80.795456, 25.172337],
      [-80.796219, 25.17245],
      [-80.815193, 25.164956],
      [-80.817116, 25.164196],
      [-80.823441, 25.161698],
      [-80.826465, 25.160504],
      [-80.82653, 25.160478],
      [-80.826544, 25.160509],
      [-80.827179, 25.161888],
      [-80.827489, 25.162562],
      [-80.828435, 25.164619],
      [-80.830034, 25.168094],
      [-80.838227, 25.174791],
      [-80.843703, 25.176312],
      [-80.846395, 25.17706],
      [-80.8464, 25.17706],
      [-80.858167, 25.176576],
      [-80.87319, 25.363993],
      [-80.873096, 25.805377],
      [-80.872932, 25.979434],
      [-80.680038, 25.978749],
      [-80.680016, 25.956857],
      [-80.44049, 25.956861]]]},
   'id': '12086'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12087',
    'STATE': '12',
    'COUNTY': '087',
    'NAME': 'Monroe',
    'LSAD': 'County',
    'CENSUSAREA': 983.282},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-80.250581, 25.34193],
       [-80.254916, 25.336336],
       [-80.260137, 25.324641],
       [-80.268138, 25.320675],
       [-80.288184, 25.282835],
       [-80.307584, 25.257561],
       [-80.351399, 25.190615],
       [-80.354019, 25.184306],
       [-80.349855, 25.168825],
       [-80.35857, 25.154073],
       [-80.377084, 25.130487],
       [-80.399767, 25.108536],
       [-80.428318, 25.095547],
       [-80.431032, 25.08925],
       [-80.443375, 25.076084],
       [-80.462011, 25.069935],
       [-80.47387, 25.060253],
       [-80.493881, 25.038502],
       [-80.48912, 25.031301],
       [-80.494781, 25.023019],
       [-80.537995, 24.990244],
       [-80.565831, 24.958155],
       [-80.571668, 24.953659],
       [-80.588272, 24.951153],
       [-80.596073, 24.948173],
       [-80.611693, 24.93842],
       [-80.635571, 24.913003],
       [-80.659395, 24.897433],
       [-80.66128, 24.899704],
       [-80.660198, 24.90498],
       [-80.650765, 24.908121],
       [-80.641306, 24.914311],
       [-80.623866, 24.931236],
       [-80.622896, 24.935587],
       [-80.624172, 24.939058],
       [-80.621658, 24.944265],
       [-80.597074, 24.958492],
       [-80.581131, 24.964738],
       [-80.578185, 24.962811],
       [-80.570813, 24.962215],
       [-80.558785, 24.971505],
       [-80.54411, 24.999916],
       [-80.543254, 25.007337],
       [-80.545971, 25.01477],
       [-80.524498, 25.016945],
       [-80.509136, 25.028317],
       [-80.501326, 25.041436],
       [-80.495569, 25.047497],
       [-80.4889, 25.05011],
       [-80.481197, 25.056604],
       [-80.460652, 25.078904],
       [-80.465496, 25.086609],
       [-80.470211, 25.089438],
       [-80.481763, 25.091905],
       [-80.494715, 25.102269],
       [-80.484188, 25.10943],
       [-80.47748, 25.107407],
       [-80.476174, 25.099454],
       [-80.463987, 25.09321],
       [-80.450399, 25.088751],
       [-80.444887, 25.092966],
       [-80.433575, 25.106317],
       [-80.433499, 25.114665],
       [-80.447659, 25.147729],
       [-80.446473, 25.151287],
       [-80.41326, 25.137053],
       [-80.403177, 25.141798],
       [-80.395467, 25.150694],
       [-80.387164, 25.170859],
       [-80.38835, 25.182721],
       [-80.391909, 25.19221],
       [-80.387164, 25.198141],
       [-80.369965, 25.206444],
       [-80.358696, 25.207037],
       [-80.3498, 25.210595],
       [-80.337345, 25.231353],
       [-80.333787, 25.253891],
       [-80.336159, 25.261601],
       [-80.342683, 25.268125],
       [-80.368186, 25.282359],
       [-80.364034, 25.28651],
       [-80.339421, 25.290069],
       [-80.334676, 25.285917],
       [-80.328746, 25.28651],
       [-80.315698, 25.29422],
       [-80.292567, 25.314385],
       [-80.289602, 25.325061],
       [-80.275961, 25.344039],
       [-80.264614, 25.354322],
       [-80.256982, 25.361239],
       [-80.25461, 25.38081],
       [-80.251052, 25.391486],
       [-80.246307, 25.398603],
       [-80.226142, 25.406313],
       [-80.219025, 25.411058],
       [-80.21428, 25.416988],
       [-80.20657, 25.434188],
       [-80.199453, 25.458504],
       [-80.192336, 25.473331],
       [-80.189964, 25.485786],
       [-80.191743, 25.495275],
       [-80.188778, 25.50773],
       [-80.179288, 25.518999],
       [-80.174544, 25.518406],
       [-80.173951, 25.482821],
       [-80.184033, 25.468587],
       [-80.204198, 25.412244],
       [-80.221991, 25.397417],
       [-80.238004, 25.361832],
       [-80.240376, 25.347005],
       [-80.249865, 25.342853],
       [-80.250581, 25.34193]]],
     [[[-81.582923, 24.658732],
       [-81.580534, 24.66914],
       [-81.562917, 24.692912],
       [-81.55761, 24.692488],
       [-81.542116, 24.681026],
       [-81.535323, 24.67954],
       [-81.51898, 24.687818],
       [-81.516433, 24.700341],
       [-81.5124, 24.703737],
       [-81.490962, 24.710105],
       [-81.476642, 24.711244],
       [-81.474186, 24.706332],
       [-81.469275, 24.704286],
       [-81.459043, 24.707355],
       [-81.454132, 24.710834],
       [-81.451881, 24.714518],
       [-81.4527, 24.736209],
       [-81.456588, 24.740097],
       [-81.451267, 24.747464],
       [-81.440831, 24.73539],
       [-81.43858, 24.727],
       [-81.435715, 24.723931],
       [-81.432032, 24.722908],
       [-81.423028, 24.731911],
       [-81.421595, 24.737641],
       [-81.427121, 24.745827],
       [-81.430599, 24.747259],
       [-81.431009, 24.751761],
       [-81.425483, 24.752989],
       [-81.402769, 24.749101],
       [-81.392947, 24.743371],
       [-81.390287, 24.73846],
       [-81.389468, 24.731298],
       [-81.38558, 24.726182],
       [-81.36041, 24.708788],
       [-81.345881, 24.70756],
       [-81.319282, 24.701238],
       [-81.314787, 24.691764],
       [-81.313933, 24.680707],
       [-81.309664, 24.665017],
       [-81.298028, 24.656774],
       [-81.298369, 24.654326],
       [-81.303113, 24.651665],
       [-81.332831, 24.639528],
       [-81.395096, 24.621062],
       [-81.401946, 24.623564],
       [-81.403319, 24.640294],
       [-81.414187, 24.647167],
       [-81.432315, 24.645949],
       [-81.448623, 24.640172],
       [-81.470411, 24.641985],
       [-81.480951, 24.645121],
       [-81.48183, 24.647369],
       [-81.477915, 24.649893],
       [-81.47641, 24.653197],
       [-81.480504, 24.659757],
       [-81.49858, 24.66498],
       [-81.502992, 24.660877],
       [-81.505585, 24.654609],
       [-81.50874, 24.64421],
       [-81.509028, 24.631516],
       [-81.511165, 24.625135],
       [-81.518595, 24.620304],
       [-81.54645, 24.614895],
       [-81.602998, 24.586444],
       [-81.664209, 24.573143],
       [-81.674694, 24.564359],
       [-81.685278, 24.558739],
       [-81.691575, 24.559886],
       [-81.732511, 24.556423],
       [-81.765993, 24.552103],
       [-81.786157, 24.54658],
       [-81.810333, 24.544701],
       [-81.81289, 24.546468],
       [-81.814446, 24.56358],
       [-81.811386, 24.56975],
       [-81.800676, 24.570989],
       [-81.794057, 24.586],
       [-81.773808, 24.584977],
       [-81.748071, 24.590199],
       [-81.739241, 24.589973],
       [-81.734573, 24.584148],
       [-81.730473, 24.58196],
       [-81.715944, 24.587956],
       [-81.71548, 24.592498],
       [-81.705364, 24.597647],
       [-81.699349, 24.597647],
       [-81.694235, 24.591932],
       [-81.687017, 24.592534],
       [-81.678595, 24.597647],
       [-81.66897, 24.607873],
       [-81.655735, 24.616295],
       [-81.637087, 24.621408],
       [-81.614829, 24.642764],
       [-81.614529, 24.650584],
       [-81.597685, 24.655397],
       [-81.587759, 24.655998],
       [-81.582923, 24.658732]]],
     [[[-82.15068, 24.576331],
       [-82.143075, 24.593395],
       [-82.135423, 24.596879],
       [-82.125268, 24.597426],
       [-82.104187, 24.588256],
       [-82.101051, 24.584679],
       [-82.099417, 24.572522],
       [-82.104429, 24.561167],
       [-82.116787, 24.549144],
       [-82.159439, 24.548212],
       [-82.165206, 24.552159],
       [-82.164426, 24.563375],
       [-82.15068, 24.576331]]],
     [[[-81.249799, 24.673357],
       [-81.246095, 24.675832],
       [-81.243232, 24.673998],
       [-81.244761, 24.669202],
       [-81.281778, 24.65375],
       [-81.278312, 24.660448],
       [-81.260006, 24.674848],
       [-81.249799, 24.673357]]],
     [[[-80.909954, 24.781154],
       [-80.906288, 24.769867],
       [-80.912042, 24.76505],
       [-80.938543, 24.767535],
       [-81.015933, 24.719881],
       [-81.023794, 24.716901],
       [-81.028616, 24.720618],
       [-81.032447, 24.727323],
       [-81.03429, 24.727341],
       [-81.064554, 24.715453],
       [-81.071034, 24.711722],
       [-81.075855, 24.704266],
       [-81.078716, 24.696557],
       [-81.078439, 24.692382],
       [-81.108041, 24.688592],
       [-81.124094, 24.704873],
       [-81.125371, 24.708291],
       [-81.107355, 24.71276],
       [-81.105287, 24.71128],
       [-81.099135, 24.711993],
       [-81.066816, 24.723926],
       [-81.05057, 24.737581],
       [-81.041797, 24.742965],
       [-81.036698, 24.742827],
       [-81.035192, 24.739982],
       [-81.02217, 24.733091],
       [-81.016918, 24.734676],
       [-80.994426, 24.743991],
       [-80.986454, 24.752749],
       [-80.960129, 24.764226],
       [-80.910431, 24.782324],
       [-80.909954, 24.781154]]],
     [[[-81.317673, 24.75729],
       [-81.305468, 24.756612],
       [-81.290801, 24.736862],
       [-81.288259, 24.720881],
       [-81.302984, 24.714199],
       [-81.310744, 24.727068],
       [-81.318505, 24.729477],
       [-81.326844, 24.728375],
       [-81.350162, 24.746524],
       [-81.357417, 24.756834],
       [-81.342695, 24.75625],
       [-81.327555, 24.762315],
       [-81.324637, 24.76721],
       [-81.317673, 24.75729]]],
     [[[-80.89054, 24.791678],
       [-80.884572, 24.791561],
       [-80.88402, 24.790414],
       [-80.892649, 24.785991],
       [-80.906874, 24.783744],
       [-80.89054, 24.791678]]],
     [[[-80.788263, 24.824218],
       [-80.790497, 24.817789],
       [-80.796053, 24.81194],
       [-80.822342, 24.812629],
       [-80.846191, 24.802968],
       [-80.850338, 24.8026],
       [-80.850866, 24.803701],
       [-80.846142, 24.807488],
       [-80.830158, 24.81428],
       [-80.814551, 24.827953],
       [-80.79278, 24.843918],
       [-80.780564, 24.84052],
       [-80.788263, 24.824218]]],
     [[[-80.729275, 24.865361],
       [-80.719977, 24.864644],
       [-80.703028, 24.880873],
       [-80.691762, 24.885759],
       [-80.690354, 24.881539],
       [-80.703176, 24.869495],
       [-80.71185, 24.863323],
       [-80.761359, 24.836225],
       [-80.766966, 24.836158],
       [-80.745468, 24.850652],
       [-80.740611, 24.857421],
       [-80.732343, 24.86481],
       [-80.729275, 24.865361]]],
     [[[-80.873096, 25.805377],
       [-80.87319, 25.363993],
       [-80.858167, 25.176576],
       [-80.858801, 25.176493],
       [-80.874323, 25.174469],
       [-80.874815, 25.174405],
       [-80.87546, 25.174321],
       [-80.875731, 25.174185],
       [-80.878982, 25.172562],
       [-80.879235, 25.172436],
       [-80.891681, 25.166221],
       [-80.899459, 25.162337],
       [-80.900066, 25.162034],
       [-80.900124, 25.161726],
       [-80.90111, 25.156496],
       [-80.901592, 25.153933],
       [-80.901617, 25.153803],
       [-80.90022, 25.150627],
       [-80.898911, 25.147652],
       [-80.900559, 25.139755],
       [-80.900577, 25.139669],
       [-80.900668, 25.139679],
       [-80.902311, 25.139853],
       [-80.906578, 25.140307],
       [-80.915924, 25.141301],
       [-80.915965, 25.141291],
       [-80.931353, 25.137424],
       [-80.93675, 25.136068],
       [-80.939272, 25.135434],
       [-80.940988, 25.135003],
       [-80.943164, 25.134456],
       [-80.943216, 25.134443],
       [-80.954567, 25.13545],
       [-80.955577, 25.13554],
       [-80.95615, 25.135591],
       [-80.957427, 25.135704],
       [-80.958727, 25.135546],
       [-80.967465, 25.134482],
       [-80.967506, 25.134477],
       [-80.96774, 25.134448],
       [-80.967832, 25.134437],
       [-80.970185, 25.13415],
       [-80.970727, 25.134084],
       [-80.970797, 25.134076],
       [-80.971585, 25.13398],
       [-80.971664, 25.13397],
       [-80.971765, 25.133958],
       [-80.973129, 25.133473],
       [-80.977198, 25.132028],
       [-80.991949, 25.126789],
       [-80.994096, 25.126026],
       [-80.999176, 25.124222],
       [-80.999772, 25.12429],
       [-81.009598, 25.125403],
       [-81.022989, 25.129393],
       [-81.025154, 25.129305],
       [-81.033404, 25.128969],
       [-81.038021, 25.128781],
       [-81.049308, 25.128322],
       [-81.049344, 25.12832],
       [-81.049445, 25.128316],
       [-81.049896, 25.128298],
       [-81.050505, 25.128273],
       [-81.079859, 25.118797],
       [-81.094524, 25.127054],
       [-81.111943, 25.14547],
       [-81.120616, 25.152302],
       [-81.133567, 25.156295],
       [-81.141024, 25.163868],
       [-81.142278, 25.183],
       [-81.142471, 25.18344],
       [-81.142897, 25.184406],
       [-81.146737, 25.193139],
       [-81.155252, 25.207706],
       [-81.155481, 25.208098],
       [-81.15582, 25.208389],
       [-81.168046, 25.218854],
       [-81.171265, 25.221609],
       [-81.172044, 25.222276],
       [-81.171978, 25.223648],
       [-81.171455, 25.234483],
       [-81.171369, 25.236268],
       [-81.170953, 25.244898],
       [-81.170907, 25.245857],
       [-81.169709, 25.249231],
       [-81.169509, 25.249795],
       [-81.169294, 25.250398],
       [-81.168307, 25.253178],
       [-81.16207, 25.289833],
       [-81.159293, 25.298595],
       [-81.1523, 25.305543],
       [-81.148915, 25.318067],
       [-81.151916, 25.324766],
       [-81.148103, 25.332793],
       [-81.140099, 25.341117],
       [-81.133913, 25.342996],
       [-81.12141, 25.33875],
       [-81.118208, 25.34522],
       [-81.117265, 25.354953],
       [-81.128492, 25.380511],
       [-81.141395, 25.381358],
       [-81.150508, 25.387255],
       [-81.150656, 25.399206],
       [-81.147144, 25.404297],
       [-81.146765, 25.407577],
       [-81.168652, 25.463848],
       [-81.179406, 25.475427],
       [-81.191924, 25.484745],
       [-81.208201, 25.504937],
       [-81.210149, 25.516888],
       [-81.203175, 25.53416],
       [-81.204389, 25.538908],
       [-81.209321, 25.548611],
       [-81.225557, 25.55847],
       [-81.232705, 25.573366],
       [-81.233051, 25.586587],
       [-81.240519, 25.599041],
       [-81.240677, 25.613629],
       [-81.253951, 25.638181],
       [-81.268924, 25.656927],
       [-81.277374, 25.66498],
       [-81.290328, 25.687506],
       [-81.328935, 25.717233],
       [-81.335037, 25.715649],
       [-81.346078, 25.721473],
       [-81.345972, 25.736536],
       [-81.343984, 25.747668],
       [-81.346767, 25.754029],
       [-81.355116, 25.76039],
       [-81.359489, 25.766354],
       [-81.361875, 25.772715],
       [-81.344779, 25.782257],
       [-81.340406, 25.786631],
       [-81.341598, 25.794582],
       [-81.344564, 25.803322],
       [-80.873096, 25.805377]]]]},
   'id': '12087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12089',
    'STATE': '12',
    'COUNTY': '089',
    'NAME': 'Nassau',
    'LSAD': 'County',
    'CENSUSAREA': 648.639},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.906014, 30.822176],
      [-81.868608, 30.792754],
      [-81.840375, 30.786384],
      [-81.827014, 30.788933],
      [-81.806652, 30.789683],
      [-81.759338, 30.771377],
      [-81.741278, 30.762681],
      [-81.732627, 30.749934],
      [-81.719927, 30.744634],
      [-81.637222, 30.733835],
      [-81.624298, 30.736194],
      [-81.606221, 30.718135],
      [-81.544618, 30.712636],
      [-81.444124, 30.709714],
      [-81.432725, 30.703017],
      [-81.42742, 30.69802],
      [-81.430843, 30.669393],
      [-81.443099, 30.600938],
      [-81.442564, 30.555189],
      [-81.434064, 30.522569],
      [-81.442784, 30.50992],
      [-81.499575, 30.563793],
      [-81.543018, 30.523889],
      [-81.624513, 30.586232],
      [-81.72163, 30.571968],
      [-81.791665, 30.50561],
      [-82.049236, 30.273432],
      [-82.050031, 30.36249],
      [-82.016103, 30.497355],
      [-82.01699, 30.519358],
      [-82.005477, 30.563495],
      [-82.01329, 30.595665],
      [-82.037609, 30.633271],
      [-82.049401, 30.655296],
      [-82.050432, 30.676266],
      [-82.023213, 30.781987],
      [-81.999836, 30.788348],
      [-81.906014, 30.822176]]]},
   'id': '12089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12091',
    'STATE': '12',
    'COUNTY': '091',
    'NAME': 'Okaloosa',
    'LSAD': 'County',
    'CENSUSAREA': 930.247},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.393551, 30.493444],
      [-86.394174, 30.46674],
      [-86.395383, 30.433336],
      [-86.397325, 30.378553],
      [-86.400403, 30.378927],
      [-86.412076, 30.380346],
      [-86.429322, 30.381389],
      [-86.454731, 30.382925],
      [-86.456197, 30.383014],
      [-86.457045, 30.383065],
      [-86.470849, 30.3839],
      [-86.47399, 30.383758],
      [-86.50615, 30.3823],
      [-86.529067, 30.386896],
      [-86.632953, 30.396299],
      [-86.750906, 30.391881],
      [-86.800283, 30.386477],
      [-86.785692, 30.996977],
      [-86.728392, 30.996739],
      [-86.727293, 30.996882],
      [-86.725379, 30.996872],
      [-86.688294, 30.995029],
      [-86.678383, 30.994537],
      [-86.664681, 30.994534],
      [-86.567586, 30.995109],
      [-86.563436, 30.995223],
      [-86.519938, 30.993245],
      [-86.512834, 30.9937],
      [-86.458319, 30.993998],
      [-86.454704, 30.993791],
      [-86.404912, 30.994049],
      [-86.391937, 30.994172],
      [-86.388647, 30.994181],
      [-86.388646, 30.994181],
      [-86.393551, 30.493444]]]},
   'id': '12091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12093',
    'STATE': '12',
    'COUNTY': '093',
    'NAME': 'Okeechobee',
    'LSAD': 'County',
    'CENSUSAREA': 768.908},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.679821, 27.55847],
      [-80.679288, 27.455697],
      [-80.678609, 27.448598],
      [-80.677862, 27.205988],
      [-80.677427, 27.121619],
      [-80.885639, 26.958919],
      [-80.871169, 27.154951],
      [-80.943186, 27.210599],
      [-80.951656, 27.224825],
      [-80.970916, 27.217698],
      [-81.213717, 27.528654],
      [-81.142164, 27.643238],
      [-80.87315, 27.642288],
      [-80.778047, 27.643195],
      [-80.777166, 27.558733],
      [-80.679821, 27.55847]]]},
   'id': '12093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12095',
    'STATE': '12',
    'COUNTY': '095',
    'NAME': 'Orange',
    'LSAD': 'County',
    'CENSUSAREA': 903.429},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.65739, 28.553122],
      [-81.658114, 28.68271],
      [-81.624731, 28.785927],
      [-81.592971, 28.78597],
      [-81.414446, 28.784955],
      [-81.459695, 28.644475],
      [-81.459501, 28.640285],
      [-81.457975, 28.640336],
      [-81.365289, 28.640468],
      [-81.357965, 28.639187],
      [-81.331099, 28.639581],
      [-81.32865, 28.639334],
      [-81.327911, 28.611268],
      [-81.326991, 28.610298],
      [-80.98725, 28.612997],
      [-80.88089, 28.503633],
      [-80.862908, 28.347487],
      [-81.309571, 28.348051],
      [-81.513859, 28.347374],
      [-81.531837, 28.347384],
      [-81.657268, 28.347098],
      [-81.65739, 28.553122]]]},
   'id': '12095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12097',
    'STATE': '12',
    'COUNTY': '097',
    'NAME': 'Osceola',
    'LSAD': 'County',
    'CENSUSAREA': 1327.453},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.862908, 28.347487],
      [-80.862881, 28.347439],
      [-80.862815, 28.347221],
      [-80.868881, 27.822522],
      [-80.87315, 27.642288],
      [-81.142164, 27.643238],
      [-81.131495, 27.6494],
      [-81.208124, 27.821125],
      [-81.301862, 27.862081],
      [-81.308696, 27.92188],
      [-81.378718, 28.011743],
      [-81.375467, 28.0851],
      [-81.455315, 28.085367],
      [-81.455647, 28.142894],
      [-81.524227, 28.142805],
      [-81.524083, 28.201012],
      [-81.551345, 28.249045],
      [-81.657189, 28.259217],
      [-81.657268, 28.347098],
      [-81.531837, 28.347384],
      [-81.513859, 28.347374],
      [-81.309571, 28.348051],
      [-80.862908, 28.347487]]]},
   'id': '12097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12099',
    'STATE': '12',
    'COUNTY': '099',
    'NAME': 'Palm Beach',
    'LSAD': 'County',
    'CENSUSAREA': 1969.763},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.116782, 26.327845],
      [-80.121329, 26.32774],
      [-80.130164, 26.327858],
      [-80.13125, 26.327821],
      [-80.134037, 26.327905],
      [-80.15377, 26.327766],
      [-80.296935, 26.334356],
      [-80.297471, 26.334356],
      [-80.881233, 26.333806],
      [-80.886099, 26.72548],
      [-80.885639, 26.958919],
      [-80.38469, 26.958382],
      [-80.374523, 26.958386],
      [-80.246728, 26.957189],
      [-80.079531, 26.9705],
      [-80.066697, 26.927579],
      [-80.046263, 26.859238],
      [-80.031362, 26.796339],
      [-80.03212, 26.77153],
      [-80.036362, 26.77124],
      [-80.037462, 26.76634],
      [-80.032862, 26.715242],
      [-80.032862, 26.700842],
      [-80.035763, 26.676043],
      [-80.035363, 26.612346],
      [-80.038863, 26.569347],
      [-80.050363, 26.509549],
      [-80.060564, 26.444652],
      [-80.070564, 26.336455],
      [-80.072264, 26.335356],
      [-80.074837, 26.321032],
      [-80.087905, 26.320756],
      [-80.088999, 26.324357],
      [-80.091929, 26.326352],
      [-80.098268, 26.322599],
      [-80.099747, 26.327668],
      [-80.116782, 26.327845]]]},
   'id': '12099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12101',
    'STATE': '12',
    'COUNTY': '101',
    'NAME': 'Pasco',
    'LSAD': 'County',
    'CENSUSAREA': 746.886},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.678743, 28.433456],
      [-82.600636, 28.43391],
      [-82.253439, 28.434824],
      [-82.253293, 28.478491],
      [-82.054694, 28.478397],
      [-82.055819, 28.312794],
      [-82.106206, 28.25924],
      [-82.105853, 28.17165],
      [-82.643968, 28.173301],
      [-82.649725, 28.173314],
      [-82.651165, 28.173266],
      [-82.805097, 28.172181],
      [-82.797762, 28.187789],
      [-82.762643, 28.219013],
      [-82.76446, 28.220069],
      [-82.764103, 28.244345],
      [-82.759072, 28.25402],
      [-82.746188, 28.261192],
      [-82.732792, 28.291933],
      [-82.735463, 28.30039],
      [-82.73146, 28.325075],
      [-82.715822, 28.345501],
      [-82.706112, 28.368057],
      [-82.706322, 28.401325],
      [-82.697433, 28.420166],
      [-82.684137, 28.428019],
      [-82.678743, 28.433456]]]},
   'id': '12101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12103',
    'STATE': '12',
    'COUNTY': '103',
    'NAME': 'Pinellas',
    'LSAD': 'County',
    'CENSUSAREA': 273.799},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-82.821585, 27.964443],
       [-82.829801, 27.968469],
       [-82.828625, 28.019795],
       [-82.823025, 28.030695],
       [-82.823063, 28.044758],
       [-82.826282, 28.05345],
       [-82.831825, 28.062893],
       [-82.836326, 28.073193],
       [-82.833225, 28.082193],
       [-82.830525, 28.085293],
       [-82.826125, 28.083793],
       [-82.823063, 28.068258],
       [-82.818288, 28.057613],
       [-82.813435, 28.03716],
       [-82.815168, 28.012547],
       [-82.821408, 28.008387],
       [-82.821755, 28.002494],
       [-82.817248, 27.992094],
       [-82.815168, 27.973721],
       [-82.821585, 27.964443]]],
     [[[-82.679019, 27.696054],
       [-82.679251, 27.694665],
       [-82.693748, 27.700217],
       [-82.713629, 27.698661],
       [-82.718822, 27.692007],
       [-82.723022, 27.671208],
       [-82.721622, 27.663908],
       [-82.716322, 27.651409],
       [-82.712555, 27.646647],
       [-82.698091, 27.638858],
       [-82.705017, 27.62531],
       [-82.733076, 27.612972],
       [-82.736552, 27.617326],
       [-82.737312, 27.623115],
       [-82.73779, 27.626758],
       [-82.739122, 27.636909],
       [-82.738022, 27.706807],
       [-82.740323, 27.718206],
       [-82.746223, 27.731306],
       [-82.753723, 27.736306],
       [-82.760923, 27.745205],
       [-82.770023, 27.767904],
       [-82.783124, 27.783804],
       [-82.790224, 27.791603],
       [-82.820433, 27.813742],
       [-82.828561, 27.822254],
       [-82.846526, 27.854301],
       [-82.849126, 27.8632],
       [-82.851126, 27.8863],
       [-82.847826, 27.910199],
       [-82.840882, 27.937162],
       [-82.831388, 27.962117],
       [-82.824875, 27.960201],
       [-82.821975, 27.956868],
       [-82.830819, 27.930926],
       [-82.838484, 27.909111],
       [-82.832155, 27.909242],
       [-82.820715, 27.927268],
       [-82.808745, 27.953112],
       [-82.805462, 27.960201],
       [-82.79782, 27.990563],
       [-82.792635, 28.01116],
       [-82.792635, 28.032307],
       [-82.782724, 28.055894],
       [-82.783824, 28.106292],
       [-82.782181, 28.120287],
       [-82.781324, 28.127591],
       [-82.786624, 28.144991],
       [-82.790724, 28.15249],
       [-82.799024, 28.15179],
       [-82.808474, 28.154803],
       [-82.805097, 28.172181],
       [-82.651165, 28.173266],
       [-82.648557, 28.03863],
       [-82.648616, 27.966309],
       [-82.716522, 27.958398],
       [-82.720522, 27.955798],
       [-82.724122, 27.948098],
       [-82.721975, 27.941819],
       [-82.721429, 27.940222],
       [-82.720395, 27.937199],
       [-82.720122, 27.936399],
       [-82.710022, 27.928299],
       [-82.691621, 27.924899],
       [-82.685121, 27.916299],
       [-82.671221, 27.913],
       [-82.628063, 27.910397],
       [-82.63422, 27.9037],
       [-82.63212, 27.8911],
       [-82.61002, 27.873501],
       [-82.567919, 27.883701],
       [-82.567826, 27.881537],
       [-82.566819, 27.858002],
       [-82.598443, 27.857582],
       [-82.594819, 27.843402],
       [-82.589319, 27.835702],
       [-82.586519, 27.816703],
       [-82.60742, 27.798904],
       [-82.622723, 27.779868],
       [-82.63052, 27.753905],
       [-82.62502, 27.732706],
       [-82.62572, 27.727006],
       [-82.63362, 27.710607],
       [-82.63982, 27.703907],
       [-82.652521, 27.700307],
       [-82.662921, 27.702307],
       [-82.663246, 27.702442],
       [-82.667445, 27.704179],
       [-82.668772, 27.704728],
       [-82.670449, 27.705422],
       [-82.670942, 27.705626],
       [-82.671549, 27.705877],
       [-82.671621, 27.705907],
       [-82.672093, 27.705932],
       [-82.673061, 27.705983],
       [-82.674123, 27.706039],
       [-82.677321, 27.706207],
       [-82.679019, 27.696054]]]]},
   'id': '12103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12105',
    'STATE': '12',
    'COUNTY': '105',
    'NAME': 'Polk',
    'LSAD': 'County',
    'CENSUSAREA': 1797.837},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.818903, 28.361712],
      [-81.657268, 28.347098],
      [-81.657189, 28.259217],
      [-81.551345, 28.249045],
      [-81.524083, 28.201012],
      [-81.524227, 28.142805],
      [-81.455647, 28.142894],
      [-81.455315, 28.085367],
      [-81.375467, 28.0851],
      [-81.378718, 28.011743],
      [-81.308696, 27.92188],
      [-81.301862, 27.862081],
      [-81.208124, 27.821125],
      [-81.131495, 27.6494],
      [-81.142164, 27.643238],
      [-81.563318, 27.646647],
      [-82.054349, 27.646382],
      [-82.054035, 27.850683],
      [-82.056404, 28.080385],
      [-82.056261, 28.171592],
      [-82.105853, 28.17165],
      [-82.106206, 28.25924],
      [-82.055819, 28.312794],
      [-81.957641, 28.34518],
      [-81.818903, 28.361712]]]},
   'id': '12105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12107',
    'STATE': '12',
    'COUNTY': '107',
    'NAME': 'Putnam',
    'LSAD': 'County',
    'CENSUSAREA': 727.622},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.523866, 29.631538],
      [-81.523691, 29.624995],
      [-81.52366, 29.622432],
      [-81.520596, 29.500249],
      [-81.478793, 29.399052],
      [-81.433992, 29.398552],
      [-81.450892, 29.378464],
      [-81.507989, 29.364511],
      [-81.518045, 29.361868],
      [-81.521764, 29.362194],
      [-81.540873, 29.356556],
      [-81.561194, 29.351686],
      [-81.680903, 29.32443],
      [-81.741422, 29.371049],
      [-81.776205, 29.487448],
      [-81.843009, 29.521004],
      [-82.055899, 29.471232],
      [-82.055027, 29.669608],
      [-82.050291, 29.709735],
      [-82.050829, 29.716098],
      [-82.055625, 29.718232],
      [-82.049244, 29.71867],
      [-81.939427, 29.747497],
      [-81.797218, 29.836649],
      [-81.581207, 29.840176],
      [-81.52523, 29.759497],
      [-81.523866, 29.631538]]]},
   'id': '12107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12109',
    'STATE': '12',
    'COUNTY': '109',
    'NAME': 'St. Johns',
    'LSAD': 'County',
    'CENSUSAREA': 600.655},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.601212, 30.130541],
      [-81.433737, 30.106028],
      [-81.436929, 30.252335],
      [-81.379879, 30.252914],
      [-81.355591, 30.162563],
      [-81.308978, 29.96944],
      [-81.295268, 29.928614],
      [-81.288955, 29.91518],
      [-81.27654, 29.90046],
      [-81.270442, 29.883106],
      [-81.264693, 29.858212],
      [-81.263396, 29.820663],
      [-81.256711, 29.784693],
      [-81.240924, 29.739218],
      [-81.229015, 29.714693],
      [-81.212878, 29.670667],
      [-81.324059, 29.62561],
      [-81.52366, 29.622432],
      [-81.523691, 29.624995],
      [-81.523866, 29.631538],
      [-81.52523, 29.759497],
      [-81.581207, 29.840176],
      [-81.60099, 29.956017],
      [-81.688876, 30.028566],
      [-81.680215, 30.12124],
      [-81.650514, 30.121541],
      [-81.623813, 30.133641],
      [-81.601212, 30.130541]]]},
   'id': '12109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12111',
    'STATE': '12',
    'COUNTY': '111',
    'NAME': 'St. Lucie',
    'LSAD': 'County',
    'CENSUSAREA': 571.926},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-80.677862, 27.205988],
      [-80.678609, 27.448598],
      [-80.679288, 27.455697],
      [-80.679821, 27.55847],
      [-80.321271, 27.557378],
      [-80.311757, 27.524625],
      [-80.30117, 27.500314],
      [-80.293171, 27.500314],
      [-80.265535, 27.420542],
      [-80.253665, 27.37979],
      [-80.233538, 27.341307],
      [-80.226753, 27.322736],
      [-80.199288, 27.263022],
      [-80.284771, 27.263723],
      [-80.28551, 27.206025],
      [-80.481413, 27.20637],
      [-80.481534, 27.20637],
      [-80.677862, 27.205988]]]},
   'id': '12111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12113',
    'STATE': '12',
    'COUNTY': '113',
    'NAME': 'Santa Rosa',
    'LSAD': 'County',
    'CENSUSAREA': 1011.605},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.919292, 30.370675],
      [-87.23297, 30.348999],
      [-87.1344, 30.420294],
      [-87.124968, 30.500196],
      [-87.258884, 30.611281],
      [-87.269407, 30.711687],
      [-87.308502, 30.72691],
      [-87.313611, 30.847266],
      [-87.286882, 30.925441],
      [-87.163084, 30.999051],
      [-87.162614, 30.999055],
      [-87.068633, 30.999143],
      [-87.064063, 30.999191],
      [-87.053737, 30.999131],
      [-87.039989, 30.999594],
      [-87.036366, 30.999348],
      [-87.027107, 30.999255],
      [-86.888135, 30.997577],
      [-86.872989, 30.997631],
      [-86.831934, 30.997378],
      [-86.830497, 30.997401],
      [-86.785918, 30.996978],
      [-86.785692, 30.996977],
      [-86.800283, 30.386477],
      [-86.850625, 30.380967],
      [-86.909679, 30.372423],
      [-86.919292, 30.370675]]]},
   'id': '12113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12115',
    'STATE': '12',
    'COUNTY': '115',
    'NAME': 'Sarasota',
    'LSAD': 'County',
    'CENSUSAREA': 555.868},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.171655, 27.032769],
      [-82.255237, 27.032975],
      [-82.255521, 26.945264],
      [-82.299896, 26.945564],
      [-82.322536, 26.945627],
      [-82.326294, 26.945846],
      [-82.339027, 26.945912],
      [-82.340238, 26.94556],
      [-82.375737, 26.946041],
      [-82.400618, 26.984937],
      [-82.419218, 27.020736],
      [-82.445718, 27.060634],
      [-82.460319, 27.099933],
      [-82.465319, 27.110732],
      [-82.46889, 27.113612],
      [-82.477019, 27.141231],
      [-82.512319, 27.207528],
      [-82.539719, 27.254326],
      [-82.54512, 27.261026],
      [-82.55902, 27.268826],
      [-82.569754, 27.279452],
      [-82.569248, 27.298588],
      [-82.57602, 27.309324],
      [-82.597629, 27.335754],
      [-82.623863, 27.362206],
      [-82.642821, 27.38972],
      [-82.642837, 27.389737],
      [-82.252264, 27.386243],
      [-82.253596, 27.208916],
      [-82.056497, 27.207769],
      [-82.057469, 27.032119],
      [-82.171655, 27.032769]]]},
   'id': '12115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12117',
    'STATE': '12',
    'COUNTY': '117',
    'NAME': 'Seminole',
    'LSAD': 'County',
    'CENSUSAREA': 309.221},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.210452, 28.802453],
      [-81.195021, 28.792302],
      [-81.183198, 28.797468],
      [-81.178936, 28.781886],
      [-81.10575, 28.828541],
      [-80.98725, 28.612997],
      [-81.326991, 28.610298],
      [-81.327911, 28.611268],
      [-81.32865, 28.639334],
      [-81.331099, 28.639581],
      [-81.357965, 28.639187],
      [-81.365289, 28.640468],
      [-81.457975, 28.640336],
      [-81.459501, 28.640285],
      [-81.459695, 28.644475],
      [-81.414446, 28.784955],
      [-81.375088, 28.863366],
      [-81.376006, 28.865901],
      [-81.373491, 28.87025],
      [-81.372009, 28.869039],
      [-81.369692, 28.870536],
      [-81.368608, 28.872921],
      [-81.366705, 28.87325],
      [-81.366158, 28.874744],
      [-81.366764, 28.876619],
      [-81.367052, 28.878315],
      [-81.36694, 28.879227],
      [-81.24997, 28.833106],
      [-81.229881, 28.832621],
      [-81.226003, 28.83263],
      [-81.222874, 28.826862],
      [-81.224596, 28.822039],
      [-81.215898, 28.814423],
      [-81.216345, 28.808302],
      [-81.210452, 28.802453]]]},
   'id': '12117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12119',
    'STATE': '12',
    'COUNTY': '119',
    'NAME': 'Sumter',
    'LSAD': 'County',
    'CENSUSAREA': 546.933},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.95419, 28.960053],
      [-81.95358, 28.82094],
      [-81.957641, 28.34518],
      [-82.055819, 28.312794],
      [-82.054694, 28.478397],
      [-82.054469, 28.521367],
      [-82.208184, 28.572054],
      [-82.263052, 28.667634],
      [-82.170848, 28.79019],
      [-82.311697, 28.960391],
      [-81.95419, 28.960053]]]},
   'id': '12119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12121',
    'STATE': '12',
    'COUNTY': '121',
    'NAME': 'Suwannee',
    'LSAD': 'County',
    'CENSUSAREA': 688.552},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.247253, 30.26067],
      [-83.170969, 30.385225],
      [-83.078706, 30.438116],
      [-83.002058, 30.429371],
      [-82.794594, 30.337024],
      [-82.800477, 29.932126],
      [-82.864246, 29.909836],
      [-82.879802, 29.886847],
      [-82.963112, 29.99305],
      [-83.160557, 30.109823],
      [-83.22636, 30.114621],
      [-83.247253, 30.26067]]]},
   'id': '12121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12123',
    'STATE': '12',
    'COUNTY': '123',
    'NAME': 'Taylor',
    'LSAD': 'County',
    'CENSUSAREA': 1043.305},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.856987, 30.273318],
      [-83.829465, 30.287863],
      [-83.820235, 30.30354],
      [-83.468768, 30.304212],
      [-83.469267, 30.260351],
      [-83.36726, 30.26044],
      [-83.37089, 29.887934],
      [-83.318859, 29.822623],
      [-83.373351, 29.665951],
      [-83.412278, 29.666922],
      [-83.412768, 29.668485],
      [-83.414701, 29.670536],
      [-83.436259, 29.677389],
      [-83.444635, 29.677155],
      [-83.448194, 29.675254],
      [-83.455356, 29.676444],
      [-83.483143, 29.690478],
      [-83.483567, 29.698542],
      [-83.493728, 29.708388],
      [-83.512716, 29.71648],
      [-83.537645, 29.72306],
      [-83.547172, 29.732223],
      [-83.554993, 29.7426],
      [-83.566018, 29.761434],
      [-83.578955, 29.768378],
      [-83.584716, 29.77608],
      [-83.586089, 29.784644],
      [-83.583045, 29.787307],
      [-83.581903, 29.792063],
      [-83.585899, 29.811754],
      [-83.595493, 29.827984],
      [-83.605244, 29.836387],
      [-83.618568, 29.842336],
      [-83.63798, 29.886073],
      [-83.659951, 29.899524],
      [-83.679219, 29.918513],
      [-83.686423, 29.923735],
      [-83.757249, 29.957943],
      [-83.788729, 29.976982],
      [-83.82869, 29.983187],
      [-83.845427, 29.998068],
      [-83.93151, 30.039068],
      [-83.933668, 30.041152],
      [-83.931879, 30.044175],
      [-83.933432, 30.046305],
      [-83.95968, 30.064943],
      [-83.991607, 30.08392],
      [-83.915533, 30.245386],
      [-83.856987, 30.273318]]]},
   'id': '12123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12125',
    'STATE': '12',
    'COUNTY': '125',
    'NAME': 'Union',
    'LSAD': 'County',
    'CENSUSAREA': 243.556},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.418728, 29.923093],
      [-82.529705, 29.940881],
      [-82.57601, 29.991468],
      [-82.458364, 30.136449],
      [-82.142578, 30.143117],
      [-82.307409, 29.956156],
      [-82.418728, 29.923093]]]},
   'id': '12125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12127',
    'STATE': '12',
    'COUNTY': '127',
    'NAME': 'Volusia',
    'LSAD': 'County',
    'CENSUSAREA': 1101.032},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.178936, 28.781886],
      [-81.183198, 28.797468],
      [-81.195021, 28.792302],
      [-81.210452, 28.802453],
      [-81.216345, 28.808302],
      [-81.215898, 28.814423],
      [-81.224596, 28.822039],
      [-81.222874, 28.826862],
      [-81.226003, 28.83263],
      [-81.229881, 28.832621],
      [-81.24997, 28.833106],
      [-81.36694, 28.879227],
      [-81.354554, 28.984375],
      [-81.502055, 29.097802],
      [-81.531262, 29.176621],
      [-81.61234, 29.202943],
      [-81.641916, 29.276766],
      [-81.648438, 29.290173],
      [-81.655677, 29.29994],
      [-81.667885, 29.301488],
      [-81.675523, 29.310628],
      [-81.680903, 29.32443],
      [-81.561194, 29.351686],
      [-81.540873, 29.356556],
      [-81.521764, 29.362194],
      [-81.518045, 29.361868],
      [-81.507989, 29.364511],
      [-81.450892, 29.378464],
      [-81.433992, 29.398552],
      [-81.41729, 29.261156],
      [-81.150081, 29.265957],
      [-81.155881, 29.410954],
      [-81.101923, 29.427055],
      [-81.046678, 29.307856],
      [-80.995423, 29.206052],
      [-80.966176, 29.14796],
      [-80.944376, 29.110861],
      [-80.907275, 29.064262],
      [-80.893675, 29.036163],
      [-80.878275, 29.010563],
      [-80.787021, 28.875266],
      [-80.732244, 28.791237],
      [-80.967895, 28.790197],
      [-80.964466, 28.612992],
      [-80.98725, 28.612997],
      [-81.10575, 28.828541],
      [-81.178936, 28.781886]]]},
   'id': '12127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12129',
    'STATE': '12',
    'COUNTY': '129',
    'NAME': 'Wakulla',
    'LSAD': 'County',
    'CENSUSAREA': 606.419},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.075539, 30.273617],
      [-84.076043, 30.095464],
      [-84.083057, 30.092286],
      [-84.087034, 30.092103],
      [-84.094725, 30.094964],
      [-84.10273, 30.093611],
      [-84.11384, 30.085478],
      [-84.124889, 30.090601],
      [-84.135683, 30.083018],
      [-84.157278, 30.072714],
      [-84.167881, 30.071422],
      [-84.179149, 30.073187],
      [-84.19853, 30.087937],
      [-84.201585, 30.087982],
      [-84.203349, 30.085875],
      [-84.20801, 30.084776],
      [-84.237014, 30.08556],
      [-84.245668, 30.093021],
      [-84.247491, 30.10114],
      [-84.256439, 30.103791],
      [-84.269363, 30.09766],
      [-84.272511, 30.092358],
      [-84.274003, 30.083079],
      [-84.270368, 30.075469],
      [-84.270792, 30.068094],
      [-84.277168, 30.060263],
      [-84.289727, 30.057197],
      [-84.297836, 30.057451],
      [-84.315344, 30.069492],
      [-84.342022, 30.063858],
      [-84.358923, 30.058224],
      [-84.365882, 30.024588],
      [-84.361962, 29.987739],
      [-84.359986, 29.984739],
      [-84.3477, 29.984123],
      [-84.343041, 29.9751],
      [-84.341261, 29.960775],
      [-84.54445, 30.01103],
      [-84.669258, 30.1252],
      [-84.713351, 30.30017],
      [-84.247673, 30.303493],
      [-84.241222, 30.274244],
      [-84.075539, 30.273617]]]},
   'id': '12129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12131',
    'STATE': '12',
    'COUNTY': '131',
    'NAME': 'Walton',
    'LSAD': 'County',
    'CENSUSAREA': 1037.625},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.992736, 30.38932],
      [-85.994712, 30.311702],
      [-85.99459, 30.290853],
      [-85.996083, 30.269148],
      [-85.999937, 30.27078],
      [-86.089963, 30.303569],
      [-86.222561, 30.343585],
      [-86.2987, 30.363049],
      [-86.364175, 30.374524],
      [-86.397325, 30.378553],
      [-86.395383, 30.433336],
      [-86.394174, 30.46674],
      [-86.393551, 30.493444],
      [-86.388646, 30.994181],
      [-86.374545, 30.994474],
      [-86.36927, 30.994477],
      [-86.364907, 30.994455],
      [-86.304596, 30.994029],
      [-86.289247, 30.993798],
      [-86.187246, 30.993992],
      [-86.180232, 30.994005],
      [-86.175204, 30.993798],
      [-86.168979, 30.993706],
      [-86.162886, 30.993682],
      [-86.056213, 30.993133],
      [-86.052462, 30.993247],
      [-86.035039, 30.99332],
      [-86.037591, 30.704572],
      [-85.844421, 30.70313],
      [-85.915297, 30.636427],
      [-85.858001, 30.496905],
      [-85.992736, 30.38932]]]},
   'id': '12131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US12133',
    'STATE': '12',
    'COUNTY': '133',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 582.803},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.434782, 30.56756],
      [-85.486358, 30.567574],
      [-85.487968, 30.436655],
      [-85.8535, 30.440623],
      [-85.992736, 30.38932],
      [-85.858001, 30.496905],
      [-85.915297, 30.636427],
      [-85.844421, 30.70313],
      [-85.821616, 30.790775],
      [-85.736051, 30.74637],
      [-85.619011, 30.743868],
      [-85.599934, 30.830552],
      [-85.482276, 30.829509],
      [-85.432274, 30.785457],
      [-85.434782, 30.56756]]]},
   'id': '12133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13001',
    'STATE': '13',
    'COUNTY': '001',
    'NAME': 'Appling',
    'LSAD': 'County',
    'CENSUSAREA': 507.081},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.52142, 31.710796],
      [-82.520251, 31.838388],
      [-82.431362, 31.837993],
      [-82.431531, 31.966182],
      [-82.225042, 31.913074],
      [-82.142843, 31.8993],
      [-82.048582, 31.827075],
      [-82.133013, 31.773404],
      [-82.132794, 31.471262],
      [-82.226585, 31.530699],
      [-82.52142, 31.710796]]]},
   'id': '13001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13003',
    'STATE': '13',
    'COUNTY': '003',
    'NAME': 'Atkinson',
    'LSAD': 'County',
    'CENSUSAREA': 339.382},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.971247, 31.183988],
      [-83.046885, 31.18368],
      [-83.033531, 31.27467],
      [-83.140483, 31.420395],
      [-82.844093, 31.403328],
      [-82.817544, 31.364486],
      [-82.628975, 31.36393],
      [-82.629622, 31.274726],
      [-82.699206, 31.278104],
      [-82.671669, 31.183739],
      [-82.971247, 31.183988]]]},
   'id': '13003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13005',
    'STATE': '13',
    'COUNTY': '005',
    'NAME': 'Bacon',
    'LSAD': 'County',
    'CENSUSAREA': 258.576},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.52142, 31.710796],
      [-82.226585, 31.530699],
      [-82.344843, 31.43013],
      [-82.417246, 31.417119],
      [-82.494718, 31.46869],
      [-82.597509, 31.469293],
      [-82.627342, 31.672672],
      [-82.521393, 31.672512],
      [-82.52142, 31.710796]]]},
   'id': '13005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13007',
    'STATE': '13',
    'COUNTY': '007',
    'NAME': 'Baker',
    'LSAD': 'County',
    'CENSUSAREA': 341.944},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.637579, 31.433926],
      [-84.429876, 31.436661],
      [-84.141124, 31.440179],
      [-84.20066, 31.355525],
      [-84.340552, 31.305341],
      [-84.40435, 31.199143],
      [-84.48331, 31.155536],
      [-84.508078, 31.0784],
      [-84.542653, 31.079029],
      [-84.537101, 31.255932],
      [-84.641673, 31.258967],
      [-84.637579, 31.433926]]]},
   'id': '13007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13009',
    'STATE': '13',
    'COUNTY': '009',
    'NAME': 'Baldwin',
    'LSAD': 'County',
    'CENSUSAREA': 257.844},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.159585, 33.002803],
      [-83.357685, 32.926141],
      [-83.380383, 32.998077],
      [-83.414997, 33.112833],
      [-83.42909, 33.185352],
      [-83.274108, 33.187238],
      [-83.097507, 33.15141],
      [-83.100834, 33.049849],
      [-83.052197, 33.080682],
      [-83.073648, 32.946562],
      [-83.159585, 33.002803]]]},
   'id': '13009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13011',
    'STATE': '13',
    'COUNTY': '011',
    'NAME': 'Banks',
    'LSAD': 'County',
    'CENSUSAREA': 232.091},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.355269, 34.22373],
      [-83.372429, 34.205933],
      [-83.400125, 34.200525],
      [-83.402428, 34.197499],
      [-83.480361, 34.262038],
      [-83.620115, 34.295276],
      [-83.669473, 34.366689],
      [-83.615251, 34.431748],
      [-83.537538, 34.491725],
      [-83.45977, 34.481142],
      [-83.413586, 34.468014],
      [-83.398396, 34.460883],
      [-83.393915, 34.324801],
      [-83.355269, 34.22373]]]},
   'id': '13011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13013',
    'STATE': '13',
    'COUNTY': '013',
    'NAME': 'Barrow',
    'LSAD': 'County',
    'CENSUSAREA': 160.309},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.647031, 33.906198],
      [-83.763835, 33.896682],
      [-83.799104, 33.929844],
      [-83.869115, 34.004316],
      [-83.817682, 34.127493],
      [-83.767532, 34.066448],
      [-83.563215, 34.031757],
      [-83.537385, 33.965912],
      [-83.647031, 33.906198]]]},
   'id': '13013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13015',
    'STATE': '13',
    'COUNTY': '015',
    'NAME': 'Bartow',
    'LSAD': 'County',
    'CENSUSAREA': 459.544},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.005775, 34.392446],
      [-84.862863, 34.396601],
      [-84.653232, 34.41259],
      [-84.659234, 34.077999],
      [-84.672635, 34.078199],
      [-84.673935, 34.078299],
      [-84.674935, 34.078199],
      [-84.676415, 34.078298],
      [-84.682835, 34.078399],
      [-84.684745, 34.0785],
      [-84.687222, 34.0785],
      [-84.721936, 34.079099],
      [-84.722636, 34.079199],
      [-84.729235, 34.079199],
      [-84.737836, 34.079399],
      [-84.922742, 34.082497],
      [-85.046871, 34.096412],
      [-85.005775, 34.392446]]]},
   'id': '13015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13017',
    'STATE': '13',
    'COUNTY': '017',
    'NAME': 'Ben Hill',
    'LSAD': 'County',
    'CENSUSAREA': 250.121},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.177469, 31.847857],
      [-82.995698, 31.780983],
      [-82.99836, 31.673164],
      [-83.176376, 31.678382],
      [-83.177218, 31.651691],
      [-83.325617, 31.680603],
      [-83.325296, 31.756584],
      [-83.453634, 31.757861],
      [-83.480176, 31.847312],
      [-83.177469, 31.847857]]]},
   'id': '13017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13019',
    'STATE': '13',
    'COUNTY': '019',
    'NAME': 'Berrien',
    'LSAD': 'County',
    'CENSUSAREA': 451.897},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.197971, 31.025405],
      [-83.273731, 31.026658],
      [-83.280476, 31.02658],
      [-83.295052, 31.027278],
      [-83.305611, 31.167233],
      [-83.434492, 31.350361],
      [-83.338728, 31.475991],
      [-83.146085, 31.472088],
      [-83.145587, 31.472276],
      [-83.145874, 31.468926],
      [-83.150846, 31.462262],
      [-83.150474, 31.456787],
      [-83.144891, 31.454633],
      [-83.138618, 31.441528],
      [-83.139448, 31.436466],
      [-83.135927, 31.43051],
      [-83.138998, 31.427784],
      [-83.140483, 31.420395],
      [-83.033531, 31.27467],
      [-83.046885, 31.18368],
      [-83.038246, 31.146705],
      [-83.165072, 31.147198],
      [-83.197971, 31.025405]]]},
   'id': '13019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13021',
    'STATE': '13',
    'COUNTY': '021',
    'NAME': 'Bibb',
    'LSAD': 'County',
    'CENSUSAREA': 249.762},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.710685, 32.952792],
      [-83.658211, 32.887913],
      [-83.513511, 32.844868],
      [-83.502603, 32.801119],
      [-83.597656, 32.664338],
      [-83.701152, 32.692169],
      [-83.824398, 32.741861],
      [-83.891922, 32.848351],
      [-83.710685, 32.952792]]]},
   'id': '13021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13023',
    'STATE': '13',
    'COUNTY': '023',
    'NAME': 'Bleckley',
    'LSAD': 'County',
    'CENSUSAREA': 215.87},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.226536, 32.584201],
      [-83.138991, 32.423069],
      [-83.173252, 32.452533],
      [-83.30475, 32.341958],
      [-83.346528, 32.272489],
      [-83.498039, 32.401715],
      [-83.482648, 32.424536],
      [-83.497923, 32.452198],
      [-83.226536, 32.584201]]]},
   'id': '13023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13025',
    'STATE': '13',
    'COUNTY': '025',
    'NAME': 'Brantley',
    'LSAD': 'County',
    'CENSUSAREA': 442.362},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.936006, 31.047993],
      [-82.06087, 31.075809],
      [-82.131698, 31.010714],
      [-82.208262, 31.084768],
      [-82.208732, 31.170938],
      [-82.284561, 31.224449],
      [-82.194824, 31.20759],
      [-82.100067, 31.27671],
      [-82.006775, 31.277063],
      [-82.041129, 31.373721],
      [-81.923238, 31.345875],
      [-81.801052, 31.363737],
      [-81.731694, 31.330048],
      [-81.766322, 31.169595],
      [-81.936006, 31.047993]]]},
   'id': '13025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13027',
    'STATE': '13',
    'COUNTY': '027',
    'NAME': 'Brooks',
    'LSAD': 'County',
    'CENSUSAREA': 493.046},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.574857, 31.078135],
      [-83.475617, 31.031964],
      [-83.476889, 31.030987],
      [-83.473792, 31.031276],
      [-83.47326, 31.028452],
      [-83.472275, 31.029742],
      [-83.470776, 31.028531],
      [-83.468295, 31.028481],
      [-83.471596, 31.026583],
      [-83.471324, 31.02386],
      [-83.467778, 31.021635],
      [-83.465898, 31.018502],
      [-83.466784, 31.013886],
      [-83.464269, 31.011093],
      [-83.463689, 31.005935],
      [-83.461306, 31.005709],
      [-83.460412, 31.002812],
      [-83.458129, 31.000859],
      [-83.358989, 30.83671],
      [-83.449293, 30.817957],
      [-83.482461, 30.756931],
      [-83.357703, 30.637359],
      [-83.37946, 30.63868],
      [-83.390062, 30.639333],
      [-83.429477, 30.641519],
      [-83.429584, 30.641496],
      [-83.440021, 30.642023],
      [-83.448895, 30.64241],
      [-83.611667, 30.651255],
      [-83.61172, 30.651258],
      [-83.674058, 30.654747],
      [-83.676773, 30.654905],
      [-83.743729, 30.658396],
      [-83.736158, 31.037679],
      [-83.573959, 31.033875],
      [-83.574857, 31.078135]]]},
   'id': '13027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13029',
    'STATE': '13',
    'COUNTY': '029',
    'NAME': 'Bryan',
    'LSAD': 'County',
    'CENSUSAREA': 435.967},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.391698, 32.095886],
      [-81.323529, 32.019854],
      [-81.285467, 31.942994],
      [-81.138533, 31.855921],
      [-81.177027, 31.816113],
      [-81.154686, 31.726203],
      [-81.16067, 31.728144],
      [-81.192784, 31.733245],
      [-81.198394, 31.72607],
      [-81.355837, 31.8149],
      [-81.407737, 31.944302],
      [-81.475761, 31.974255],
      [-81.593429, 31.97135],
      [-81.604431, 32.010948],
      [-81.718658, 32.089351],
      [-81.780858, 32.15289],
      [-81.43583, 32.241289],
      [-81.391698, 32.095886]]]},
   'id': '13029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13031',
    'STATE': '13',
    'COUNTY': '031',
    'NAME': 'Bulloch',
    'LSAD': 'County',
    'CENSUSAREA': 672.809},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.780858, 32.15289],
      [-81.81628, 32.23747],
      [-81.969069, 32.268783],
      [-81.918671, 32.41541],
      [-82.030233, 32.53877],
      [-82.026842, 32.555163],
      [-82.001236, 32.60691],
      [-81.841005, 32.649093],
      [-81.689643, 32.54629],
      [-81.548006, 32.489286],
      [-81.542716, 32.417446],
      [-81.43583, 32.241289],
      [-81.780858, 32.15289]]]},
   'id': '13031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13033',
    'STATE': '13',
    'COUNTY': '033',
    'NAME': 'Burke',
    'LSAD': 'County',
    'CENSUSAREA': 826.968},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.851975, 33.247408],
      [-81.772251, 33.18012],
      [-81.696934, 33.116551],
      [-81.620287, 33.095408],
      [-81.615756, 33.092534],
      [-81.541831, 33.045654],
      [-81.767553, 32.909411],
      [-81.857976, 32.953882],
      [-82.081331, 32.916782],
      [-82.144977, 32.812741],
      [-82.316512, 32.835772],
      [-82.272353, 32.937796],
      [-82.29118, 33.062827],
      [-82.232554, 33.231211],
      [-82.26758, 33.267397],
      [-82.17424, 33.296771],
      [-82.088162, 33.230245],
      [-81.851975, 33.247408]]]},
   'id': '13033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13035',
    'STATE': '13',
    'COUNTY': '035',
    'NAME': 'Butts',
    'LSAD': 'County',
    'CENSUSAREA': 184.393},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.863058, 33.368278],
      [-83.814103, 33.242134],
      [-83.822261, 33.180238],
      [-84.041498, 33.202629],
      [-84.123767, 33.202824],
      [-84.102582, 33.298191],
      [-84.042663, 33.333501],
      [-84.044597, 33.333495],
      [-84.044594, 33.333656],
      [-83.923913, 33.444194],
      [-83.863058, 33.368278]]]},
   'id': '13035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13037',
    'STATE': '13',
    'COUNTY': '037',
    'NAME': 'Calhoun',
    'LSAD': 'County',
    'CENSUSAREA': 280.367},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.546854, 31.621199],
      [-84.450416, 31.621255],
      [-84.450398, 31.621868],
      [-84.429876, 31.436661],
      [-84.637579, 31.433926],
      [-84.789032, 31.436356],
      [-84.819807, 31.501192],
      [-84.817843, 31.619771],
      [-84.546854, 31.621199]]]},
   'id': '13037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13039',
    'STATE': '13',
    'COUNTY': '039',
    'NAME': 'Camden',
    'LSAD': 'County',
    'CENSUSAREA': 613.025},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.906014, 30.822176],
      [-81.892028, 30.960474],
      [-81.936006, 31.047993],
      [-81.766322, 31.169595],
      [-81.572692, 31.097269],
      [-81.44317, 31.016661],
      [-81.451444, 31.015515],
      [-81.457795, 31.010259],
      [-81.45924, 31.005692],
      [-81.469298, 30.996028],
      [-81.490586, 30.984952],
      [-81.493651, 30.977528],
      [-81.486966, 30.969602],
      [-81.475789, 30.965976],
      [-81.472321, 30.969899],
      [-81.466814, 30.97091],
      [-81.453568, 30.965573],
      [-81.447388, 30.956732],
      [-81.426929, 30.956615],
      [-81.420108, 30.974076],
      [-81.415825, 30.977192],
      [-81.408484, 30.977718],
      [-81.403409, 30.957914],
      [-81.405153, 30.908203],
      [-81.428577, 30.836336],
      [-81.430835, 30.831156],
      [-81.44013, 30.821369],
      [-81.446927, 30.81039],
      [-81.455287, 30.79093],
      [-81.460061, 30.769912],
      [-81.461065, 30.753684],
      [-81.45947, 30.741979],
      [-81.449375, 30.715601],
      [-81.444124, 30.709714],
      [-81.544618, 30.712636],
      [-81.606221, 30.718135],
      [-81.624298, 30.736194],
      [-81.637222, 30.733835],
      [-81.719927, 30.744634],
      [-81.732627, 30.749934],
      [-81.741278, 30.762681],
      [-81.759338, 30.771377],
      [-81.806652, 30.789683],
      [-81.827014, 30.788933],
      [-81.840375, 30.786384],
      [-81.868608, 30.792754],
      [-81.906014, 30.822176]]]},
   'id': '13039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13043',
    'STATE': '13',
    'COUNTY': '043',
    'NAME': 'Candler',
    'LSAD': 'County',
    'CENSUSAREA': 243.044},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.969069, 32.268783],
      [-81.999843, 32.276189],
      [-82.025339, 32.278883],
      [-82.232788, 32.318838],
      [-82.252757, 32.35331],
      [-82.148338, 32.520429],
      [-82.030233, 32.53877],
      [-81.918671, 32.41541],
      [-81.969069, 32.268783]]]},
   'id': '13043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13045',
    'STATE': '13',
    'COUNTY': '045',
    'NAME': 'Carroll',
    'LSAD': 'County',
    'CENSUSAREA': 499.076},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.337974, 33.653111],
      [-85.050889, 33.714632],
      [-85.037926, 33.811942],
      [-84.918629, 33.786328],
      [-84.901688, 33.780703],
      [-84.902546, 33.661066],
      [-84.905788, 33.573378],
      [-84.808934, 33.574085],
      [-84.850713, 33.511457],
      [-85.015358, 33.425506],
      [-85.293902, 33.428079],
      [-85.304439, 33.482884],
      [-85.313999, 33.529807],
      [-85.314091, 33.530218],
      [-85.314994, 33.535898],
      [-85.322497, 33.574167],
      [-85.337974, 33.653111]]]},
   'id': '13045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13047',
    'STATE': '13',
    'COUNTY': '047',
    'NAME': 'Catoosa',
    'LSAD': 'County',
    'CENSUSAREA': 162.159},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.144789, 34.767639],
      [-85.201856, 34.77508],
      [-85.20218, 34.854451],
      [-85.264762, 34.854277],
      [-85.265055, 34.985075],
      [-85.254955, 34.985175],
      [-85.235555, 34.985475],
      [-85.230354, 34.985475],
      [-85.221854, 34.985475],
      [-85.220554, 34.985575],
      [-85.217854, 34.985675],
      [-85.216554, 34.985675],
      [-85.185905, 34.985995],
      [-85.180553, 34.986075],
      [-85.045183, 34.986883],
      [-85.045052, 34.986859],
      [-84.97986, 34.987647],
      [-85.061648, 34.819478],
      [-85.144789, 34.767639]]]},
   'id': '13047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13049',
    'STATE': '13',
    'COUNTY': '049',
    'NAME': 'Charlton',
    'LSAD': 'County',
    'CENSUSAREA': 773.576},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.131698, 31.010714],
      [-82.06087, 31.075809],
      [-81.936006, 31.047993],
      [-81.892028, 30.960474],
      [-81.906014, 30.822176],
      [-81.999836, 30.788348],
      [-82.023213, 30.781987],
      [-82.050432, 30.676266],
      [-82.049401, 30.655296],
      [-82.037609, 30.633271],
      [-82.01329, 30.595665],
      [-82.005477, 30.563495],
      [-82.01699, 30.519358],
      [-82.016103, 30.497355],
      [-82.050031, 30.36249],
      [-82.050069, 30.362338],
      [-82.124835, 30.366564],
      [-82.165192, 30.358035],
      [-82.171508, 30.359869],
      [-82.189583, 30.376213],
      [-82.204151, 30.40133],
      [-82.210291, 30.42459],
      [-82.20604, 30.455507],
      [-82.21233, 30.499558],
      [-82.214385, 30.566958],
      [-82.214847, 30.567009],
      [-82.149872, 30.784336],
      [-82.420442, 30.795229],
      [-82.415603, 31.01359],
      [-82.131698, 31.010714]]]},
   'id': '13049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13051',
    'STATE': '13',
    'COUNTY': '051',
    'NAME': 'Chatham',
    'LSAD': 'County',
    'CENSUSAREA': 426.437},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.004115, 32.072225],
      [-80.885517, 32.0346],
      [-80.859111, 32.023693],
      [-80.852276, 32.026676],
      [-80.84313, 32.024226],
      [-80.840549, 32.011306],
      [-80.841913, 32.002643],
      [-80.848441, 31.988279],
      [-80.862814, 31.969346],
      [-80.882814, 31.959075],
      [-80.897687, 31.949065],
      [-80.911207, 31.943769],
      [-80.929101, 31.944964],
      [-80.930279, 31.956705],
      [-80.948491, 31.95723],
      [-80.972392, 31.94127],
      [-80.975714, 31.923602],
      [-80.968494, 31.915822],
      [-80.954469, 31.911768],
      [-80.941359, 31.912984],
      [-80.934508, 31.90918],
      [-80.947294, 31.89621],
      [-80.971434, 31.877941],
      [-80.99269, 31.857641],
      [-81.000317, 31.856744],
      [-81.014478, 31.867474],
      [-81.041548, 31.876198],
      [-81.065255, 31.877095],
      [-81.058596, 31.857811],
      [-81.05907, 31.850106],
      [-81.06279, 31.84474],
      [-81.076178, 31.836132],
      [-81.075812, 31.829031],
      [-81.057181, 31.822687],
      [-81.050946, 31.822383],
      [-81.04794, 31.824881],
      [-81.039808, 31.823],
      [-81.036958, 31.819558],
      [-81.036873, 31.812721],
      [-81.047345, 31.802865],
      [-81.068116, 31.768735],
      [-81.077057, 31.761256],
      [-81.097402, 31.753126],
      [-81.130634, 31.722692],
      [-81.138448, 31.720934],
      [-81.154686, 31.726203],
      [-81.177027, 31.816113],
      [-81.138533, 31.855921],
      [-81.285467, 31.942994],
      [-81.323529, 32.019854],
      [-81.391698, 32.095886],
      [-81.195634, 32.237499],
      [-81.125457, 32.22713],
      [-81.122034, 32.161803],
      [-81.117234, 32.117605],
      [-81.113334, 32.113205],
      [-81.06185, 32.087935],
      [-81.042833, 32.084508],
      [-81.004115, 32.072225]]]},
   'id': '13051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13053',
    'STATE': '13',
    'COUNTY': '053',
    'NAME': 'Chattahoochee',
    'LSAD': 'County',
    'CENSUSAREA': 248.736},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.923638, 32.231539],
      [-84.92165, 32.233306],
      [-84.909052, 32.26354],
      [-84.916611, 32.281177],
      [-84.93868, 32.300708],
      [-85.001874, 32.322015],
      [-85.007103, 32.328362],
      [-85.008096, 32.336677],
      [-84.987386, 32.381201],
      [-84.987278, 32.381623],
      [-84.848664, 32.41464],
      [-84.844216, 32.413248],
      [-84.83436, 32.413216],
      [-84.823992, 32.413967],
      [-84.814632, 32.414448],
      [-84.811384, 32.418608],
      [-84.809432, 32.420864],
      [-84.805175, 32.418912],
      [-84.798647, 32.415968],
      [-84.791463, 32.414783],
      [-84.788471, 32.418031],
      [-84.782983, 32.421711],
      [-84.781559, 32.422863],
      [-84.778359, 32.423054],
      [-84.774567, 32.421839],
      [-84.769431, 32.422319],
      [-84.69451, 32.518732],
      [-84.686265, 32.519624],
      [-84.678157, 32.518915],
      [-84.661721, 32.529148],
      [-84.658017, 32.528759],
      [-84.648977, 32.534956],
      [-84.637323, 32.534855],
      [-84.657325, 32.49494],
      [-84.65892, 32.232852],
      [-84.923638, 32.231539]]]},
   'id': '13053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13055',
    'STATE': '13',
    'COUNTY': '055',
    'NAME': 'Chattooga',
    'LSAD': 'County',
    'CENSUSAREA': 313.338},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.513699, 34.524133],
      [-85.513709, 34.52417],
      [-85.51393, 34.525192],
      [-85.527127, 34.588684],
      [-85.107748, 34.587483],
      [-85.180548, 34.435996],
      [-85.334881, 34.369748],
      [-85.387351, 34.286097],
      [-85.462304, 34.286365],
      [-85.502316, 34.473954],
      [-85.502454, 34.474527],
      [-85.508384, 34.501212],
      [-85.512108, 34.518252],
      [-85.513699, 34.524133]]]},
   'id': '13055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13057',
    'STATE': '13',
    'COUNTY': '057',
    'NAME': 'Cherokee',
    'LSAD': 'County',
    'CENSUSAREA': 421.674},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.258075, 34.335156],
      [-84.258743, 34.185909],
      [-84.328263, 34.186144],
      [-84.418927, 34.073298],
      [-84.521992, 34.075399],
      [-84.659234, 34.077999],
      [-84.653232, 34.41259],
      [-84.58263, 34.381492],
      [-84.257586, 34.380992],
      [-84.257652, 34.375111],
      [-84.257812, 34.372631],
      [-84.258075, 34.335156]]]},
   'id': '13057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13059',
    'STATE': '13',
    'COUNTY': '059',
    'NAME': 'Clarke',
    'LSAD': 'County',
    'CENSUSAREA': 119.2},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.360028, 34.040572],
      [-83.258413, 33.999098],
      [-83.24086, 33.90443],
      [-83.275933, 33.847977],
      [-83.537385, 33.965912],
      [-83.360028, 34.040572]]]},
   'id': '13059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13061',
    'STATE': '13',
    'COUNTY': '061',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 195.381},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.817843, 31.619771],
      [-84.819807, 31.501192],
      [-85.029227, 31.486071],
      [-85.046859, 31.517451],
      [-85.041305, 31.540987],
      [-85.057473, 31.618624],
      [-85.059534, 31.621717],
      [-85.065236, 31.624351],
      [-85.087029, 31.640966],
      [-85.12553, 31.694965],
      [-85.12653, 31.716764],
      [-85.12223, 31.722764],
      [-85.11893, 31.732664],
      [-85.124501, 31.763081],
      [-85.12523, 31.767063],
      [-85.130731, 31.772263],
      [-85.138668, 31.780425],
      [-84.95864, 31.777854],
      [-84.942353, 31.618669],
      [-84.817843, 31.619771]]]},
   'id': '13061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13063',
    'STATE': '13',
    'COUNTY': '063',
    'NAME': 'Clayton',
    'LSAD': 'County',
    'CENSUSAREA': 141.57},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.388118, 33.352465],
      [-84.381759, 33.463414],
      [-84.458665, 33.550933],
      [-84.458579, 33.556242],
      [-84.458924, 33.559759],
      [-84.458927, 33.565911],
      [-84.45863, 33.572107],
      [-84.458399, 33.572743],
      [-84.458627, 33.586456],
      [-84.458514, 33.608625],
      [-84.457726, 33.64887],
      [-84.365325, 33.647809],
      [-84.360224, 33.647909],
      [-84.350224, 33.647908],
      [-84.282619, 33.647009],
      [-84.281273, 33.647411],
      [-84.283518, 33.502514],
      [-84.353584, 33.436165],
      [-84.3544, 33.352514],
      [-84.388118, 33.352465]]]},
   'id': '13063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13065',
    'STATE': '13',
    'COUNTY': '065',
    'NAME': 'Clinch',
    'LSAD': 'County',
    'CENSUSAREA': 800.222},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.459792, 30.584287],
      [-82.524899, 30.588189],
      [-82.536233, 30.588885],
      [-82.545055, 30.589361],
      [-82.553159, 30.589934],
      [-82.565476, 30.590622],
      [-82.569237, 30.590965],
      [-82.584002, 30.591796],
      [-82.604005, 30.713676],
      [-82.766159, 30.732404],
      [-82.846353, 30.834988],
      [-82.971336, 30.869392],
      [-82.971247, 31.183988],
      [-82.671669, 31.183739],
      [-82.592071, 31.018487],
      [-82.490558, 30.963166],
      [-82.495476, 30.819553],
      [-82.435852, 30.820068],
      [-82.418915, 30.581745],
      [-82.459544, 30.584272],
      [-82.459792, 30.584287]]]},
   'id': '13065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13067',
    'STATE': '13',
    'COUNTY': '067',
    'NAME': 'Cobb',
    'LSAD': 'County',
    'CENSUSAREA': 339.549},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.724435, 33.881859],
      [-84.737836, 34.079399],
      [-84.729235, 34.079199],
      [-84.722636, 34.079199],
      [-84.721936, 34.079099],
      [-84.687222, 34.0785],
      [-84.684745, 34.0785],
      [-84.682835, 34.078399],
      [-84.676415, 34.078298],
      [-84.674935, 34.078199],
      [-84.673935, 34.078299],
      [-84.672635, 34.078199],
      [-84.659234, 34.077999],
      [-84.521992, 34.075399],
      [-84.418927, 34.073298],
      [-84.383027, 33.9638],
      [-84.442708, 33.901543],
      [-84.480134, 33.817319],
      [-84.578132, 33.743507],
      [-84.619892, 33.805024],
      [-84.724139, 33.80617],
      [-84.723969, 33.815306],
      [-84.725181, 33.816995],
      [-84.725035, 33.819905],
      [-84.724435, 33.881859]]]},
   'id': '13067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13069',
    'STATE': '13',
    'COUNTY': '069',
    'NAME': 'Coffee',
    'LSAD': 'County',
    'CENSUSAREA': 575.097},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.627342, 31.672672],
      [-82.597509, 31.469293],
      [-82.628181, 31.469351],
      [-82.628975, 31.36393],
      [-82.817544, 31.364486],
      [-82.844093, 31.403328],
      [-83.140483, 31.420395],
      [-83.138998, 31.427784],
      [-83.135927, 31.43051],
      [-83.139448, 31.436466],
      [-83.138618, 31.441528],
      [-83.144891, 31.454633],
      [-83.150474, 31.456787],
      [-83.150846, 31.462262],
      [-83.145874, 31.468926],
      [-83.145587, 31.472276],
      [-82.99836, 31.673164],
      [-82.995698, 31.780983],
      [-82.86309, 31.783005],
      [-82.836366, 31.816154],
      [-82.836633, 31.671398],
      [-82.627342, 31.672672]]]},
   'id': '13069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13071',
    'STATE': '13',
    'COUNTY': '071',
    'NAME': 'Colquitt',
    'LSAD': 'County',
    'CENSUSAREA': 544.153},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.99943, 31.334966],
      [-83.65409, 31.330661],
      [-83.512607, 31.327405],
      [-83.50981, 31.206181],
      [-83.574857, 31.078135],
      [-83.573959, 31.033875],
      [-83.736158, 31.037679],
      [-84.003876, 31.041582],
      [-84.003627, 31.07729],
      [-83.99943, 31.334966]]]},
   'id': '13071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13073',
    'STATE': '13',
    'COUNTY': '073',
    'NAME': 'Columbia',
    'LSAD': 'County',
    'CENSUSAREA': 290.09},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.11663, 33.589723],
      [-82.098816, 33.586358],
      [-82.069039, 33.575382],
      [-82.046335, 33.56383],
      [-82.028238, 33.544934],
      [-82.294179, 33.354635],
      [-82.436814, 33.549658],
      [-82.425328, 33.650629],
      [-82.306414, 33.700644],
      [-82.218649, 33.686299],
      [-82.196583, 33.630582],
      [-82.179854, 33.615945],
      [-82.135046, 33.591044],
      [-82.12908, 33.589925],
      [-82.124841, 33.591274],
      [-82.11663, 33.589723]]]},
   'id': '13073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13075',
    'STATE': '13',
    'COUNTY': '075',
    'NAME': 'Cook',
    'LSAD': 'County',
    'CENSUSAREA': 227.162},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.295052, 31.027278],
      [-83.475617, 31.031964],
      [-83.574857, 31.078135],
      [-83.50981, 31.206181],
      [-83.512607, 31.327405],
      [-83.460644, 31.326263],
      [-83.434492, 31.350361],
      [-83.305611, 31.167233],
      [-83.295052, 31.027278]]]},
   'id': '13075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13077',
    'STATE': '13',
    'COUNTY': '077',
    'NAME': 'Coweta',
    'LSAD': 'County',
    'CENSUSAREA': 440.892},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.939015, 33.224693],
      [-85.015358, 33.425506],
      [-84.850713, 33.511457],
      [-84.60954, 33.502511],
      [-84.62722, 33.440078],
      [-84.497527, 33.257422],
      [-84.508926, 33.245222],
      [-84.50029, 33.233444],
      [-84.502352, 33.221055],
      [-84.85236, 33.22359],
      [-84.862359, 33.191173],
      [-84.939015, 33.224693]]]},
   'id': '13077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13079',
    'STATE': '13',
    'COUNTY': '079',
    'NAME': 'Crawford',
    'LSAD': 'County',
    'CENSUSAREA': 324.888},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.70109, 32.691598],
      [-83.766787, 32.692622],
      [-84.003363, 32.529927],
      [-84.104966, 32.673385],
      [-84.202628, 32.690018],
      [-84.124275, 32.849562],
      [-83.891922, 32.848351],
      [-83.824398, 32.741861],
      [-83.701152, 32.692169],
      [-83.70109, 32.691598]]]},
   'id': '13079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13081',
    'STATE': '13',
    'COUNTY': '081',
    'NAME': 'Crisp',
    'LSAD': 'County',
    'CENSUSAREA': 272.583},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.961278, 32.030595],
      [-83.609663, 32.027938],
      [-83.612256, 31.854089],
      [-83.612642, 31.804128],
      [-83.802223, 31.803495],
      [-83.939437, 31.847929],
      [-83.938192, 31.849489],
      [-83.9378, 31.854805],
      [-83.936736, 31.858043],
      [-83.932321, 31.859235],
      [-83.926524, 31.863292],
      [-83.928694, 31.871849],
      [-83.931152, 31.876984],
      [-83.934061, 31.88139],
      [-83.932091, 31.884632],
      [-83.928689, 31.886864],
      [-83.932301, 31.893801],
      [-83.932021, 31.898759],
      [-83.927383, 31.904142],
      [-83.925103, 31.905668],
      [-83.922494, 31.909653],
      [-83.961278, 32.030595]]]},
   'id': '13081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13083',
    'STATE': '13',
    'COUNTY': '083',
    'NAME': 'Dade',
    'LSAD': 'County',
    'CENSUSAREA': 173.981},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.605165, 34.984678],
      [-85.474472, 34.983972],
      [-85.363919, 34.983375],
      [-85.450561, 34.831677],
      [-85.450409, 34.759241],
      [-85.534423, 34.623789],
      [-85.541264, 34.656701],
      [-85.541267, 34.656783],
      [-85.552454, 34.708138],
      [-85.552482, 34.708321],
      [-85.583145, 34.860371],
      [-85.595163, 34.924171],
      [-85.595191, 34.924331],
      [-85.605165, 34.984678]]]},
   'id': '13083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13085',
    'STATE': '13',
    'COUNTY': '085',
    'NAME': 'Dawson',
    'LSAD': 'County',
    'CENSUSAREA': 210.83},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.258075, 34.335156],
      [-84.257812, 34.372631],
      [-84.257652, 34.375111],
      [-84.257586, 34.380992],
      [-84.256867, 34.467327],
      [-84.319679, 34.467857],
      [-84.345553, 34.562735],
      [-84.255112, 34.568333],
      [-84.196754, 34.617924],
      [-84.189026, 34.608109],
      [-84.188557, 34.602692],
      [-84.19104, 34.539181],
      [-84.102037, 34.464544],
      [-83.980649, 34.418389],
      [-83.957077, 34.334011],
      [-84.258075, 34.335156]]]},
   'id': '13085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13087',
    'STATE': '13',
    'COUNTY': '087',
    'NAME': 'Decatur',
    'LSAD': 'County',
    'CENSUSAREA': 597.14},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.508078, 31.0784],
      [-84.376612, 31.078883],
      [-84.380719, 30.689673],
      [-84.535042, 30.696523],
      [-84.53937, 30.696775],
      [-84.606249, 30.699872],
      [-84.606386, 30.699865],
      [-84.863465, 30.711487],
      [-84.755917, 30.88527],
      [-84.730855, 31.06919],
      [-84.542653, 31.079029],
      [-84.508078, 31.0784]]]},
   'id': '13087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13089',
    'STATE': '13',
    'COUNTY': '089',
    'NAME': 'DeKalb',
    'LSAD': 'County',
    'CENSUSAREA': 267.582},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.254149, 33.647045],
      [-84.281273, 33.647411],
      [-84.282619, 33.647009],
      [-84.350224, 33.647908],
      [-84.349799, 33.664035],
      [-84.348325, 33.852503],
      [-84.348138, 33.857692],
      [-84.348225, 33.859502],
      [-84.348525, 33.861903],
      [-84.348125, 33.864903],
      [-84.348325, 33.867903],
      [-84.348125, 33.879203],
      [-84.348425, 33.881902],
      [-84.348224, 33.8929],
      [-84.348225, 33.904802],
      [-84.348025, 33.918302],
      [-84.347825, 33.918902],
      [-84.347925, 33.927001],
      [-84.347823, 33.938017],
      [-84.276822, 33.9577],
      [-84.275722, 33.954201],
      [-84.271922, 33.9559],
      [-84.266306, 33.947577],
      [-84.272216, 33.944853],
      [-84.265337, 33.932576],
      [-84.259011, 33.91882],
      [-84.256022, 33.914401],
      [-84.250413, 33.910812],
      [-84.23222, 33.902002],
      [-84.21663, 33.884976],
      [-84.20472, 33.877003],
      [-84.203519, 33.873003],
      [-84.187005, 33.865515],
      [-84.179418, 33.864403],
      [-84.172139, 33.857516],
      [-84.023713, 33.752808],
      [-84.056614, 33.726608],
      [-84.104334, 33.636025],
      [-84.184143, 33.646157],
      [-84.223952, 33.646572],
      [-84.224235, 33.630657],
      [-84.245453, 33.63073],
      [-84.254149, 33.647045]]]},
   'id': '13089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13091',
    'STATE': '13',
    'COUNTY': '091',
    'NAME': 'Dodge',
    'LSAD': 'County',
    'CENSUSAREA': 495.89},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.346528, 32.272489],
      [-83.30475, 32.341958],
      [-83.173252, 32.452533],
      [-83.138991, 32.423069],
      [-82.990967, 32.147274],
      [-82.884803, 32.196072],
      [-82.87179, 32.18273],
      [-82.927865, 32.135274],
      [-82.934566, 32.153274],
      [-82.955466, 32.135274],
      [-82.942066, 32.124074],
      [-83.205739, 31.900325],
      [-83.292061, 31.984506],
      [-83.337313, 32.105885],
      [-83.291106, 32.178825],
      [-83.346528, 32.272489]]]},
   'id': '13091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13093',
    'STATE': '13',
    'COUNTY': '093',
    'NAME': 'Dooly',
    'LSAD': 'County',
    'CENSUSAREA': 391.94},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.027853, 32.171083],
      [-83.965121, 32.248005],
      [-83.848379, 32.29097],
      [-83.615579, 32.288556],
      [-83.608547, 32.118405],
      [-83.608407, 32.116466],
      [-83.609663, 32.027938],
      [-83.961278, 32.030595],
      [-84.027853, 32.171083]]]},
   'id': '13093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13095',
    'STATE': '13',
    'COUNTY': '095',
    'NAME': 'Dougherty',
    'LSAD': 'County',
    'CENSUSAREA': 328.689},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.450398, 31.621868],
      [-84.297801, 31.621951],
      [-84.043213, 31.623573],
      [-84.018404, 31.650274],
      [-83.982569, 31.46348],
      [-83.997679, 31.462773],
      [-83.997796, 31.443753],
      [-84.141124, 31.440179],
      [-84.429876, 31.436661],
      [-84.450398, 31.621868]]]},
   'id': '13095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13097',
    'STATE': '13',
    'COUNTY': '097',
    'NAME': 'Douglas',
    'LSAD': 'County',
    'CENSUSAREA': 200.067},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.769935, 33.784704],
      [-84.741348, 33.788568],
      [-84.725477, 33.788579],
      [-84.724122, 33.791439],
      [-84.724139, 33.80617],
      [-84.619892, 33.805024],
      [-84.578132, 33.743507],
      [-84.586826, 33.729114],
      [-84.594332, 33.729007],
      [-84.601732, 33.724408],
      [-84.608032, 33.712908],
      [-84.621232, 33.704508],
      [-84.632131, 33.700312],
      [-84.630117, 33.693116],
      [-84.752735, 33.63021],
      [-84.763097, 33.614211],
      [-84.775591, 33.609662],
      [-84.805655, 33.58642],
      [-84.808934, 33.574085],
      [-84.905788, 33.573378],
      [-84.902546, 33.661066],
      [-84.901688, 33.780703],
      [-84.879151, 33.774758],
      [-84.832708, 33.776019],
      [-84.832705, 33.778522],
      [-84.799853, 33.779909],
      [-84.795109, 33.779809],
      [-84.791993, 33.781162],
      [-84.769935, 33.784704]]]},
   'id': '13097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13099',
    'STATE': '13',
    'COUNTY': '099',
    'NAME': 'Early',
    'LSAD': 'County',
    'CENSUSAREA': 512.594},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.046859, 31.517451],
      [-85.029227, 31.486071],
      [-84.819807, 31.501192],
      [-84.789032, 31.436356],
      [-84.637579, 31.433926],
      [-84.641673, 31.258967],
      [-84.91743, 31.25599],
      [-84.922423, 31.07259],
      [-84.999869, 31.074736],
      [-85.001928, 31.074983],
      [-85.022121, 31.07548],
      [-85.029736, 31.096163],
      [-85.035615, 31.108192],
      [-85.076628, 31.156927],
      [-85.083582, 31.15963],
      [-85.092106, 31.160293],
      [-85.100207, 31.16549],
      [-85.107516, 31.186451],
      [-85.111871, 31.258388],
      [-85.101561, 31.283362],
      [-85.087651, 31.308677],
      [-85.068065, 31.427586],
      [-85.046859, 31.517451]]]},
   'id': '13099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13101',
    'STATE': '13',
    'COUNTY': '101',
    'NAME': 'Echols',
    'LSAD': 'County',
    'CENSUSAREA': 414.894},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.136616, 30.624346],
      [-83.136236, 30.775229],
      [-83.088082, 30.848658],
      [-83.019419, 30.849453],
      [-83.013962, 30.844709],
      [-83.006577, 30.85947],
      [-82.993866, 30.860786],
      [-82.982155, 30.872249],
      [-82.971336, 30.869392],
      [-82.846353, 30.834988],
      [-82.766159, 30.732404],
      [-82.604005, 30.713676],
      [-82.584002, 30.591796],
      [-82.689271, 30.597719],
      [-82.689539, 30.597734],
      [-82.698618, 30.598232],
      [-82.698902, 30.598271],
      [-82.877259, 30.609024],
      [-82.878779, 30.609082],
      [-83.136616, 30.624346]]]},
   'id': '13101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13103',
    'STATE': '13',
    'COUNTY': '103',
    'NAME': 'Effingham',
    'LSAD': 'County',
    'CENSUSAREA': 477.7},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.348155, 32.569294],
      [-81.328753, 32.561228],
      [-81.318255, 32.559722],
      [-81.286776, 32.544831],
      [-81.275415, 32.539457],
      [-81.199029, 32.467286],
      [-81.168032, 32.368391],
      [-81.140932, 32.349393],
      [-81.134332, 32.341693],
      [-81.122333, 32.305395],
      [-81.120333, 32.285796],
      [-81.128034, 32.276297],
      [-81.125457, 32.22713],
      [-81.195634, 32.237499],
      [-81.391698, 32.095886],
      [-81.43583, 32.241289],
      [-81.542716, 32.417446],
      [-81.548006, 32.489286],
      [-81.538558, 32.509059],
      [-81.389258, 32.595385],
      [-81.348155, 32.569294]]]},
   'id': '13103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13105',
    'STATE': '13',
    'COUNTY': '105',
    'NAME': 'Elbert',
    'LSAD': 'County',
    'CENSUSAREA': 351.055},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.741491, 34.208709],
      [-82.731881, 34.178363],
      [-82.717507, 34.150504],
      [-82.70414, 34.141007],
      [-82.67732, 34.131657],
      [-82.668113, 34.12016],
      [-82.659077, 34.103544],
      [-82.658561, 34.103118],
      [-82.654019, 34.100346],
      [-82.652175, 34.099704],
      [-82.641252, 34.088914],
      [-82.640701, 34.088341],
      [-82.597079, 34.01239],
      [-82.564582, 33.95581],
      [-82.564483, 33.955744],
      [-82.645451, 33.984195],
      [-82.779506, 33.971124],
      [-82.976294, 34.043219],
      [-83.102074, 34.173794],
      [-83.078004, 34.223606],
      [-82.980905, 34.211505],
      [-82.766078, 34.293509],
      [-82.755028, 34.276067],
      [-82.74198, 34.230196],
      [-82.743461, 34.227343],
      [-82.744415, 34.224913],
      [-82.74192, 34.210063],
      [-82.741491, 34.208709]]]},
   'id': '13105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13107',
    'STATE': '13',
    'COUNTY': '107',
    'NAME': 'Emanuel',
    'LSAD': 'County',
    'CENSUSAREA': 680.604},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.647733, 32.512507],
      [-82.594439, 32.579158],
      [-82.465065, 32.646833],
      [-82.499431, 32.68634],
      [-82.434149, 32.762258],
      [-82.316512, 32.835772],
      [-82.144977, 32.812741],
      [-82.08244, 32.663061],
      [-82.001236, 32.60691],
      [-82.026842, 32.555163],
      [-82.030233, 32.53877],
      [-82.148338, 32.520429],
      [-82.252757, 32.35331],
      [-82.232788, 32.318838],
      [-82.354546, 32.292194],
      [-82.409118, 32.35383],
      [-82.38194, 32.440596],
      [-82.488941, 32.49183],
      [-82.647733, 32.512507]]]},
   'id': '13107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13109',
    'STATE': '13',
    'COUNTY': '109',
    'NAME': 'Evans',
    'LSAD': 'County',
    'CENSUSAREA': 182.853},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.969069, 32.268783],
      [-81.81628, 32.23747],
      [-81.780858, 32.15289],
      [-81.718658, 32.089351],
      [-81.761735, 32.0479],
      [-81.980041, 32.081502],
      [-82.025339, 32.278883],
      [-81.999843, 32.276189],
      [-81.969069, 32.268783]]]},
   'id': '13109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13111',
    'STATE': '13',
    'COUNTY': '111',
    'NAME': 'Fannin',
    'LSAD': 'County',
    'CENSUSAREA': 386.723},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.621483, 34.988329],
      [-84.509886, 34.98801],
      [-84.509052, 34.988033],
      [-84.394903, 34.98803],
      [-84.393935, 34.988068],
      [-84.321869, 34.988408],
      [-84.129555, 34.987504],
      [-84.129455, 34.987504],
      [-84.178672, 34.946497],
      [-84.107422, 34.886896],
      [-84.093193, 34.801411],
      [-84.158035, 34.648243],
      [-84.188557, 34.602692],
      [-84.189026, 34.608109],
      [-84.196754, 34.617924],
      [-84.314653, 34.807328],
      [-84.429093, 34.855036],
      [-84.618637, 34.855398],
      [-84.621483, 34.988329]]]},
   'id': '13111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13113',
    'STATE': '13',
    'COUNTY': '113',
    'NAME': 'Fayette',
    'LSAD': 'County',
    'CENSUSAREA': 194.342},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.497527, 33.257422],
      [-84.62722, 33.440078],
      [-84.60954, 33.502511],
      [-84.458665, 33.550933],
      [-84.381759, 33.463414],
      [-84.388118, 33.352465],
      [-84.432907, 33.2565],
      [-84.497527, 33.257422]]]},
   'id': '13113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13115',
    'STATE': '13',
    'COUNTY': '115',
    'NAME': 'Floyd',
    'LSAD': 'County',
    'CENSUSAREA': 509.911},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.069159, 34.587184],
      [-85.086761, 34.401264],
      [-85.005775, 34.392446],
      [-85.046871, 34.096412],
      [-85.257624, 34.100668],
      [-85.421731, 34.080821],
      [-85.455057, 34.250689],
      [-85.455371, 34.252854],
      [-85.458071, 34.265736],
      [-85.458693, 34.269437],
      [-85.462304, 34.286365],
      [-85.387351, 34.286097],
      [-85.334881, 34.369748],
      [-85.180548, 34.435996],
      [-85.107748, 34.587483],
      [-85.069159, 34.587184]]]},
   'id': '13115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13117',
    'STATE': '13',
    'COUNTY': '117',
    'NAME': 'Forsyth',
    'LSAD': 'County',
    'CENSUSAREA': 224.021},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.258075, 34.335156],
      [-83.957077, 34.334011],
      [-83.927284, 34.279399],
      [-83.989059, 34.195732],
      [-84.062841, 34.167873],
      [-84.074624, 34.163687],
      [-84.094763, 34.131708],
      [-84.101343, 34.106305],
      [-84.10261, 34.103788],
      [-84.105403, 34.102223],
      [-84.107143, 34.10003],
      [-84.109894, 34.098423],
      [-84.117801, 34.065315],
      [-84.097692, 34.050654],
      [-84.200373, 34.090118],
      [-84.258934, 34.109539],
      [-84.258743, 34.185909],
      [-84.258075, 34.335156]]]},
   'id': '13117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13119',
    'STATE': '13',
    'COUNTY': '119',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 261.497},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.355269, 34.22373],
      [-83.393915, 34.324801],
      [-83.398396, 34.460883],
      [-83.177838, 34.477017],
      [-83.106874, 34.534053],
      [-83.087189, 34.515939],
      [-83.072746, 34.504349],
      [-83.052161, 34.493062],
      [-83.094238, 34.415901],
      [-83.11336, 34.27353],
      [-83.172745, 34.238522],
      [-83.297317, 34.264587],
      [-83.355269, 34.22373]]]},
   'id': '13119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13121',
    'STATE': '13',
    'COUNTY': '121',
    'NAME': 'Fulton',
    'LSAD': 'County',
    'CENSUSAREA': 526.635},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.752735, 33.63021],
      [-84.630117, 33.693116],
      [-84.632131, 33.700312],
      [-84.621232, 33.704508],
      [-84.608032, 33.712908],
      [-84.601732, 33.724408],
      [-84.594332, 33.729007],
      [-84.586826, 33.729114],
      [-84.578132, 33.743507],
      [-84.480134, 33.817319],
      [-84.442708, 33.901543],
      [-84.383027, 33.9638],
      [-84.418927, 34.073298],
      [-84.328263, 34.186144],
      [-84.258743, 34.185909],
      [-84.258934, 34.109539],
      [-84.200373, 34.090118],
      [-84.097692, 34.050654],
      [-84.276822, 33.9577],
      [-84.347823, 33.938017],
      [-84.347925, 33.927001],
      [-84.347825, 33.918902],
      [-84.348025, 33.918302],
      [-84.348225, 33.904802],
      [-84.348224, 33.8929],
      [-84.348425, 33.881902],
      [-84.348125, 33.879203],
      [-84.348325, 33.867903],
      [-84.348125, 33.864903],
      [-84.348525, 33.861903],
      [-84.348225, 33.859502],
      [-84.348138, 33.857692],
      [-84.348325, 33.852503],
      [-84.349799, 33.664035],
      [-84.350224, 33.647908],
      [-84.360224, 33.647909],
      [-84.365325, 33.647809],
      [-84.457726, 33.64887],
      [-84.458514, 33.608625],
      [-84.458627, 33.586456],
      [-84.458399, 33.572743],
      [-84.45863, 33.572107],
      [-84.458927, 33.565911],
      [-84.458924, 33.559759],
      [-84.458579, 33.556242],
      [-84.458665, 33.550933],
      [-84.60954, 33.502511],
      [-84.850713, 33.511457],
      [-84.808934, 33.574085],
      [-84.805655, 33.58642],
      [-84.775591, 33.609662],
      [-84.763097, 33.614211],
      [-84.752735, 33.63021]]]},
   'id': '13121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13123',
    'STATE': '13',
    'COUNTY': '123',
    'NAME': 'Gilmer',
    'LSAD': 'County',
    'CENSUSAREA': 426.54},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.654366, 34.548946],
      [-84.654523, 34.583187],
      [-84.657098, 34.728905],
      [-84.582306, 34.825141],
      [-84.618637, 34.855398],
      [-84.429093, 34.855036],
      [-84.314653, 34.807328],
      [-84.196754, 34.617924],
      [-84.255112, 34.568333],
      [-84.345553, 34.562735],
      [-84.654366, 34.548946]]]},
   'id': '13123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13125',
    'STATE': '13',
    'COUNTY': '125',
    'NAME': 'Glascock',
    'LSAD': 'County',
    'CENSUSAREA': 143.74},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.431957, 33.27483],
      [-82.661917, 33.126331],
      [-82.748311, 33.238348],
      [-82.747238, 33.247663],
      [-82.755846, 33.25344],
      [-82.559753, 33.32727],
      [-82.431957, 33.27483]]]},
   'id': '13125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13127',
    'STATE': '13',
    'COUNTY': '127',
    'NAME': 'Glynn',
    'LSAD': 'County',
    'CENSUSAREA': 419.753},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.44317, 31.016661],
      [-81.572692, 31.097269],
      [-81.766322, 31.169595],
      [-81.731694, 31.330048],
      [-81.69199, 31.400519],
      [-81.62429, 31.452982],
      [-81.435874, 31.313263],
      [-81.269906, 31.294489],
      [-81.274688, 31.289454],
      [-81.276862, 31.254734],
      [-81.282842, 31.24433],
      [-81.289136, 31.225487],
      [-81.288403, 31.211065],
      [-81.293359, 31.206332],
      [-81.304957, 31.206173],
      [-81.314183, 31.207938],
      [-81.339028, 31.186918],
      [-81.35488, 31.167204],
      [-81.360791, 31.155903],
      [-81.359349, 31.149166],
      [-81.368241, 31.136534],
      [-81.38683, 31.133214],
      [-81.399677, 31.134113],
      [-81.402096, 31.125383],
      [-81.403732, 31.107115],
      [-81.401209, 31.086143],
      [-81.401267, 31.072781],
      [-81.415123, 31.026718],
      [-81.420474, 31.016703],
      [-81.424732, 31.013678],
      [-81.432475, 31.012991],
      [-81.43471, 31.014641],
      [-81.434923, 31.017804],
      [-81.44317, 31.016661]]]},
   'id': '13127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13129',
    'STATE': '13',
    'COUNTY': '129',
    'NAME': 'Gordon',
    'LSAD': 'County',
    'CENSUSAREA': 355.808},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.654523, 34.583187],
      [-84.654366, 34.548946],
      [-84.653232, 34.41259],
      [-84.862863, 34.396601],
      [-85.005775, 34.392446],
      [-85.086761, 34.401264],
      [-85.069159, 34.587184],
      [-85.060499, 34.587184],
      [-85.06038, 34.62245],
      [-85.055206, 34.622383],
      [-85.055095, 34.62239],
      [-85.050446, 34.622482],
      [-84.913456, 34.634128],
      [-84.863793, 34.608597],
      [-84.716498, 34.6229],
      [-84.654523, 34.583187]]]},
   'id': '13129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13131',
    'STATE': '13',
    'COUNTY': '131',
    'NAME': 'Grady',
    'LSAD': 'County',
    'CENSUSAREA': 454.527},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.380719, 30.689673],
      [-84.376612, 31.078883],
      [-84.116644, 31.077971],
      [-84.119058, 30.980956],
      [-84.076964, 30.91557],
      [-84.083753, 30.675954],
      [-84.28121, 30.685256],
      [-84.282562, 30.685316],
      [-84.380719, 30.689673]]]},
   'id': '13131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13133',
    'STATE': '13',
    'COUNTY': '133',
    'NAME': 'Greene',
    'LSAD': 'County',
    'CENSUSAREA': 387.435},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.164207, 33.35503],
      [-83.279931, 33.483438],
      [-83.269213, 33.533226],
      [-83.406189, 33.698307],
      [-83.28034, 33.761774],
      [-83.118729, 33.698818],
      [-82.995602, 33.693583],
      [-82.951142, 33.658032],
      [-83.014038, 33.580383],
      [-83.012853, 33.469178],
      [-83.164207, 33.35503]]]},
   'id': '13133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13135',
    'STATE': '13',
    'COUNTY': '135',
    'NAME': 'Gwinnett',
    'LSAD': 'County',
    'CENSUSAREA': 430.383},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.109894, 34.098423],
      [-84.107143, 34.10003],
      [-84.105403, 34.102223],
      [-84.10261, 34.103788],
      [-84.101343, 34.106305],
      [-84.094763, 34.131708],
      [-84.074624, 34.163687],
      [-84.062841, 34.167873],
      [-83.86803, 34.098281],
      [-83.817682, 34.127493],
      [-83.869115, 34.004316],
      [-83.799104, 33.929844],
      [-83.982033, 33.786054],
      [-83.984555, 33.784332],
      [-84.023713, 33.752808],
      [-84.172139, 33.857516],
      [-84.179418, 33.864403],
      [-84.187005, 33.865515],
      [-84.203519, 33.873003],
      [-84.20472, 33.877003],
      [-84.21663, 33.884976],
      [-84.23222, 33.902002],
      [-84.250413, 33.910812],
      [-84.256022, 33.914401],
      [-84.259011, 33.91882],
      [-84.265337, 33.932576],
      [-84.272216, 33.944853],
      [-84.266306, 33.947577],
      [-84.271922, 33.9559],
      [-84.275722, 33.954201],
      [-84.276822, 33.9577],
      [-84.097692, 34.050654],
      [-84.117801, 34.065315],
      [-84.109894, 34.098423]]]},
   'id': '13135'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13137',
    'STATE': '13',
    'COUNTY': '137',
    'NAME': 'Habersham',
    'LSAD': 'County',
    'CENSUSAREA': 276.74},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.352485, 34.715993],
      [-83.351392, 34.714456],
      [-83.350976, 34.713243],
      [-83.351293, 34.701703],
      [-83.338194, 34.687924],
      [-83.337867, 34.687681],
      [-83.45977, 34.481142],
      [-83.537538, 34.491725],
      [-83.615251, 34.431748],
      [-83.666413, 34.503598],
      [-83.61554, 34.552864],
      [-83.662819, 34.659801],
      [-83.623296, 34.732194],
      [-83.681596, 34.800593],
      [-83.666855, 34.806528],
      [-83.657921, 34.813682],
      [-83.652194, 34.822993],
      [-83.586897, 34.819991],
      [-83.548988, 34.749451],
      [-83.352422, 34.716111],
      [-83.352485, 34.715993]]]},
   'id': '13137'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13139',
    'STATE': '13',
    'COUNTY': '139',
    'NAME': 'Hall',
    'LSAD': 'County',
    'CENSUSAREA': 392.782},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.062841, 34.167873],
      [-83.989059, 34.195732],
      [-83.927284, 34.279399],
      [-83.957077, 34.334011],
      [-83.980649, 34.418389],
      [-83.843405, 34.505494],
      [-83.666413, 34.503598],
      [-83.615251, 34.431748],
      [-83.669473, 34.366689],
      [-83.620115, 34.295276],
      [-83.817682, 34.127493],
      [-83.86803, 34.098281],
      [-84.062841, 34.167873]]]},
   'id': '13139'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13141',
    'STATE': '13',
    'COUNTY': '141',
    'NAME': 'Hancock',
    'LSAD': 'County',
    'CENSUSAREA': 471.841},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.052197, 33.080682],
      [-83.100834, 33.049849],
      [-83.097507, 33.15141],
      [-83.274108, 33.187238],
      [-83.253461, 33.25929],
      [-83.145774, 33.312084],
      [-83.164207, 33.35503],
      [-83.012853, 33.469178],
      [-82.851954, 33.443543],
      [-82.755846, 33.25344],
      [-82.747238, 33.247663],
      [-82.748311, 33.238348],
      [-82.855046, 33.196427],
      [-82.888866, 33.138603],
      [-83.052197, 33.080682]]]},
   'id': '13141'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13143',
    'STATE': '13',
    'COUNTY': '143',
    'NAME': 'Haralson',
    'LSAD': 'County',
    'CENSUSAREA': 282.165},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.386693, 33.901697],
      [-85.05031, 33.904488],
      [-85.036684, 33.904327],
      [-85.037926, 33.811942],
      [-85.050889, 33.714632],
      [-85.337974, 33.653111],
      [-85.360491, 33.767958],
      [-85.361844, 33.773951],
      [-85.386693, 33.901697]]]},
   'id': '13143'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13145',
    'STATE': '13',
    'COUNTY': '145',
    'NAME': 'Harris',
    'LSAD': 'County',
    'CENSUSAREA': 463.869},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.13204, 32.764211],
      [-85.123421, 32.772248],
      [-85.184131, 32.870525],
      [-84.861768, 32.872495],
      [-84.700538, 32.84464],
      [-84.694603, 32.583945],
      [-84.907883, 32.583433],
      [-84.907703, 32.607608],
      [-85.082454, 32.607022],
      [-85.10479, 32.642542],
      [-85.114737, 32.685634],
      [-85.137136, 32.745168],
      [-85.136776, 32.746512],
      [-85.13204, 32.764211]]]},
   'id': '13145'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13147',
    'STATE': '13',
    'COUNTY': '147',
    'NAME': 'Hart',
    'LSAD': 'County',
    'CENSUSAREA': 232.394},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.992215, 34.479198],
      [-82.979568, 34.482702],
      [-82.939067, 34.486202],
      [-82.902665, 34.485902],
      [-82.882864, 34.479003],
      [-82.873831, 34.471508],
      [-82.874864, 34.468891],
      [-82.848651, 34.423844],
      [-82.766078, 34.293509],
      [-82.980905, 34.211505],
      [-83.078004, 34.223606],
      [-83.115646, 34.262111],
      [-83.11336, 34.27353],
      [-83.094238, 34.415901],
      [-83.052161, 34.493062],
      [-83.034712, 34.483495],
      [-83.006848, 34.474376],
      [-82.995284, 34.474549],
      [-82.992671, 34.479072],
      [-82.992215, 34.479198]]]},
   'id': '13147'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13149',
    'STATE': '13',
    'COUNTY': '149',
    'NAME': 'Heard',
    'LSAD': 'County',
    'CENSUSAREA': 296.03},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.293902, 33.428079],
      [-85.015358, 33.425506],
      [-84.939015, 33.224693],
      [-85.236509, 33.129562],
      [-85.293902, 33.428079]]]},
   'id': '13149'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13151',
    'STATE': '13',
    'COUNTY': '151',
    'NAME': 'Henry',
    'LSAD': 'County',
    'CENSUSAREA': 322.127},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.283518, 33.502514],
      [-84.281273, 33.647411],
      [-84.254149, 33.647045],
      [-84.245453, 33.63073],
      [-84.224235, 33.630657],
      [-84.223952, 33.646572],
      [-84.184143, 33.646157],
      [-84.181584, 33.629174],
      [-84.17213, 33.621919],
      [-84.136289, 33.57233],
      [-84.044493, 33.525776],
      [-83.923913, 33.444194],
      [-84.044594, 33.333656],
      [-84.044597, 33.333495],
      [-84.042663, 33.333501],
      [-84.102582, 33.298191],
      [-84.150581, 33.335639],
      [-84.3544, 33.352514],
      [-84.353584, 33.436165],
      [-84.283518, 33.502514]]]},
   'id': '13151'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13153',
    'STATE': '13',
    'COUNTY': '153',
    'NAME': 'Houston',
    'LSAD': 'County',
    'CENSUSAREA': 375.541},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.848379, 32.29097],
      [-83.846676, 32.468514],
      [-83.719859, 32.53176],
      [-83.70109, 32.691598],
      [-83.701152, 32.692169],
      [-83.597656, 32.664338],
      [-83.566198, 32.660786],
      [-83.497923, 32.452198],
      [-83.482648, 32.424536],
      [-83.498039, 32.401715],
      [-83.615579, 32.288556],
      [-83.848379, 32.29097]]]},
   'id': '13153'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13155',
    'STATE': '13',
    'COUNTY': '155',
    'NAME': 'Irwin',
    'LSAD': 'County',
    'CENSUSAREA': 354.343},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.500702, 31.59399],
      [-83.453634, 31.757861],
      [-83.325296, 31.756584],
      [-83.325617, 31.680603],
      [-83.177218, 31.651691],
      [-83.176376, 31.678382],
      [-82.99836, 31.673164],
      [-83.145587, 31.472276],
      [-83.146085, 31.472088],
      [-83.338728, 31.475991],
      [-83.500702, 31.59399]]]},
   'id': '13155'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13157',
    'STATE': '13',
    'COUNTY': '157',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 339.663},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.360028, 34.040572],
      [-83.537385, 33.965912],
      [-83.563215, 34.031757],
      [-83.767532, 34.066448],
      [-83.817682, 34.127493],
      [-83.620115, 34.295276],
      [-83.480361, 34.262038],
      [-83.402428, 34.197499],
      [-83.360028, 34.040572]]]},
   'id': '13157'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13159',
    'STATE': '13',
    'COUNTY': '159',
    'NAME': 'Jasper',
    'LSAD': 'County',
    'CENSUSAREA': 368.165},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.816048, 33.131816],
      [-83.817268, 33.14154],
      [-83.814056, 33.14846],
      [-83.822929, 33.157856],
      [-83.824585, 33.17564],
      [-83.822261, 33.180238],
      [-83.814103, 33.242134],
      [-83.863058, 33.368278],
      [-83.824922, 33.437263],
      [-83.674644, 33.487225],
      [-83.682196, 33.52622],
      [-83.586817, 33.465577],
      [-83.533736, 33.434472],
      [-83.537811, 33.393803],
      [-83.545876, 33.171944],
      [-83.816048, 33.131816]]]},
   'id': '13159'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13161',
    'STATE': '13',
    'COUNTY': '161',
    'NAME': 'Jeff Davis',
    'LSAD': 'County',
    'CENSUSAREA': 330.74},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.52142, 31.710796],
      [-82.521393, 31.672512],
      [-82.627342, 31.672672],
      [-82.836633, 31.671398],
      [-82.836366, 31.816154],
      [-82.645659, 31.918883],
      [-82.543655, 31.958914],
      [-82.483131, 31.968961],
      [-82.479607, 31.971653],
      [-82.458152, 31.96389],
      [-82.452051, 31.96459],
      [-82.444451, 31.96749],
      [-82.439351, 31.96779],
      [-82.431531, 31.966182],
      [-82.431362, 31.837993],
      [-82.520251, 31.838388],
      [-82.52142, 31.710796]]]},
   'id': '13161'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13163',
    'STATE': '13',
    'COUNTY': '163',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 526.485},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.434149, 32.762258],
      [-82.521052, 32.822356],
      [-82.510851, 32.917754],
      [-82.550197, 33.019247],
      [-82.661917, 33.126331],
      [-82.431957, 33.27483],
      [-82.383829, 33.312106],
      [-82.371972, 33.310879],
      [-82.357647, 33.312717],
      [-82.353498, 33.312318],
      [-82.311539, 33.297146],
      [-82.296855, 33.277349],
      [-82.286507, 33.274135],
      [-82.278539, 33.269174],
      [-82.26758, 33.267397],
      [-82.232554, 33.231211],
      [-82.29118, 33.062827],
      [-82.272353, 32.937796],
      [-82.316512, 32.835772],
      [-82.434149, 32.762258]]]},
   'id': '13163'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13165',
    'STATE': '13',
    'COUNTY': '165',
    'NAME': 'Jenkins',
    'LSAD': 'County',
    'CENSUSAREA': 347.279},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.767553, 32.909411],
      [-81.867938, 32.68115],
      [-81.841005, 32.649093],
      [-82.001236, 32.60691],
      [-82.08244, 32.663061],
      [-82.144977, 32.812741],
      [-82.081331, 32.916782],
      [-81.857976, 32.953882],
      [-81.767553, 32.909411]]]},
   'id': '13165'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13167',
    'STATE': '13',
    'COUNTY': '167',
    'NAME': 'Johnson',
    'LSAD': 'County',
    'CENSUSAREA': 303.01},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.946966, 32.759358],
      [-82.802456, 32.809756],
      [-82.768365, 32.769108],
      [-82.521052, 32.822356],
      [-82.434149, 32.762258],
      [-82.499431, 32.68634],
      [-82.465065, 32.646833],
      [-82.594439, 32.579158],
      [-82.647733, 32.512507],
      [-82.668557, 32.612164],
      [-82.862763, 32.71576],
      [-82.957066, 32.708318],
      [-82.946366, 32.741258],
      [-82.946966, 32.759358]]]},
   'id': '13167'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13169',
    'STATE': '13',
    'COUNTY': '169',
    'NAME': 'Jones',
    'LSAD': 'County',
    'CENSUSAREA': 393.933},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.357685, 32.926141],
      [-83.40682, 32.898446],
      [-83.40699, 32.89822],
      [-83.407668, 32.897822],
      [-83.513511, 32.844868],
      [-83.658211, 32.887913],
      [-83.710685, 32.952792],
      [-83.747004, 33.063373],
      [-83.816048, 33.131816],
      [-83.545876, 33.171944],
      [-83.42909, 33.185352],
      [-83.414997, 33.112833],
      [-83.380383, 32.998077],
      [-83.357685, 32.926141]]]},
   'id': '13169'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13171',
    'STATE': '13',
    'COUNTY': '171',
    'NAME': 'Lamar',
    'LSAD': 'County',
    'CENSUSAREA': 183.5},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.27014, 32.991011],
      [-84.248185, 33.189019],
      [-84.123767, 33.202824],
      [-84.041498, 33.202629],
      [-84.044113, 32.947874],
      [-84.12334, 32.932184],
      [-84.122361, 32.989576],
      [-84.27014, 32.991011]]]},
   'id': '13171'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13173',
    'STATE': '13',
    'COUNTY': '173',
    'NAME': 'Lanier',
    'LSAD': 'County',
    'CENSUSAREA': 185.261},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.019419, 30.849453],
      [-83.042924, 30.947296],
      [-83.179465, 30.950128],
      [-83.197971, 31.025405],
      [-83.165072, 31.147198],
      [-83.038246, 31.146705],
      [-83.046885, 31.18368],
      [-82.971247, 31.183988],
      [-82.971336, 30.869392],
      [-82.982155, 30.872249],
      [-82.993866, 30.860786],
      [-83.006577, 30.85947],
      [-83.013962, 30.844709],
      [-83.019419, 30.849453]]]},
   'id': '13173'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13175',
    'STATE': '13',
    'COUNTY': '175',
    'NAME': 'Laurens',
    'LSAD': 'County',
    'CENSUSAREA': 807.296},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.226536, 32.584201],
      [-82.95757, 32.708198],
      [-82.957066, 32.708318],
      [-82.862763, 32.71576],
      [-82.668557, 32.612164],
      [-82.647733, 32.512507],
      [-82.737137, 32.33803],
      [-82.721964, 32.309283],
      [-82.884803, 32.196072],
      [-82.990967, 32.147274],
      [-83.138991, 32.423069],
      [-83.226536, 32.584201]]]},
   'id': '13175'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13177',
    'STATE': '13',
    'COUNTY': '177',
    'NAME': 'Lee',
    'LSAD': 'County',
    'CENSUSAREA': 355.784},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.922494, 31.909653],
      [-83.925103, 31.905668],
      [-83.927383, 31.904142],
      [-83.932021, 31.898759],
      [-83.932301, 31.893801],
      [-83.928689, 31.886864],
      [-83.932091, 31.884632],
      [-83.934061, 31.88139],
      [-83.931152, 31.876984],
      [-83.928694, 31.871849],
      [-83.926524, 31.863292],
      [-83.932321, 31.859235],
      [-83.936736, 31.858043],
      [-83.9378, 31.854805],
      [-83.938192, 31.849489],
      [-83.939437, 31.847929],
      [-84.032344, 31.716772],
      [-84.018404, 31.650274],
      [-84.043213, 31.623573],
      [-84.297801, 31.621951],
      [-84.286456, 31.791182],
      [-84.338245, 31.873591],
      [-84.338143, 31.91619],
      [-83.922494, 31.909653]]]},
   'id': '13177'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13179',
    'STATE': '13',
    'COUNTY': '179',
    'NAME': 'Liberty',
    'LSAD': 'County',
    'CENSUSAREA': 489.801},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.19438, 31.568101],
      [-81.261868, 31.650142],
      [-81.43576, 31.642055],
      [-81.491798, 31.699575],
      [-81.641761, 31.765451],
      [-81.765357, 31.87454],
      [-81.750257, 31.973207],
      [-81.824405, 32.014882],
      [-81.809931, 32.019657],
      [-81.761735, 32.0479],
      [-81.718658, 32.089351],
      [-81.604431, 32.010948],
      [-81.593429, 31.97135],
      [-81.475761, 31.974255],
      [-81.407737, 31.944302],
      [-81.355837, 31.8149],
      [-81.198394, 31.72607],
      [-81.203572, 31.719448],
      [-81.186303, 31.701509],
      [-81.161084, 31.691401],
      [-81.154624, 31.693874],
      [-81.151888, 31.698411],
      [-81.149369, 31.699304],
      [-81.139394, 31.699917],
      [-81.131137, 31.695774],
      [-81.135608, 31.683491],
      [-81.136408, 31.674832],
      [-81.131728, 31.654484],
      [-81.133493, 31.623348],
      [-81.14997, 31.593476],
      [-81.160364, 31.570436],
      [-81.173079, 31.555908],
      [-81.178822, 31.55553],
      [-81.183252, 31.560058],
      [-81.186114, 31.568032],
      [-81.19438, 31.568101]]]},
   'id': '13179'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13181',
    'STATE': '13',
    'COUNTY': '181',
    'NAME': 'Lincoln',
    'LSAD': 'County',
    'CENSUSAREA': 210.38},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.425328, 33.650629],
      [-82.430915, 33.655076],
      [-82.435952, 33.652046],
      [-82.451692, 33.649591],
      [-82.458237, 33.637471],
      [-82.46988, 33.638617],
      [-82.476969, 33.644281],
      [-82.479518, 33.639535],
      [-82.593527, 33.827322],
      [-82.645451, 33.984195],
      [-82.564483, 33.955744],
      [-82.429164, 33.865844],
      [-82.422803, 33.863754],
      [-82.408354, 33.86632],
      [-82.403881, 33.865477],
      [-82.32448, 33.820033],
      [-82.301457, 33.801864],
      [-82.247472, 33.752591],
      [-82.218649, 33.686299],
      [-82.306414, 33.700644],
      [-82.425328, 33.650629]]]},
   'id': '13181'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13183',
    'STATE': '13',
    'COUNTY': '183',
    'NAME': 'Long',
    'LSAD': 'County',
    'CENSUSAREA': 400.293},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.491798, 31.699575],
      [-81.566009, 31.576467],
      [-81.663206, 31.538667],
      [-81.850624, 31.667671],
      [-81.969052, 31.789324],
      [-81.824405, 32.014882],
      [-81.750257, 31.973207],
      [-81.765357, 31.87454],
      [-81.641761, 31.765451],
      [-81.491798, 31.699575]]]},
   'id': '13183'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13185',
    'STATE': '13',
    'COUNTY': '185',
    'NAME': 'Lowndes',
    'LSAD': 'County',
    'CENSUSAREA': 496.066},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.475617, 31.031964],
      [-83.295052, 31.027278],
      [-83.280476, 31.02658],
      [-83.273731, 31.026658],
      [-83.197971, 31.025405],
      [-83.179465, 30.950128],
      [-83.042924, 30.947296],
      [-83.019419, 30.849453],
      [-83.088082, 30.848658],
      [-83.136236, 30.775229],
      [-83.136616, 30.624346],
      [-83.15617, 30.625504],
      [-83.163309, 30.625895],
      [-83.174411, 30.626444],
      [-83.187391, 30.627223],
      [-83.256218, 30.631279],
      [-83.309249, 30.634405],
      [-83.30925, 30.634405],
      [-83.309455, 30.634417],
      [-83.311647, 30.634577],
      [-83.340852, 30.636336],
      [-83.341011, 30.636346],
      [-83.357703, 30.637359],
      [-83.482461, 30.756931],
      [-83.449293, 30.817957],
      [-83.358989, 30.83671],
      [-83.458129, 31.000859],
      [-83.460412, 31.002812],
      [-83.461306, 31.005709],
      [-83.463689, 31.005935],
      [-83.464269, 31.011093],
      [-83.466784, 31.013886],
      [-83.465898, 31.018502],
      [-83.467778, 31.021635],
      [-83.471324, 31.02386],
      [-83.471596, 31.026583],
      [-83.468295, 31.028481],
      [-83.470776, 31.028531],
      [-83.472275, 31.029742],
      [-83.47326, 31.028452],
      [-83.473792, 31.031276],
      [-83.476889, 31.030987],
      [-83.475617, 31.031964]]]},
   'id': '13185'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13187',
    'STATE': '13',
    'COUNTY': '187',
    'NAME': 'Lumpkin',
    'LSAD': 'County',
    'CENSUSAREA': 282.933},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.843405, 34.505494],
      [-83.980649, 34.418389],
      [-84.102037, 34.464544],
      [-84.19104, 34.539181],
      [-84.188557, 34.602692],
      [-84.158035, 34.648243],
      [-84.03651, 34.641934],
      [-83.939007, 34.740859],
      [-83.856506, 34.722191],
      [-83.877276, 34.629597],
      [-83.843405, 34.505494]]]},
   'id': '13187'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13189',
    'STATE': '13',
    'COUNTY': '189',
    'NAME': 'McDuffie',
    'LSAD': 'County',
    'CENSUSAREA': 257.461},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.425328, 33.650629],
      [-82.436814, 33.549658],
      [-82.294179, 33.354635],
      [-82.350299, 33.314801],
      [-82.353498, 33.312318],
      [-82.357647, 33.312717],
      [-82.371972, 33.310879],
      [-82.383829, 33.312106],
      [-82.549373, 33.357748],
      [-82.649705, 33.608768],
      [-82.479518, 33.639535],
      [-82.476969, 33.644281],
      [-82.46988, 33.638617],
      [-82.458237, 33.637471],
      [-82.451692, 33.649591],
      [-82.435952, 33.652046],
      [-82.430915, 33.655076],
      [-82.425328, 33.650629]]]},
   'id': '13189'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13191',
    'STATE': '13',
    'COUNTY': '191',
    'NAME': 'McIntosh',
    'LSAD': 'County',
    'CENSUSAREA': 424.299},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.663206, 31.538667],
      [-81.566009, 31.576467],
      [-81.491798, 31.699575],
      [-81.43576, 31.642055],
      [-81.261868, 31.650142],
      [-81.19438, 31.568101],
      [-81.204315, 31.568183],
      [-81.214536, 31.557601],
      [-81.240699, 31.552313],
      [-81.254218, 31.55594],
      [-81.260076, 31.54828],
      [-81.263905, 31.532579],
      [-81.263437, 31.530932],
      [-81.258809, 31.52906],
      [-81.217948, 31.527284],
      [-81.213519, 31.528152],
      [-81.199518, 31.537596],
      [-81.193016, 31.535833],
      [-81.181592, 31.527697],
      [-81.17831, 31.52241],
      [-81.177254, 31.517074],
      [-81.189643, 31.503588],
      [-81.204883, 31.473124],
      [-81.246911, 31.422784],
      [-81.258616, 31.404425],
      [-81.278798, 31.367214],
      [-81.279338, 31.351127],
      [-81.282923, 31.326491],
      [-81.274513, 31.326237],
      [-81.268027, 31.324218],
      [-81.25482, 31.315452],
      [-81.260958, 31.30391],
      [-81.269906, 31.294489],
      [-81.435874, 31.313263],
      [-81.62429, 31.452982],
      [-81.663206, 31.538667]]]},
   'id': '13191'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13193',
    'STATE': '13',
    'COUNTY': '193',
    'NAME': 'Macon',
    'LSAD': 'County',
    'CENSUSAREA': 400.641},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.181657, 32.229703],
      [-84.255912, 32.296156],
      [-84.254613, 32.372053],
      [-84.122347, 32.505921],
      [-84.00849, 32.521769],
      [-83.846676, 32.468514],
      [-83.848379, 32.29097],
      [-83.965121, 32.248005],
      [-84.027853, 32.171083],
      [-84.181657, 32.229703]]]},
   'id': '13193'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13195',
    'STATE': '13',
    'COUNTY': '195',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 282.311},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.258413, 33.999098],
      [-83.360028, 34.040572],
      [-83.402428, 34.197499],
      [-83.400125, 34.200525],
      [-83.372429, 34.205933],
      [-83.355269, 34.22373],
      [-83.297317, 34.264587],
      [-83.172745, 34.238522],
      [-83.11336, 34.27353],
      [-83.115646, 34.262111],
      [-83.078004, 34.223606],
      [-83.102074, 34.173794],
      [-82.976294, 34.043219],
      [-83.049347, 34.016071],
      [-83.123878, 34.047558],
      [-83.258413, 33.999098]]]},
   'id': '13195'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13197',
    'STATE': '13',
    'COUNTY': '197',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 366.003},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.649319, 32.232953],
      [-84.65892, 32.232852],
      [-84.657325, 32.49494],
      [-84.637323, 32.534855],
      [-84.444353, 32.562083],
      [-84.392316, 32.414046],
      [-84.430215, 32.166257],
      [-84.431214, 32.134058],
      [-84.527117, 32.134556],
      [-84.649319, 32.232953]]]},
   'id': '13197'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13199',
    'STATE': '13',
    'COUNTY': '199',
    'NAME': 'Meriwether',
    'LSAD': 'County',
    'CENSUSAREA': 501.223},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.862359, 33.191173],
      [-84.85236, 33.22359],
      [-84.502352, 33.221055],
      [-84.492889, 33.200006],
      [-84.496783, 33.183866],
      [-84.52702, 32.970548],
      [-84.506888, 32.881788],
      [-84.570669, 32.845179],
      [-84.700538, 32.84464],
      [-84.861768, 32.872495],
      [-84.862359, 33.191173]]]},
   'id': '13199'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13201',
    'STATE': '13',
    'COUNTY': '201',
    'NAME': 'Miller',
    'LSAD': 'County',
    'CENSUSAREA': 282.421},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.922423, 31.07259],
      [-84.91743, 31.25599],
      [-84.641673, 31.258967],
      [-84.537101, 31.255932],
      [-84.542653, 31.079029],
      [-84.730855, 31.06919],
      [-84.922423, 31.07259]]]},
   'id': '13201'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13205',
    'STATE': '13',
    'COUNTY': '205',
    'NAME': 'Mitchell',
    'LSAD': 'County',
    'CENSUSAREA': 512.085},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.376612, 31.078883],
      [-84.508078, 31.0784],
      [-84.48331, 31.155536],
      [-84.40435, 31.199143],
      [-84.340552, 31.305341],
      [-84.20066, 31.355525],
      [-84.141124, 31.440179],
      [-83.997796, 31.443753],
      [-83.99943, 31.334966],
      [-84.003627, 31.07729],
      [-84.004502, 31.077192],
      [-84.116644, 31.077971],
      [-84.376612, 31.078883]]]},
   'id': '13205'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13207',
    'STATE': '13',
    'COUNTY': '207',
    'NAME': 'Monroe',
    'LSAD': 'County',
    'CENSUSAREA': 395.658},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.822261, 33.180238],
      [-83.824585, 33.17564],
      [-83.822929, 33.157856],
      [-83.814056, 33.14846],
      [-83.817268, 33.14154],
      [-83.816048, 33.131816],
      [-83.747004, 33.063373],
      [-83.710685, 32.952792],
      [-83.891922, 32.848351],
      [-84.124275, 32.849562],
      [-84.12334, 32.932184],
      [-84.044113, 32.947874],
      [-84.041498, 33.202629],
      [-83.822261, 33.180238]]]},
   'id': '13207'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13209',
    'STATE': '13',
    'COUNTY': '209',
    'NAME': 'Montgomery',
    'LSAD': 'County',
    'CENSUSAREA': 239.523},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.40913, 32.353738],
      [-82.483131, 31.968961],
      [-82.543655, 31.958914],
      [-82.598068, 32.014429],
      [-82.612876, 32.161549],
      [-82.655486, 32.297561],
      [-82.40913, 32.353738]]]},
   'id': '13209'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13211',
    'STATE': '13',
    'COUNTY': '211',
    'NAME': 'Morgan',
    'LSAD': 'County',
    'CENSUSAREA': 347.349},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.279931, 33.483438],
      [-83.533736, 33.434472],
      [-83.586817, 33.465577],
      [-83.682196, 33.52622],
      [-83.677669, 33.571176],
      [-83.681443, 33.577913],
      [-83.687085, 33.582375],
      [-83.687386, 33.588559],
      [-83.680896, 33.596919],
      [-83.505928, 33.81776],
      [-83.406189, 33.698307],
      [-83.269213, 33.533226],
      [-83.279931, 33.483438]]]},
   'id': '13211'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13213',
    'STATE': '13',
    'COUNTY': '213',
    'NAME': 'Murray',
    'LSAD': 'County',
    'CENSUSAREA': 344.466},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.775852, 34.9878],
      [-84.731022, 34.988088],
      [-84.727434, 34.98802],
      [-84.621483, 34.988329],
      [-84.618637, 34.855398],
      [-84.582306, 34.825141],
      [-84.657098, 34.728905],
      [-84.654523, 34.583187],
      [-84.716498, 34.6229],
      [-84.863793, 34.608597],
      [-84.913456, 34.634128],
      [-84.933722, 34.706799],
      [-84.864945, 34.707356],
      [-84.878499, 34.77961],
      [-84.818715, 34.87695],
      [-84.810477, 34.987607],
      [-84.809184, 34.987569],
      [-84.808127, 34.987592],
      [-84.775852, 34.9878]]]},
   'id': '13213'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13215',
    'STATE': '13',
    'COUNTY': '215',
    'NAME': 'Muscogee',
    'LSAD': 'County',
    'CENSUSAREA': 216.385},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.001052, 32.510477],
      [-85.001324, 32.512973],
      [-85.0071, 32.523868],
      [-85.022509, 32.542923],
      [-85.044606, 32.559499],
      [-85.069583, 32.58393],
      [-85.079935, 32.602889],
      [-85.080288, 32.603577],
      [-85.082454, 32.607022],
      [-84.907703, 32.607608],
      [-84.907883, 32.583433],
      [-84.694603, 32.583945],
      [-84.69451, 32.518732],
      [-84.769431, 32.422319],
      [-84.774567, 32.421839],
      [-84.778359, 32.423054],
      [-84.781559, 32.422863],
      [-84.782983, 32.421711],
      [-84.788471, 32.418031],
      [-84.791463, 32.414783],
      [-84.798647, 32.415968],
      [-84.805175, 32.418912],
      [-84.809432, 32.420864],
      [-84.811384, 32.418608],
      [-84.814632, 32.414448],
      [-84.823992, 32.413967],
      [-84.83436, 32.413216],
      [-84.844216, 32.413248],
      [-84.848664, 32.41464],
      [-84.987278, 32.381623],
      [-84.979431, 32.412244],
      [-84.983831, 32.445643],
      [-84.998231, 32.469842],
      [-85.000779, 32.506548],
      [-85.00103, 32.510157],
      [-85.001052, 32.510477]]]},
   'id': '13215'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13217',
    'STATE': '13',
    'COUNTY': '217',
    'NAME': 'Newton',
    'LSAD': 'County',
    'CENSUSAREA': 272.161},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.682196, 33.52622],
      [-83.674644, 33.487225],
      [-83.824922, 33.437263],
      [-83.863058, 33.368278],
      [-83.923913, 33.444194],
      [-84.044493, 33.525776],
      [-84.024854, 33.547507],
      [-84.024279, 33.548226],
      [-83.972655, 33.605482],
      [-83.914823, 33.744203],
      [-83.77735, 33.658301],
      [-83.680896, 33.596919],
      [-83.687386, 33.588559],
      [-83.687085, 33.582375],
      [-83.681443, 33.577913],
      [-83.677669, 33.571176],
      [-83.682196, 33.52622]]]},
   'id': '13217'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13219',
    'STATE': '13',
    'COUNTY': '219',
    'NAME': 'Oconee',
    'LSAD': 'County',
    'CENSUSAREA': 184.29},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.505928, 33.81776],
      [-83.647031, 33.906198],
      [-83.537385, 33.965912],
      [-83.275933, 33.847977],
      [-83.28034, 33.761774],
      [-83.406189, 33.698307],
      [-83.505928, 33.81776]]]},
   'id': '13219'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13221',
    'STATE': '13',
    'COUNTY': '221',
    'NAME': 'Oglethorpe',
    'LSAD': 'County',
    'CENSUSAREA': 439.012},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.779506, 33.971124],
      [-82.874587, 33.921767],
      [-82.987286, 33.78071],
      [-82.949046, 33.733333],
      [-82.98888, 33.706315],
      [-82.995602, 33.693583],
      [-83.118729, 33.698818],
      [-83.28034, 33.761774],
      [-83.275933, 33.847977],
      [-83.24086, 33.90443],
      [-83.258413, 33.999098],
      [-83.123878, 34.047558],
      [-83.049347, 34.016071],
      [-82.976294, 34.043219],
      [-82.779506, 33.971124]]]},
   'id': '13221'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13223',
    'STATE': '13',
    'COUNTY': '223',
    'NAME': 'Paulding',
    'LSAD': 'County',
    'CENSUSAREA': 312.219},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.05031, 33.904488],
      [-84.978683, 33.951393],
      [-84.922742, 34.082497],
      [-84.737836, 34.079399],
      [-84.724435, 33.881859],
      [-84.725035, 33.819905],
      [-84.725181, 33.816995],
      [-84.723969, 33.815306],
      [-84.724139, 33.80617],
      [-84.724122, 33.791439],
      [-84.725477, 33.788579],
      [-84.741348, 33.788568],
      [-84.769935, 33.784704],
      [-84.791993, 33.781162],
      [-84.795109, 33.779809],
      [-84.799853, 33.779909],
      [-84.832705, 33.778522],
      [-84.832708, 33.776019],
      [-84.879151, 33.774758],
      [-84.901688, 33.780703],
      [-84.918629, 33.786328],
      [-85.037926, 33.811942],
      [-85.036684, 33.904327],
      [-85.05031, 33.904488]]]},
   'id': '13223'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13225',
    'STATE': '13',
    'COUNTY': '225',
    'NAME': 'Peach',
    'LSAD': 'County',
    'CENSUSAREA': 150.267},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.846676, 32.468514],
      [-84.00849, 32.521769],
      [-84.001069, 32.520586],
      [-84.003363, 32.529927],
      [-83.766787, 32.692622],
      [-83.70109, 32.691598],
      [-83.719859, 32.53176],
      [-83.846676, 32.468514]]]},
   'id': '13225'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13227',
    'STATE': '13',
    'COUNTY': '227',
    'NAME': 'Pickens',
    'LSAD': 'County',
    'CENSUSAREA': 232.057},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.654366, 34.548946],
      [-84.345553, 34.562735],
      [-84.319679, 34.467857],
      [-84.256867, 34.467327],
      [-84.257586, 34.380992],
      [-84.58263, 34.381492],
      [-84.653232, 34.41259],
      [-84.654366, 34.548946]]]},
   'id': '13227'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13229',
    'STATE': '13',
    'COUNTY': '229',
    'NAME': 'Pierce',
    'LSAD': 'County',
    'CENSUSAREA': 316.494},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.417246, 31.417119],
      [-82.344843, 31.43013],
      [-82.226585, 31.530699],
      [-82.132794, 31.471262],
      [-82.052754, 31.454567],
      [-82.041129, 31.373721],
      [-82.006775, 31.277063],
      [-82.100067, 31.27671],
      [-82.194824, 31.20759],
      [-82.284561, 31.224449],
      [-82.383705, 31.291143],
      [-82.417246, 31.417119]]]},
   'id': '13229'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13231',
    'STATE': '13',
    'COUNTY': '231',
    'NAME': 'Pike',
    'LSAD': 'County',
    'CENSUSAREA': 216.086},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.248185, 33.189019],
      [-84.27014, 32.991011],
      [-84.489708, 32.993729],
      [-84.52702, 32.970548],
      [-84.496783, 33.183866],
      [-84.451336, 33.208889],
      [-84.248185, 33.189019]]]},
   'id': '13231'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13233',
    'STATE': '13',
    'COUNTY': '233',
    'NAME': 'Polk',
    'LSAD': 'County',
    'CENSUSAREA': 310.331},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.922742, 34.082497],
      [-84.978683, 33.951393],
      [-85.05031, 33.904488],
      [-85.386693, 33.901697],
      [-85.398837, 33.964129],
      [-85.421731, 34.080821],
      [-85.257624, 34.100668],
      [-85.046871, 34.096412],
      [-84.922742, 34.082497]]]},
   'id': '13233'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13235',
    'STATE': '13',
    'COUNTY': '235',
    'NAME': 'Pulaski',
    'LSAD': 'County',
    'CENSUSAREA': 249.031},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.498039, 32.401715],
      [-83.346528, 32.272489],
      [-83.291106, 32.178825],
      [-83.337313, 32.105885],
      [-83.608547, 32.118405],
      [-83.615579, 32.288556],
      [-83.498039, 32.401715]]]},
   'id': '13235'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13237',
    'STATE': '13',
    'COUNTY': '237',
    'NAME': 'Putnam',
    'LSAD': 'County',
    'CENSUSAREA': 344.639},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.545876, 33.171944],
      [-83.537811, 33.393803],
      [-83.533736, 33.434472],
      [-83.279931, 33.483438],
      [-83.164207, 33.35503],
      [-83.145774, 33.312084],
      [-83.253461, 33.25929],
      [-83.274108, 33.187238],
      [-83.42909, 33.185352],
      [-83.545876, 33.171944]]]},
   'id': '13237'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13239',
    'STATE': '13',
    'COUNTY': '239',
    'NAME': 'Quitman',
    'LSAD': 'County',
    'CENSUSAREA': 151.237},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.062246, 31.991857],
      [-84.907006, 31.924465],
      [-84.910338, 31.776841],
      [-84.95864, 31.777854],
      [-85.138668, 31.780425],
      [-85.141331, 31.783163],
      [-85.141831, 31.839861],
      [-85.132931, 31.88826],
      [-85.10663, 31.915159],
      [-85.08213, 31.944658],
      [-85.07233, 31.964758],
      [-85.062246, 31.991857]]]},
   'id': '13239'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13241',
    'STATE': '13',
    'COUNTY': '241',
    'NAME': 'Rabun',
    'LSAD': 'County',
    'CENSUSAREA': 369.993},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.108535, 35.000771],
      [-83.143261, 34.924756],
      [-83.242962, 34.877749],
      [-83.267293, 34.832748],
      [-83.283151, 34.821328],
      [-83.32406, 34.788691],
      [-83.339129, 34.741266],
      [-83.352422, 34.716111],
      [-83.548988, 34.749451],
      [-83.586897, 34.819991],
      [-83.652194, 34.822993],
      [-83.656792, 34.878492],
      [-83.549381, 34.992492],
      [-83.483064, 34.993737],
      [-83.108714, 35.000768],
      [-83.108535, 35.000771]]]},
   'id': '13241'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13243',
    'STATE': '13',
    'COUNTY': '243',
    'NAME': 'Randolph',
    'LSAD': 'County',
    'CENSUSAREA': 428.236},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.95864, 31.777854],
      [-84.910338, 31.776841],
      [-84.907006, 31.924465],
      [-84.65582, 31.920308],
      [-84.599776, 31.920171],
      [-84.603086, 31.772001],
      [-84.535527, 31.681828],
      [-84.546854, 31.621199],
      [-84.817843, 31.619771],
      [-84.942353, 31.618669],
      [-84.95864, 31.777854]]]},
   'id': '13243'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13245',
    'STATE': '13',
    'COUNTY': '245',
    'NAME': 'Richmond',
    'LSAD': 'County',
    'CENSUSAREA': 324.326},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.028238, 33.544934],
      [-82.014293, 33.530313],
      [-82.007638, 33.523335],
      [-82.007138, 33.522835],
      [-81.967037, 33.480636],
      [-81.957934, 33.468632],
      [-81.912572, 33.408811],
      [-81.902737, 33.331242],
      [-81.852136, 33.247544],
      [-81.851975, 33.247408],
      [-82.088162, 33.230245],
      [-82.17424, 33.296771],
      [-82.26758, 33.267397],
      [-82.278539, 33.269174],
      [-82.286507, 33.274135],
      [-82.296855, 33.277349],
      [-82.311539, 33.297146],
      [-82.353498, 33.312318],
      [-82.350299, 33.314801],
      [-82.294179, 33.354635],
      [-82.028238, 33.544934]]]},
   'id': '13245'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13247',
    'STATE': '13',
    'COUNTY': '247',
    'NAME': 'Rockdale',
    'LSAD': 'County',
    'CENSUSAREA': 129.793},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.023713, 33.752808],
      [-83.984555, 33.784332],
      [-83.982033, 33.786054],
      [-83.954499, 33.76892],
      [-83.953332, 33.768034],
      [-83.914823, 33.744203],
      [-83.972655, 33.605482],
      [-84.024279, 33.548226],
      [-84.024854, 33.547507],
      [-84.044493, 33.525776],
      [-84.136289, 33.57233],
      [-84.17213, 33.621919],
      [-84.181584, 33.629174],
      [-84.184143, 33.646157],
      [-84.104334, 33.636025],
      [-84.056614, 33.726608],
      [-84.023713, 33.752808]]]},
   'id': '13247'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13249',
    'STATE': '13',
    'COUNTY': '249',
    'NAME': 'Schley',
    'LSAD': 'County',
    'CENSUSAREA': 166.906},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.254613, 32.372053],
      [-84.255912, 32.296156],
      [-84.181657, 32.229703],
      [-84.183569, 32.158493],
      [-84.430215, 32.166257],
      [-84.392316, 32.414046],
      [-84.254613, 32.372053]]]},
   'id': '13249'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13251',
    'STATE': '13',
    'COUNTY': '251',
    'NAME': 'Screven',
    'LSAD': 'County',
    'CENSUSAREA': 645.101},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.405134, 32.744964],
      [-81.414761, 32.63744],
      [-81.418431, 32.634704],
      [-81.41866, 32.629392],
      [-81.411906, 32.61841],
      [-81.389338, 32.595436],
      [-81.389258, 32.595385],
      [-81.538558, 32.509059],
      [-81.548006, 32.489286],
      [-81.689643, 32.54629],
      [-81.841005, 32.649093],
      [-81.867938, 32.68115],
      [-81.767553, 32.909411],
      [-81.541831, 33.045654],
      [-81.51169, 33.024506],
      [-81.496637, 33.010224],
      [-81.491495, 32.998572],
      [-81.494736, 32.978998],
      [-81.49983, 32.963816],
      [-81.423772, 32.810514],
      [-81.404949, 32.747027],
      [-81.405134, 32.744964]]]},
   'id': '13251'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13253',
    'STATE': '13',
    'COUNTY': '253',
    'NAME': 'Seminole',
    'LSAD': 'County',
    'CENSUSAREA': 235.226},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.022121, 31.07548],
      [-85.001928, 31.074983],
      [-84.999869, 31.074736],
      [-84.922423, 31.07259],
      [-84.730855, 31.06919],
      [-84.755917, 30.88527],
      [-84.863465, 30.711487],
      [-84.864693, 30.711542],
      [-84.896122, 30.750591],
      [-84.941925, 30.887988],
      [-84.959626, 30.910587],
      [-84.983527, 30.935486],
      [-84.998628, 30.971386],
      [-85.002368, 31.000682],
      [-84.999428, 31.013843],
      [-85.022121, 31.07548]]]},
   'id': '13253'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13255',
    'STATE': '13',
    'COUNTY': '255',
    'NAME': 'Spalding',
    'LSAD': 'County',
    'CENSUSAREA': 196.469},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.502352, 33.221055],
      [-84.50029, 33.233444],
      [-84.508926, 33.245222],
      [-84.497527, 33.257422],
      [-84.432907, 33.2565],
      [-84.388118, 33.352465],
      [-84.3544, 33.352514],
      [-84.150581, 33.335639],
      [-84.102582, 33.298191],
      [-84.123767, 33.202824],
      [-84.248185, 33.189019],
      [-84.451336, 33.208889],
      [-84.496783, 33.183866],
      [-84.492889, 33.200006],
      [-84.502352, 33.221055]]]},
   'id': '13255'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13257',
    'STATE': '13',
    'COUNTY': '257',
    'NAME': 'Stephens',
    'LSAD': 'County',
    'CENSUSAREA': 179.131},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.337867, 34.687681],
      [-83.291683, 34.653396],
      [-83.240669, 34.624507],
      [-83.240676, 34.624307],
      [-83.167523, 34.600424],
      [-83.170978, 34.598798],
      [-83.170278, 34.592398],
      [-83.106874, 34.534053],
      [-83.177838, 34.477017],
      [-83.398396, 34.460883],
      [-83.413586, 34.468014],
      [-83.45977, 34.481142],
      [-83.337867, 34.687681]]]},
   'id': '13257'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13259',
    'STATE': '13',
    'COUNTY': '259',
    'NAME': 'Stewart',
    'LSAD': 'County',
    'CENSUSAREA': 458.733},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.923638, 32.231539],
      [-84.65892, 32.232852],
      [-84.649319, 32.232953],
      [-84.65582, 31.920308],
      [-84.907006, 31.924465],
      [-85.062246, 31.991857],
      [-85.050212, 32.024196],
      [-85.056029, 32.063055],
      [-85.047865, 32.142033],
      [-84.995929, 32.184852],
      [-84.964828, 32.194952],
      [-84.923638, 32.231539]]]},
   'id': '13259'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13261',
    'STATE': '13',
    'COUNTY': '261',
    'NAME': 'Sumter',
    'LSAD': 'County',
    'CENSUSAREA': 482.697},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.430215, 32.166257],
      [-84.183569, 32.158493],
      [-84.181657, 32.229703],
      [-84.027853, 32.171083],
      [-83.961278, 32.030595],
      [-83.922494, 31.909653],
      [-84.338143, 31.91619],
      [-84.338245, 31.873591],
      [-84.443807, 31.967456],
      [-84.431214, 32.134058],
      [-84.430215, 32.166257]]]},
   'id': '13261'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13263',
    'STATE': '13',
    'COUNTY': '263',
    'NAME': 'Talbot',
    'LSAD': 'County',
    'CENSUSAREA': 391.389},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.444353, 32.562083],
      [-84.637323, 32.534855],
      [-84.648977, 32.534956],
      [-84.658017, 32.528759],
      [-84.661721, 32.529148],
      [-84.678157, 32.518915],
      [-84.686265, 32.519624],
      [-84.69451, 32.518732],
      [-84.694603, 32.583945],
      [-84.700538, 32.84464],
      [-84.570669, 32.845179],
      [-84.506888, 32.881788],
      [-84.391017, 32.786956],
      [-84.286246, 32.747626],
      [-84.33794, 32.720647],
      [-84.408866, 32.561923],
      [-84.444353, 32.562083]]]},
   'id': '13263'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13265',
    'STATE': '13',
    'COUNTY': '265',
    'NAME': 'Taliaferro',
    'LSAD': 'County',
    'CENSUSAREA': 194.608},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.679975, 33.599792],
      [-82.751275, 33.510143],
      [-82.815315, 33.521137],
      [-82.851954, 33.443543],
      [-83.012853, 33.469178],
      [-83.014038, 33.580383],
      [-82.951142, 33.658032],
      [-82.995602, 33.693583],
      [-82.98888, 33.706315],
      [-82.949046, 33.733333],
      [-82.890599, 33.632877],
      [-82.812958, 33.655836],
      [-82.679975, 33.599792]]]},
   'id': '13265'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13267',
    'STATE': '13',
    'COUNTY': '267',
    'NAME': 'Tattnall',
    'LSAD': 'County',
    'CENSUSAREA': 479.403},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.761735, 32.0479],
      [-81.809931, 32.019657],
      [-81.824405, 32.014882],
      [-81.969052, 31.789324],
      [-81.981941, 31.784405],
      [-82.006777, 31.800047],
      [-82.014639, 31.8218],
      [-82.028346, 31.815513],
      [-82.048582, 31.827075],
      [-82.142843, 31.8993],
      [-82.225042, 31.913074],
      [-82.182017, 32.165593],
      [-82.232788, 32.318838],
      [-82.025339, 32.278883],
      [-81.980041, 32.081502],
      [-81.761735, 32.0479]]]},
   'id': '13267'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13269',
    'STATE': '13',
    'COUNTY': '269',
    'NAME': 'Taylor',
    'LSAD': 'County',
    'CENSUSAREA': 376.686},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.254613, 32.372053],
      [-84.392316, 32.414046],
      [-84.444353, 32.562083],
      [-84.408866, 32.561923],
      [-84.33794, 32.720647],
      [-84.286246, 32.747626],
      [-84.202628, 32.690018],
      [-84.104966, 32.673385],
      [-84.003363, 32.529927],
      [-84.001069, 32.520586],
      [-84.00849, 32.521769],
      [-84.122347, 32.505921],
      [-84.254613, 32.372053]]]},
   'id': '13269'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13271',
    'STATE': '13',
    'COUNTY': '271',
    'NAME': 'Telfair',
    'LSAD': 'County',
    'CENSUSAREA': 437.303},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.995698, 31.780983],
      [-83.177469, 31.847857],
      [-83.205739, 31.900325],
      [-82.942066, 32.124074],
      [-82.955466, 32.135274],
      [-82.934566, 32.153274],
      [-82.927865, 32.135274],
      [-82.887657, 32.079891],
      [-82.729112, 32.006878],
      [-82.645659, 31.918883],
      [-82.836366, 31.816154],
      [-82.86309, 31.783005],
      [-82.995698, 31.780983]]]},
   'id': '13271'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13273',
    'STATE': '13',
    'COUNTY': '273',
    'NAME': 'Terrell',
    'LSAD': 'County',
    'CENSUSAREA': 335.439},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.297801, 31.621951],
      [-84.450398, 31.621868],
      [-84.450416, 31.621255],
      [-84.546854, 31.621199],
      [-84.535527, 31.681828],
      [-84.603086, 31.772001],
      [-84.599776, 31.920171],
      [-84.45331, 31.919224],
      [-84.443807, 31.967456],
      [-84.338245, 31.873591],
      [-84.286456, 31.791182],
      [-84.297801, 31.621951]]]},
   'id': '13273'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13275',
    'STATE': '13',
    'COUNTY': '275',
    'NAME': 'Thomas',
    'LSAD': 'County',
    'CENSUSAREA': 544.596},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.083753, 30.675954],
      [-84.076964, 30.91557],
      [-84.119058, 30.980956],
      [-84.116644, 31.077971],
      [-84.004502, 31.077192],
      [-84.003627, 31.07729],
      [-84.003876, 31.041582],
      [-83.736158, 31.037679],
      [-83.743729, 30.658396],
      [-83.810536, 30.66188],
      [-83.820886, 30.662612],
      [-83.855216, 30.664412],
      [-83.88022, 30.665832],
      [-83.880317, 30.665807],
      [-84.007391, 30.672097],
      [-84.007454, 30.6721],
      [-84.039707, 30.673819],
      [-84.04181, 30.673878],
      [-84.046605, 30.6742],
      [-84.057228, 30.674705],
      [-84.083753, 30.675954]]]},
   'id': '13275'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13277',
    'STATE': '13',
    'COUNTY': '277',
    'NAME': 'Tift',
    'LSAD': 'County',
    'CENSUSAREA': 258.915},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.338728, 31.475991],
      [-83.434492, 31.350361],
      [-83.460644, 31.326263],
      [-83.512607, 31.327405],
      [-83.65409, 31.330661],
      [-83.649384, 31.567977],
      [-83.648972, 31.596466],
      [-83.500702, 31.59399],
      [-83.338728, 31.475991]]]},
   'id': '13277'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13279',
    'STATE': '13',
    'COUNTY': '279',
    'NAME': 'Toombs',
    'LSAD': 'County',
    'CENSUSAREA': 364.005},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.431531, 31.966182],
      [-82.439351, 31.96779],
      [-82.444451, 31.96749],
      [-82.452051, 31.96459],
      [-82.458152, 31.96389],
      [-82.479607, 31.971653],
      [-82.483131, 31.968961],
      [-82.40913, 32.353738],
      [-82.409127, 32.353772],
      [-82.409118, 32.35381],
      [-82.409118, 32.35383],
      [-82.354546, 32.292194],
      [-82.232788, 32.318838],
      [-82.182017, 32.165593],
      [-82.225042, 31.913074],
      [-82.431531, 31.966182]]]},
   'id': '13279'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13281',
    'STATE': '13',
    'COUNTY': '281',
    'NAME': 'Towns',
    'LSAD': 'County',
    'CENSUSAREA': 166.563},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.780401, 34.792893],
      [-83.819099, 34.91369],
      [-83.915104, 34.926887],
      [-83.936413, 34.987485],
      [-83.673621, 34.987111],
      [-83.620185, 34.992091],
      [-83.549381, 34.992492],
      [-83.656792, 34.878492],
      [-83.652194, 34.822993],
      [-83.657921, 34.813682],
      [-83.666855, 34.806528],
      [-83.681596, 34.800593],
      [-83.685685, 34.800997],
      [-83.693155, 34.797322],
      [-83.69599, 34.79352],
      [-83.701813, 34.792488],
      [-83.704146, 34.790982],
      [-83.707757, 34.79171],
      [-83.711803, 34.79052],
      [-83.714186, 34.793112],
      [-83.721035, 34.79611],
      [-83.72203, 34.797271],
      [-83.726874, 34.797732],
      [-83.735981, 34.800071],
      [-83.743107, 34.801191],
      [-83.780401, 34.792893]]]},
   'id': '13281'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13283',
    'STATE': '13',
    'COUNTY': '283',
    'NAME': 'Treutlen',
    'LSAD': 'County',
    'CENSUSAREA': 199.436},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.409118, 32.35383],
      [-82.409118, 32.35381],
      [-82.409127, 32.353772],
      [-82.40913, 32.353738],
      [-82.655486, 32.297561],
      [-82.721964, 32.309283],
      [-82.737137, 32.33803],
      [-82.647733, 32.512507],
      [-82.488941, 32.49183],
      [-82.38194, 32.440596],
      [-82.409118, 32.35383]]]},
   'id': '13283'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13285',
    'STATE': '13',
    'COUNTY': '285',
    'NAME': 'Troup',
    'LSAD': 'County',
    'CENSUSAREA': 413.988},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.236509, 33.129562],
      [-84.939015, 33.224693],
      [-84.862359, 33.191173],
      [-84.861768, 32.872495],
      [-85.184131, 32.870525],
      [-85.221868, 33.055538],
      [-85.223261, 33.06258],
      [-85.232378, 33.108077],
      [-85.236509, 33.129562]]]},
   'id': '13285'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13287',
    'STATE': '13',
    'COUNTY': '287',
    'NAME': 'Turner',
    'LSAD': 'County',
    'CENSUSAREA': 285.393},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.480176, 31.847312],
      [-83.453634, 31.757861],
      [-83.500702, 31.59399],
      [-83.648972, 31.596466],
      [-83.649384, 31.567977],
      [-83.78688, 31.62281],
      [-83.802223, 31.803495],
      [-83.612642, 31.804128],
      [-83.612256, 31.854089],
      [-83.480176, 31.847312]]]},
   'id': '13287'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13289',
    'STATE': '13',
    'COUNTY': '289',
    'NAME': 'Twiggs',
    'LSAD': 'County',
    'CENSUSAREA': 358.398},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.40699, 32.89822],
      [-83.226536, 32.584201],
      [-83.497923, 32.452198],
      [-83.566198, 32.660786],
      [-83.597656, 32.664338],
      [-83.502603, 32.801119],
      [-83.513511, 32.844868],
      [-83.407668, 32.897822],
      [-83.40699, 32.89822]]]},
   'id': '13289'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13291',
    'STATE': '13',
    'COUNTY': '291',
    'NAME': 'Union',
    'LSAD': 'County',
    'CENSUSAREA': 321.926},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.005457, 34.98744],
      [-83.936646, 34.987485],
      [-83.936413, 34.987485],
      [-83.915104, 34.926887],
      [-83.819099, 34.91369],
      [-83.780401, 34.792893],
      [-83.856506, 34.722191],
      [-83.939007, 34.740859],
      [-84.03651, 34.641934],
      [-84.158035, 34.648243],
      [-84.093193, 34.801411],
      [-84.107422, 34.886896],
      [-84.178672, 34.946497],
      [-84.129455, 34.987504],
      [-84.029954, 34.987321],
      [-84.021357, 34.98743],
      [-84.005457, 34.98744]]]},
   'id': '13291'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13293',
    'STATE': '13',
    'COUNTY': '293',
    'NAME': 'Upson',
    'LSAD': 'County',
    'CENSUSAREA': 323.437},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.202628, 32.690018],
      [-84.286246, 32.747626],
      [-84.391017, 32.786956],
      [-84.506888, 32.881788],
      [-84.52702, 32.970548],
      [-84.489708, 32.993729],
      [-84.27014, 32.991011],
      [-84.122361, 32.989576],
      [-84.12334, 32.932184],
      [-84.124275, 32.849562],
      [-84.202628, 32.690018]]]},
   'id': '13293'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13295',
    'STATE': '13',
    'COUNTY': '295',
    'NAME': 'Walker',
    'LSAD': 'County',
    'CENSUSAREA': 446.379},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.069159, 34.587184],
      [-85.107748, 34.587483],
      [-85.527127, 34.588684],
      [-85.534423, 34.623789],
      [-85.450409, 34.759241],
      [-85.450561, 34.831677],
      [-85.363919, 34.983375],
      [-85.308257, 34.984375],
      [-85.305457, 34.984475],
      [-85.301488, 34.984475],
      [-85.2945, 34.984651],
      [-85.277556, 34.984975],
      [-85.275856, 34.984975],
      [-85.265055, 34.985075],
      [-85.264762, 34.854277],
      [-85.20218, 34.854451],
      [-85.201856, 34.77508],
      [-85.144789, 34.767639],
      [-85.168851, 34.720279],
      [-85.050847, 34.71998],
      [-85.050446, 34.622482],
      [-85.055095, 34.62239],
      [-85.055206, 34.622383],
      [-85.06038, 34.62245],
      [-85.060499, 34.587184],
      [-85.069159, 34.587184]]]},
   'id': '13295'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13297',
    'STATE': '13',
    'COUNTY': '297',
    'NAME': 'Walton',
    'LSAD': 'County',
    'CENSUSAREA': 325.68},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.914823, 33.744203],
      [-83.953332, 33.768034],
      [-83.954499, 33.76892],
      [-83.982033, 33.786054],
      [-83.799104, 33.929844],
      [-83.763835, 33.896682],
      [-83.647031, 33.906198],
      [-83.505928, 33.81776],
      [-83.680896, 33.596919],
      [-83.77735, 33.658301],
      [-83.914823, 33.744203]]]},
   'id': '13297'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13299',
    'STATE': '13',
    'COUNTY': '299',
    'NAME': 'Ware',
    'LSAD': 'County',
    'CENSUSAREA': 892.461},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.284561, 31.224449],
      [-82.208732, 31.170938],
      [-82.208262, 31.084768],
      [-82.131698, 31.010714],
      [-82.415603, 31.01359],
      [-82.420442, 30.795229],
      [-82.149872, 30.784336],
      [-82.214847, 30.567009],
      [-82.249841, 30.570863],
      [-82.2581, 30.571559],
      [-82.287343, 30.573458],
      [-82.374844, 30.579004],
      [-82.418915, 30.581745],
      [-82.435852, 30.820068],
      [-82.495476, 30.819553],
      [-82.490558, 30.963166],
      [-82.592071, 31.018487],
      [-82.671669, 31.183739],
      [-82.699206, 31.278104],
      [-82.629622, 31.274726],
      [-82.628975, 31.36393],
      [-82.628181, 31.469351],
      [-82.597509, 31.469293],
      [-82.494718, 31.46869],
      [-82.417246, 31.417119],
      [-82.383705, 31.291143],
      [-82.284561, 31.224449]]]},
   'id': '13299'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13301',
    'STATE': '13',
    'COUNTY': '301',
    'NAME': 'Warren',
    'LSAD': 'County',
    'CENSUSAREA': 284.298},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.383829, 33.312106],
      [-82.431957, 33.27483],
      [-82.559753, 33.32727],
      [-82.755846, 33.25344],
      [-82.851954, 33.443543],
      [-82.815315, 33.521137],
      [-82.751275, 33.510143],
      [-82.679975, 33.599792],
      [-82.670284, 33.604138],
      [-82.65912, 33.603048],
      [-82.656606, 33.596812],
      [-82.652208, 33.596718],
      [-82.655937, 33.60661],
      [-82.652439, 33.611202],
      [-82.649705, 33.608768],
      [-82.549373, 33.357748],
      [-82.383829, 33.312106]]]},
   'id': '13301'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13303',
    'STATE': '13',
    'COUNTY': '303',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 678.452},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.661917, 33.126331],
      [-82.550197, 33.019247],
      [-82.510851, 32.917754],
      [-82.521052, 32.822356],
      [-82.768365, 32.769108],
      [-82.802456, 32.809756],
      [-82.946966, 32.759358],
      [-83.073648, 32.946562],
      [-83.052197, 33.080682],
      [-82.888866, 33.138603],
      [-82.855046, 33.196427],
      [-82.748311, 33.238348],
      [-82.661917, 33.126331]]]},
   'id': '13303'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13305',
    'STATE': '13',
    'COUNTY': '305',
    'NAME': 'Wayne',
    'LSAD': 'County',
    'CENSUSAREA': 641.777},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-81.969052, 31.789324],
      [-81.850624, 31.667671],
      [-81.663206, 31.538667],
      [-81.62429, 31.452982],
      [-81.69199, 31.400519],
      [-81.731694, 31.330048],
      [-81.801052, 31.363737],
      [-81.923238, 31.345875],
      [-82.041129, 31.373721],
      [-82.052754, 31.454567],
      [-82.132794, 31.471262],
      [-82.133013, 31.773404],
      [-82.048582, 31.827075],
      [-82.028346, 31.815513],
      [-82.014639, 31.8218],
      [-82.006777, 31.800047],
      [-81.981941, 31.784405],
      [-81.969052, 31.789324]]]},
   'id': '13305'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13307',
    'STATE': '13',
    'COUNTY': '307',
    'NAME': 'Webster',
    'LSAD': 'County',
    'CENSUSAREA': 209.118},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.65582, 31.920308],
      [-84.649319, 32.232953],
      [-84.527117, 32.134556],
      [-84.431214, 32.134058],
      [-84.443807, 31.967456],
      [-84.45331, 31.919224],
      [-84.599776, 31.920171],
      [-84.65582, 31.920308]]]},
   'id': '13307'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13309',
    'STATE': '13',
    'COUNTY': '309',
    'NAME': 'Wheeler',
    'LSAD': 'County',
    'CENSUSAREA': 295.484},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.655486, 32.297561],
      [-82.612876, 32.161549],
      [-82.598068, 32.014429],
      [-82.543655, 31.958914],
      [-82.645659, 31.918883],
      [-82.729112, 32.006878],
      [-82.887657, 32.079891],
      [-82.927865, 32.135274],
      [-82.87179, 32.18273],
      [-82.884803, 32.196072],
      [-82.721964, 32.309283],
      [-82.655486, 32.297561]]]},
   'id': '13309'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13311',
    'STATE': '13',
    'COUNTY': '311',
    'NAME': 'White',
    'LSAD': 'County',
    'CENSUSAREA': 240.686},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.856506, 34.722191],
      [-83.780401, 34.792893],
      [-83.743107, 34.801191],
      [-83.735981, 34.800071],
      [-83.726874, 34.797732],
      [-83.72203, 34.797271],
      [-83.721035, 34.79611],
      [-83.714186, 34.793112],
      [-83.711803, 34.79052],
      [-83.707757, 34.79171],
      [-83.704146, 34.790982],
      [-83.701813, 34.792488],
      [-83.69599, 34.79352],
      [-83.693155, 34.797322],
      [-83.685685, 34.800997],
      [-83.681596, 34.800593],
      [-83.623296, 34.732194],
      [-83.662819, 34.659801],
      [-83.61554, 34.552864],
      [-83.666413, 34.503598],
      [-83.843405, 34.505494],
      [-83.877276, 34.629597],
      [-83.856506, 34.722191]]]},
   'id': '13311'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13313',
    'STATE': '13',
    'COUNTY': '313',
    'NAME': 'Whitfield',
    'LSAD': 'County',
    'CENSUSAREA': 290.464},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.97986, 34.987647],
      [-84.976973, 34.987669],
      [-84.955623, 34.98783],
      [-84.94442, 34.987864],
      [-84.939306, 34.987916],
      [-84.861314, 34.987791],
      [-84.858032, 34.987746],
      [-84.831799, 34.988004],
      [-84.82401, 34.987707],
      [-84.820478, 34.987913],
      [-84.817279, 34.987753],
      [-84.810742, 34.987615],
      [-84.810477, 34.987607],
      [-84.818715, 34.87695],
      [-84.878499, 34.77961],
      [-84.864945, 34.707356],
      [-84.933722, 34.706799],
      [-84.913456, 34.634128],
      [-85.050446, 34.622482],
      [-85.050847, 34.71998],
      [-85.168851, 34.720279],
      [-85.144789, 34.767639],
      [-85.061648, 34.819478],
      [-84.97986, 34.987647]]]},
   'id': '13313'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13315',
    'STATE': '13',
    'COUNTY': '315',
    'NAME': 'Wilcox',
    'LSAD': 'County',
    'CENSUSAREA': 377.705},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.177469, 31.847857],
      [-83.480176, 31.847312],
      [-83.612256, 31.854089],
      [-83.609663, 32.027938],
      [-83.608407, 32.116466],
      [-83.608547, 32.118405],
      [-83.337313, 32.105885],
      [-83.292061, 31.984506],
      [-83.205739, 31.900325],
      [-83.177469, 31.847857]]]},
   'id': '13315'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13317',
    'STATE': '13',
    'COUNTY': '317',
    'NAME': 'Wilkes',
    'LSAD': 'County',
    'CENSUSAREA': 469.49},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-82.645451, 33.984195],
      [-82.593527, 33.827322],
      [-82.479518, 33.639535],
      [-82.649705, 33.608768],
      [-82.652439, 33.611202],
      [-82.655937, 33.60661],
      [-82.652208, 33.596718],
      [-82.656606, 33.596812],
      [-82.65912, 33.603048],
      [-82.670284, 33.604138],
      [-82.679975, 33.599792],
      [-82.812958, 33.655836],
      [-82.890599, 33.632877],
      [-82.949046, 33.733333],
      [-82.987286, 33.78071],
      [-82.874587, 33.921767],
      [-82.779506, 33.971124],
      [-82.645451, 33.984195]]]},
   'id': '13317'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13319',
    'STATE': '13',
    'COUNTY': '319',
    'NAME': 'Wilkinson',
    'LSAD': 'County',
    'CENSUSAREA': 447.308},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.357685, 32.926141],
      [-83.159585, 33.002803],
      [-83.073648, 32.946562],
      [-82.946966, 32.759358],
      [-82.946366, 32.741258],
      [-82.957066, 32.708318],
      [-82.95757, 32.708198],
      [-83.226536, 32.584201],
      [-83.40699, 32.89822],
      [-83.40682, 32.898446],
      [-83.357685, 32.926141]]]},
   'id': '13319'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US13321',
    'STATE': '13',
    'COUNTY': '321',
    'NAME': 'Worth',
    'LSAD': 'County',
    'CENSUSAREA': 570.702},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.939437, 31.847929],
      [-83.802223, 31.803495],
      [-83.78688, 31.62281],
      [-83.649384, 31.567977],
      [-83.65409, 31.330661],
      [-83.99943, 31.334966],
      [-83.997796, 31.443753],
      [-83.997679, 31.462773],
      [-83.982569, 31.46348],
      [-84.018404, 31.650274],
      [-84.032344, 31.716772],
      [-83.939437, 31.847929]]]},
   'id': '13321'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US15001',
    'STATE': '15',
    'COUNTY': '001',
    'NAME': 'Hawaii',
    'LSAD': 'County',
    'CENSUSAREA': 4028.417},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-155.778234, 20.245743],
      [-155.772734, 20.245409],
      [-155.746893, 20.232325],
      [-155.737004, 20.222773],
      [-155.735822, 20.212417],
      [-155.732704, 20.205392],
      [-155.653966, 20.16736],
      [-155.630382, 20.146916],
      [-155.624565, 20.145911],
      [-155.607797, 20.137987],
      [-155.600909, 20.126573],
      [-155.598033, 20.124539],
      [-155.590923, 20.122497],
      [-155.58168, 20.123617],
      [-155.568368, 20.130545],
      [-155.558933, 20.13157],
      [-155.523661, 20.120028],
      [-155.516795, 20.11523],
      [-155.502561, 20.114155],
      [-155.468211, 20.104296],
      [-155.443957, 20.095318],
      [-155.405459, 20.078772],
      [-155.4024, 20.075541],
      [-155.387578, 20.067119],
      [-155.33021, 20.038517],
      [-155.29548, 20.024438],
      [-155.282629, 20.021969],
      [-155.270316, 20.014525],
      [-155.240933, 19.990173],
      [-155.204486, 19.969438],
      [-155.194593, 19.958368],
      [-155.179939, 19.949372],
      [-155.149215, 19.922872],
      [-155.144394, 19.920523],
      [-155.131235, 19.906801],
      [-155.124618, 19.897288],
      [-155.12175, 19.886099],
      [-155.107541, 19.872467],
      [-155.098716, 19.867811],
      [-155.095032, 19.867882],
      [-155.086341, 19.855399],
      [-155.084357, 19.849736],
      [-155.085674, 19.838584],
      [-155.088979, 19.826656],
      [-155.094414, 19.81491],
      [-155.09207, 19.799409],
      [-155.091216, 19.776368],
      [-155.093517, 19.771832],
      [-155.093387, 19.737751],
      [-155.087118, 19.728013],
      [-155.079426, 19.726193],
      [-155.063972, 19.728917],
      [-155.045382, 19.739824],
      [-155.006423, 19.739286],
      [-154.997278, 19.72858],
      [-154.987168, 19.708524],
      [-154.981102, 19.690687],
      [-154.984718, 19.672161],
      [-154.983778, 19.641647],
      [-154.974342, 19.633201],
      [-154.963933, 19.627605],
      [-154.950359, 19.626461],
      [-154.947874, 19.62425],
      [-154.947718, 19.621947],
      [-154.951014, 19.613614],
      [-154.947106, 19.604856],
      [-154.93394, 19.597505],
      [-154.928205, 19.592702],
      [-154.924422, 19.586553],
      [-154.903542, 19.570622],
      [-154.875, 19.556797],
      [-154.852618, 19.549172],
      [-154.837384, 19.538354],
      [-154.826732, 19.537626],
      [-154.814417, 19.53009],
      [-154.809561, 19.522377],
      [-154.809379, 19.519086],
      [-154.822968, 19.48129],
      [-154.838545, 19.463642],
      [-154.86854, 19.438126],
      [-154.887817, 19.426425],
      [-154.928772, 19.397646],
      [-154.944185, 19.381852],
      [-154.964619, 19.365646],
      [-154.980861, 19.349291],
      [-155.020537, 19.331317],
      [-155.061729, 19.316636],
      [-155.113272, 19.290613],
      [-155.1337, 19.276099],
      [-155.159635, 19.268375],
      [-155.172413, 19.26906],
      [-155.187427, 19.266156],
      [-155.19626, 19.261295],
      [-155.205892, 19.260907],
      [-155.243961, 19.271313],
      [-155.264619, 19.274213],
      [-155.296761, 19.266289],
      [-155.303808, 19.261835],
      [-155.31337, 19.250698],
      [-155.341268, 19.234039],
      [-155.349148, 19.217756],
      [-155.360631, 19.20893],
      [-155.378638, 19.202435],
      [-155.390701, 19.201171],
      [-155.417369, 19.187858],
      [-155.427093, 19.179546],
      [-155.432519, 19.170623],
      [-155.453516, 19.151952],
      [-155.465663, 19.146964],
      [-155.505281, 19.137908],
      [-155.51474, 19.132501],
      [-155.51214, 19.128174],
      [-155.512137, 19.124296],
      [-155.519652, 19.117025],
      [-155.526136, 19.115889],
      [-155.528902, 19.11371],
      [-155.544806, 19.091059],
      [-155.551129, 19.08878],
      [-155.557817, 19.08213],
      [-155.555326, 19.069377],
      [-155.555177, 19.053932],
      [-155.557371, 19.046565],
      [-155.566446, 19.032531],
      [-155.576599, 19.027412],
      [-155.581903, 19.02224],
      [-155.596032, 18.998833],
      [-155.596521, 18.980654],
      [-155.601866, 18.971572],
      [-155.613966, 18.970399],
      [-155.625256, 18.961951],
      [-155.625, 18.959934],
      [-155.638054, 18.941723],
      [-155.658486, 18.924835],
      [-155.672005, 18.917466],
      [-155.681825, 18.918694],
      [-155.687716, 18.923358],
      [-155.690171, 18.932195],
      [-155.693117, 18.940542],
      [-155.726043, 18.969437],
      [-155.763598, 18.981837],
      [-155.806109, 19.013967],
      [-155.853943, 19.023762],
      [-155.88155, 19.036644],
      [-155.884077, 19.039266],
      [-155.886278, 19.05576],
      [-155.903693, 19.080777],
      [-155.908355, 19.081138],
      [-155.921389, 19.121183],
      [-155.917292, 19.155963],
      [-155.903339, 19.217792],
      [-155.90491, 19.230147],
      [-155.902565, 19.258427],
      [-155.895435, 19.274639],
      [-155.890842, 19.298905],
      [-155.887356, 19.337101],
      [-155.888701, 19.348031],
      [-155.898792, 19.377984],
      [-155.913849, 19.401107],
      [-155.909087, 19.415455],
      [-155.921707, 19.43055],
      [-155.924269, 19.438794],
      [-155.925166, 19.468081],
      [-155.922609, 19.478611],
      [-155.924124, 19.481406],
      [-155.930523, 19.484921],
      [-155.935641, 19.485628],
      [-155.936403, 19.481905],
      [-155.939145, 19.481577],
      [-155.95149, 19.486649],
      [-155.952897, 19.488805],
      [-155.953663, 19.510003],
      [-155.960457, 19.546612],
      [-155.962264, 19.551779],
      [-155.965211, 19.554745],
      [-155.96935, 19.555963],
      [-155.970969, 19.586328],
      [-155.978206, 19.608159],
      [-155.997728, 19.642816],
      [-156.028982, 19.650098],
      [-156.032928, 19.653905],
      [-156.034994, 19.65936],
      [-156.033326, 19.66923],
      [-156.027427, 19.672154],
      [-156.029281, 19.678908],
      [-156.036079, 19.690252],
      [-156.04796, 19.698938],
      [-156.051652, 19.703649],
      [-156.052485, 19.718667],
      [-156.064364, 19.730766],
      [-156.05722, 19.742536],
      [-156.052315, 19.756836],
      [-156.049651, 19.780452],
      [-156.021732, 19.8022],
      [-156.006267, 19.81758],
      [-155.982821, 19.845651],
      [-155.976651, 19.85053],
      [-155.964817, 19.855183],
      [-155.949251, 19.857034],
      [-155.945297, 19.853443],
      [-155.940311, 19.852305],
      [-155.925843, 19.858928],
      [-155.926938, 19.870221],
      [-155.92549, 19.875],
      [-155.915662, 19.887126],
      [-155.901987, 19.912081],
      [-155.894099, 19.923135],
      [-155.894474, 19.926927],
      [-155.892533, 19.932162],
      [-155.866919, 19.954172],
      [-155.856588, 19.968885],
      [-155.840708, 19.976952],
      [-155.838692, 19.975527],
      [-155.835312, 19.976078],
      [-155.831948, 19.982775],
      [-155.828965, 19.995542],
      [-155.825473, 20.025944],
      [-155.828182, 20.035424],
      [-155.850385, 20.062506],
      [-155.866931, 20.078652],
      [-155.88419, 20.10675],
      [-155.899149, 20.145728],
      [-155.906035, 20.205157],
      [-155.901452, 20.235787],
      [-155.890663, 20.25524],
      [-155.882631, 20.263026],
      [-155.873921, 20.267744],
      [-155.853293, 20.271548],
      [-155.811459, 20.26032],
      [-155.783242, 20.246395],
      [-155.778234, 20.245743]]]},
   'id': '15001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US15003',
    'STATE': '15',
    'COUNTY': '003',
    'NAME': 'Honolulu',
    'LSAD': 'County',
    'CENSUSAREA': 600.743},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-158.044485, 21.306011],
      [-158.0883, 21.2988],
      [-158.1033, 21.2979],
      [-158.1127, 21.3019],
      [-158.1211, 21.3169],
      [-158.1225, 21.3224],
      [-158.111949, 21.326622],
      [-158.114196, 21.331123],
      [-158.119427, 21.334594],
      [-158.125459, 21.330264],
      [-158.13324, 21.359207],
      [-158.1403, 21.3738],
      [-158.149719, 21.385208],
      [-158.161743, 21.396282],
      [-158.1792, 21.4043],
      [-158.181274, 21.409626],
      [-158.181, 21.420868],
      [-158.182648, 21.430073],
      [-158.192352, 21.44804],
      [-158.205383, 21.459793],
      [-158.219446, 21.46978],
      [-158.233, 21.4876],
      [-158.231171, 21.523857],
      [-158.23175, 21.533035],
      [-158.234314, 21.540058],
      [-158.250671, 21.557373],
      [-158.27951, 21.575794],
      [-158.277679, 21.578789],
      [-158.254425, 21.582684],
      [-158.190704, 21.585892],
      [-158.17, 21.5823],
      [-158.12561, 21.586739],
      [-158.10672, 21.596577],
      [-158.106689, 21.603024],
      [-158.1095, 21.6057],
      [-158.108185, 21.607487],
      [-158.079895, 21.628101],
      [-158.0668, 21.6437],
      [-158.066711, 21.65234],
      [-158.0639, 21.6584],
      [-158.0372, 21.6843],
      [-158.018127, 21.699955],
      [-157.9923, 21.708],
      [-157.98703, 21.712494],
      [-157.968628, 21.712704],
      [-157.947174, 21.689568],
      [-157.939, 21.669],
      [-157.9301, 21.6552],
      [-157.924591, 21.651183],
      [-157.9228, 21.6361],
      [-157.9238, 21.6293],
      [-157.910797, 21.611183],
      [-157.900574, 21.605885],
      [-157.87735, 21.575277],
      [-157.878601, 21.560181],
      [-157.872528, 21.557568],
      [-157.8669, 21.5637],
      [-157.85614, 21.560661],
      [-157.85257, 21.557514],
      [-157.836945, 21.529945],
      [-157.837372, 21.512085],
      [-157.849579, 21.509598],
      [-157.852625, 21.499971],
      [-157.84549, 21.466747],
      [-157.84099, 21.459483],
      [-157.82489, 21.455379],
      [-157.8163, 21.4502],
      [-157.8139, 21.4403],
      [-157.8059, 21.4301],
      [-157.786513, 21.415633],
      [-157.779846, 21.417309],
      [-157.774455, 21.421352],
      [-157.772209, 21.431236],
      [-157.774905, 21.453698],
      [-157.772209, 21.457741],
      [-157.764572, 21.461335],
      [-157.754239, 21.461335],
      [-157.737617, 21.459089],
      [-157.731777, 21.455944],
      [-157.731328, 21.444713],
      [-157.73582, 21.438424],
      [-157.740762, 21.424048],
      [-157.741211, 21.414614],
      [-157.7386, 21.4043],
      [-157.730191, 21.401871],
      [-157.728221, 21.402104],
      [-157.726421, 21.402845],
      [-157.724324, 21.403311],
      [-157.723794, 21.40329],
      [-157.723286, 21.403227],
      [-157.722735, 21.403121],
      [-157.722544, 21.403036],
      [-157.721845, 21.401596],
      [-157.721083, 21.399541],
      [-157.7189, 21.3961],
      [-157.7089, 21.3833],
      [-157.7087, 21.3793],
      [-157.7126, 21.3689],
      [-157.7106, 21.3585],
      [-157.7088, 21.3534],
      [-157.6971, 21.3364],
      [-157.6938, 21.3329],
      [-157.6619, 21.3131],
      [-157.6518, 21.3139],
      [-157.652629, 21.308709],
      [-157.6537, 21.302],
      [-157.6946, 21.2739],
      [-157.6944, 21.2665],
      [-157.7001, 21.264],
      [-157.7097, 21.2621],
      [-157.7139, 21.2638],
      [-157.7142, 21.2665],
      [-157.7114, 21.272],
      [-157.7122, 21.2814],
      [-157.7143, 21.2845],
      [-157.7213, 21.2869],
      [-157.7572, 21.278],
      [-157.765, 21.2789],
      [-157.7782, 21.2735],
      [-157.7931, 21.2604],
      [-157.8096, 21.2577],
      [-157.8211, 21.2606],
      [-157.8241, 21.2646],
      [-157.8253, 21.2714],
      [-157.8319, 21.2795],
      [-157.8457, 21.29],
      [-157.89, 21.3065],
      [-157.894518, 21.319632],
      [-157.898969, 21.327391],
      [-157.90482, 21.329172],
      [-157.918939, 21.318615],
      [-157.917921, 21.313781],
      [-157.913469, 21.310983],
      [-157.910925, 21.305768],
      [-157.952263, 21.306531],
      [-157.950736, 21.312509],
      [-157.951881, 21.318742],
      [-157.967971, 21.327986],
      [-157.973334, 21.327426],
      [-157.989424, 21.317984],
      [-158.0245, 21.3093],
      [-158.044485, 21.306011]]]},
   'id': '15003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US15005',
    'STATE': '15',
    'COUNTY': '005',
    'NAME': 'Kalawao',
    'LSAD': 'County',
    'CENSUSAREA': 11.991},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-157.014553, 21.185503],
      [-156.999108, 21.182221],
      [-156.991318, 21.18551],
      [-156.987768, 21.18935],
      [-156.982343, 21.207798],
      [-156.984464, 21.210063],
      [-156.984032, 21.212198],
      [-156.974002, 21.218503],
      [-156.969064, 21.217018],
      [-156.962847, 21.212131],
      [-156.951654, 21.191662],
      [-156.950808, 21.182636],
      [-156.946159, 21.175963],
      [-156.918248, 21.168279],
      [-156.898876, 21.147604],
      [-156.918072, 21.129479],
      [-156.942135, 21.160173],
      [-157.014553, 21.185503]]]},
   'id': '15005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US15007',
    'STATE': '15',
    'COUNTY': '007',
    'NAME': 'Kauai',
    'LSAD': 'County',
    'CENSUSAREA': 619.956},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-160.555771, 21.668287],
       [-160.551041, 21.670101],
       [-160.54332, 21.667128],
       [-160.542404, 21.648081],
       [-160.549316, 21.645353],
       [-160.554123, 21.649546],
       [-160.555771, 21.668287]]],
     [[[-160.125, 21.95909],
       [-160.122262, 21.962881],
       [-160.112746, 21.995245],
       [-160.09645, 22.001489],
       [-160.072123, 22.003334],
       [-160.058543, 21.99638],
       [-160.051992, 21.983681],
       [-160.052729, 21.980321],
       [-160.056336, 21.977939],
       [-160.060549, 21.976729],
       [-160.063349, 21.978354],
       [-160.065811, 21.976562],
       [-160.078393, 21.955153],
       [-160.085787, 21.927295],
       [-160.080012, 21.910808],
       [-160.079065, 21.89608],
       [-160.098897, 21.884711],
       [-160.124283, 21.876789],
       [-160.147609, 21.872814],
       [-160.16162, 21.864746],
       [-160.174796, 21.846923],
       [-160.189782, 21.82245],
       [-160.205211, 21.789053],
       [-160.200427, 21.786479],
       [-160.205851, 21.779518],
       [-160.218044, 21.783755],
       [-160.23478, 21.795418],
       [-160.24961, 21.815145],
       [-160.244943, 21.848943],
       [-160.231028, 21.886263],
       [-160.228965, 21.889117],
       [-160.21383, 21.899193],
       [-160.205528, 21.907507],
       [-160.202716, 21.912422],
       [-160.190158, 21.923592],
       [-160.167471, 21.932863],
       [-160.13705, 21.948632],
       [-160.127302, 21.955508],
       [-160.125, 21.95909]]],
     [[[-159.431707, 22.220015],
       [-159.40732, 22.230555],
       [-159.388119, 22.223252],
       [-159.385977, 22.220009],
       [-159.367563, 22.214906],
       [-159.359842, 22.214831],
       [-159.357227, 22.217744],
       [-159.353795, 22.217669],
       [-159.339964, 22.208519],
       [-159.315613, 22.186817],
       [-159.308855, 22.155555],
       [-159.297808, 22.149748],
       [-159.295875, 22.144547],
       [-159.295271, 22.13039],
       [-159.297143, 22.113815],
       [-159.317451, 22.080944],
       [-159.321667, 22.063411],
       [-159.324775, 22.05867],
       [-159.333267, 22.054639],
       [-159.337996, 22.046575],
       [-159.341401, 22.028978],
       [-159.333224, 21.973005],
       [-159.333109, 21.964176],
       [-159.334714, 21.961099],
       [-159.350828, 21.950817],
       [-159.356613, 21.939546],
       [-159.382349, 21.924479],
       [-159.408284, 21.897781],
       [-159.425862, 21.884527],
       [-159.446599, 21.871647],
       [-159.471962, 21.88292],
       [-159.490914, 21.888898],
       [-159.517973, 21.890996],
       [-159.555415, 21.891355],
       [-159.574991, 21.896585],
       [-159.577784, 21.900486],
       [-159.584272, 21.899038],
       [-159.610241, 21.898356],
       [-159.637849, 21.917166],
       [-159.648132, 21.93297],
       [-159.671872, 21.957038],
       [-159.681493, 21.960054],
       [-159.705255, 21.963427],
       [-159.72014, 21.970789],
       [-159.758218, 21.980694],
       [-159.765735, 21.986593],
       [-159.788139, 22.018411],
       [-159.790932, 22.031177],
       [-159.786543, 22.06369],
       [-159.780096, 22.072567],
       [-159.748159, 22.100388],
       [-159.741223, 22.115666],
       [-159.733457, 22.142756],
       [-159.726043, 22.152171],
       [-159.699978, 22.165252],
       [-159.66984, 22.170782],
       [-159.608794, 22.207878],
       [-159.591596, 22.219456],
       [-159.583965, 22.22668],
       [-159.559643, 22.229185],
       [-159.554166, 22.228212],
       [-159.548594, 22.226263],
       [-159.54115, 22.216764],
       [-159.534594, 22.219403],
       [-159.523769, 22.217602],
       [-159.51941, 22.215646],
       [-159.518348, 22.211182],
       [-159.515574, 22.208008],
       [-159.507811, 22.205987],
       [-159.501055, 22.211064],
       [-159.500821, 22.225538],
       [-159.488558, 22.23317],
       [-159.480158, 22.232715],
       [-159.467007, 22.226529],
       [-159.45619, 22.228811],
       [-159.441809, 22.226321],
       [-159.431707, 22.220015]]]]},
   'id': '15007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US15009',
    'STATE': '15',
    'COUNTY': '009',
    'NAME': 'Maui',
    'LSAD': 'County',
    'CENSUSAREA': 1161.521},
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-157.014553, 21.185503],
       [-156.942135, 21.160173],
       [-156.918072, 21.129479],
       [-156.898876, 21.147604],
       [-156.918248, 21.168279],
       [-156.903466, 21.16421],
       [-156.898174, 21.16594],
       [-156.89613, 21.169561],
       [-156.896537, 21.172208],
       [-156.867944, 21.16452],
       [-156.841592, 21.167926],
       [-156.821944, 21.174693],
       [-156.771495, 21.180053],
       [-156.742231, 21.176214],
       [-156.738341, 21.17202],
       [-156.736648, 21.16188],
       [-156.719386, 21.163911],
       [-156.712696, 21.161547],
       [-156.714158, 21.152238],
       [-156.726033, 21.13236],
       [-156.748932, 21.1086],
       [-156.775995, 21.089751],
       [-156.790815, 21.081686],
       [-156.794136, 21.075796],
       [-156.835351, 21.06336],
       [-156.865795, 21.057801],
       [-156.877137, 21.0493],
       [-156.891946, 21.051831],
       [-156.89517, 21.055771],
       [-156.953719, 21.067761],
       [-157.00295, 21.083282],
       [-157.02617, 21.089015],
       [-157.032045, 21.091094],
       [-157.037667, 21.097864],
       [-157.079696, 21.105835],
       [-157.095373, 21.10636],
       [-157.125, 21.1026],
       [-157.143483, 21.096632],
       [-157.254061, 21.090601],
       [-157.298054, 21.096917],
       [-157.313343, 21.105755],
       [-157.299187, 21.132488],
       [-157.299471, 21.135972],
       [-157.293774, 21.146127],
       [-157.284346, 21.157755],
       [-157.276474, 21.163175],
       [-157.274504, 21.162762],
       [-157.259911, 21.174875],
       [-157.254709, 21.181376],
       [-157.251007, 21.190952],
       [-157.25026, 21.207739],
       [-157.256935, 21.215665],
       [-157.261457, 21.217661],
       [-157.263163, 21.220873],
       [-157.26069, 21.225684],
       [-157.257085, 21.227268],
       [-157.241534, 21.220969],
       [-157.226445, 21.220185],
       [-157.212082, 21.221848],
       [-157.202125, 21.219298],
       [-157.192439, 21.207644],
       [-157.185553, 21.205602],
       [-157.157103, 21.200706],
       [-157.148125, 21.200745],
       [-157.144627, 21.202555],
       [-157.128207, 21.201488],
       [-157.113438, 21.197375],
       [-157.097971, 21.198012],
       [-157.064264, 21.189076],
       [-157.053053, 21.188754],
       [-157.047757, 21.190739],
       [-157.039987, 21.190909],
       [-157.014553, 21.185503]]],
     [[[-156.544169, 20.522802],
       [-156.550016, 20.520273],
       [-156.559994, 20.521892],
       [-156.586238, 20.511711],
       [-156.603844, 20.524372],
       [-156.631143, 20.514943],
       [-156.642347, 20.508285],
       [-156.647464, 20.512017],
       [-156.668809, 20.504738],
       [-156.682939, 20.506775],
       [-156.703673, 20.527237],
       [-156.702265, 20.532451],
       [-156.696662, 20.541646],
       [-156.6801, 20.557021],
       [-156.651567, 20.565574],
       [-156.614598, 20.587109],
       [-156.610734, 20.59377],
       [-156.576871, 20.60657],
       [-156.56714, 20.604895],
       [-156.553604, 20.594729],
       [-156.543034, 20.580115],
       [-156.542808, 20.573674],
       [-156.548909, 20.56859],
       [-156.556021, 20.542657],
       [-156.553018, 20.539382],
       [-156.540189, 20.534741],
       [-156.539643, 20.527644],
       [-156.544169, 20.522802]]],
     [[[-156.612012, 21.02477],
       [-156.612065, 21.027273],
       [-156.606238, 21.034371],
       [-156.592256, 21.03288],
       [-156.580448, 21.020172],
       [-156.562773, 21.016167],
       [-156.549813, 21.004939],
       [-156.546291, 21.005082],
       [-156.528246, 20.967757],
       [-156.518707, 20.954662],
       [-156.512226, 20.95128],
       [-156.510391, 20.940358],
       [-156.507913, 20.937886],
       [-156.49948, 20.934577],
       [-156.495883, 20.928005],
       [-156.493263, 20.916011],
       [-156.481055, 20.898199],
       [-156.474796, 20.894546],
       [-156.422668, 20.911631],
       [-156.386045, 20.919563],
       [-156.374297, 20.927616],
       [-156.370729, 20.932669],
       [-156.352649, 20.941414],
       [-156.345655, 20.941596],
       [-156.342365, 20.938737],
       [-156.332817, 20.94645],
       [-156.324578, 20.950184],
       [-156.307198, 20.942739],
       [-156.286332, 20.947701],
       [-156.275116, 20.937361],
       [-156.263107, 20.940888],
       [-156.242555, 20.937838],
       [-156.230159, 20.931936],
       [-156.230089, 20.917864],
       [-156.226757, 20.916677],
       [-156.222062, 20.918309],
       [-156.217953, 20.916573],
       [-156.216341, 20.907035],
       [-156.173103, 20.876926],
       [-156.170458, 20.874605],
       [-156.166746, 20.865646],
       [-156.132669, 20.861369],
       [-156.129381, 20.847513],
       [-156.115735, 20.827301],
       [-156.100123, 20.828502],
       [-156.090291, 20.831872],
       [-156.059788, 20.81054],
       [-156.033287, 20.808246],
       [-156.003532, 20.795545],
       [-156.002947, 20.789418],
       [-155.987944, 20.776552],
       [-155.984587, 20.767496],
       [-155.986851, 20.758577],
       [-155.985413, 20.744245],
       [-155.987216, 20.722717],
       [-155.991534, 20.713654],
       [-156.00187, 20.698064],
       [-156.01415, 20.685681],
       [-156.020044, 20.686857],
       [-156.030702, 20.682452],
       [-156.040341, 20.672719],
       [-156.043786, 20.664902],
       [-156.053385, 20.65432],
       [-156.059753, 20.652044],
       [-156.081472, 20.654387],
       [-156.089365, 20.648519],
       [-156.120985, 20.633685],
       [-156.129898, 20.627523],
       [-156.142665, 20.623605],
       [-156.144588, 20.624032],
       [-156.148085, 20.629067],
       [-156.156772, 20.629639],
       [-156.169732, 20.627358],
       [-156.173393, 20.6241],
       [-156.184556, 20.629719],
       [-156.192938, 20.631769],
       [-156.210258, 20.628518],
       [-156.225338, 20.62294],
       [-156.236145, 20.61595],
       [-156.265921, 20.601629],
       [-156.284391, 20.596488],
       [-156.288037, 20.59203],
       [-156.293454, 20.588783],
       [-156.302692, 20.586199],
       [-156.322944, 20.588273],
       [-156.351716, 20.58697],
       [-156.359634, 20.581977],
       [-156.370725, 20.57876],
       [-156.377633, 20.578427],
       [-156.415313, 20.586099],
       [-156.417523, 20.589728],
       [-156.415746, 20.594044],
       [-156.417799, 20.598682],
       [-156.423141, 20.602079],
       [-156.427708, 20.598873],
       [-156.431872, 20.598143],
       [-156.438385, 20.601337],
       [-156.444242, 20.607941],
       [-156.442884, 20.613842],
       [-156.450651, 20.642212],
       [-156.445894, 20.64927],
       [-156.443673, 20.656018],
       [-156.448656, 20.704739],
       [-156.451038, 20.725469],
       [-156.452895, 20.731287],
       [-156.458438, 20.736676],
       [-156.462242, 20.753952],
       [-156.462058, 20.772571],
       [-156.464043, 20.781667],
       [-156.473562, 20.790756],
       [-156.489496, 20.798339],
       [-156.501688, 20.799933],
       [-156.506026, 20.799463],
       [-156.515994, 20.794234],
       [-156.525215, 20.780821],
       [-156.537752, 20.778408],
       [-156.631794, 20.82124],
       [-156.678634, 20.870541],
       [-156.688969, 20.888673],
       [-156.687804, 20.89072],
       [-156.688132, 20.906325],
       [-156.691334, 20.91244],
       [-156.697418, 20.916368],
       [-156.69989, 20.920629],
       [-156.69411, 20.952708],
       [-156.680905, 20.980262],
       [-156.665514, 21.007054],
       [-156.652419, 21.008994],
       [-156.645966, 21.014416],
       [-156.642592, 21.019936],
       [-156.644167, 21.022312],
       [-156.642809, 21.027583],
       [-156.619581, 21.027793],
       [-156.612012, 21.02477]]],
     [[[-157.010001, 20.929757],
       [-156.989813, 20.932127],
       [-156.971604, 20.926254],
       [-156.937529, 20.925274],
       [-156.91845, 20.922546],
       [-156.897169, 20.915395],
       [-156.837047, 20.863575],
       [-156.825237, 20.850731],
       [-156.809576, 20.826036],
       [-156.808469, 20.820396],
       [-156.809463, 20.809169],
       [-156.817427, 20.794606],
       [-156.838321, 20.764575],
       [-156.846413, 20.760201],
       [-156.851481, 20.760069],
       [-156.869753, 20.754701],
       [-156.890295, 20.744855],
       [-156.909081, 20.739533],
       [-156.949009, 20.738997],
       [-156.96789, 20.73508],
       [-156.984747, 20.756677],
       [-156.994001, 20.786671],
       [-156.988933, 20.815496],
       [-156.991834, 20.826603],
       [-157.006243, 20.849603],
       [-157.010911, 20.854476],
       [-157.054552, 20.877219],
       [-157.059663, 20.884634],
       [-157.061128, 20.890635],
       [-157.062511, 20.904385],
       [-157.05913, 20.913407],
       [-157.035789, 20.927078],
       [-157.025626, 20.929528],
       [-157.010001, 20.929757]]]]},
   'id': '15009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16001',
    'STATE': '16',
    'COUNTY': '001',
    'NAME': 'Ada',
    'LSAD': 'County',
    'CENSUSAREA': 1052.576},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-115.974946, 43.365081],
      [-115.978695, 43.113421],
      [-116.266168, 43.112553],
      [-116.385964, 43.193445],
      [-116.433111, 43.296436],
      [-116.511722, 43.290253],
      [-116.513364, 43.45932],
      [-116.473713, 43.459216],
      [-116.473492, 43.634103],
      [-116.513123, 43.634183],
      [-116.512559, 43.807216],
      [-116.281687, 43.806937],
      [-116.122476, 43.691256],
      [-115.975767, 43.591338],
      [-115.974946, 43.365081]]]},
   'id': '16001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16003',
    'STATE': '16',
    'COUNTY': '003',
    'NAME': 'Adams',
    'LSAD': 'County',
    'CENSUSAREA': 1363.056},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.891463, 44.840531],
      [-116.852427, 44.887577],
      [-116.83199, 44.933007],
      [-116.835702, 44.940633],
      [-116.844653, 44.949338],
      [-116.850737, 44.958113],
      [-116.858277, 44.978008],
      [-116.845369, 45.017059],
      [-116.783902, 45.079022],
      [-116.729607, 45.142091],
      [-116.709536, 45.203015],
      [-116.696047, 45.254679],
      [-116.691197, 45.269245],
      [-116.343081, 45.268043],
      [-116.28263, 45.134682],
      [-116.144531, 45.107619],
      [-116.089397, 45.063748],
      [-116.186161, 44.887793],
      [-116.205988, 44.767155],
      [-116.157064, 44.703291],
      [-116.157096, 44.498966],
      [-116.299757, 44.444107],
      [-116.407496, 44.443849],
      [-116.527157, 44.490695],
      [-116.528382, 44.614886],
      [-116.624297, 44.662852],
      [-116.624783, 44.837841],
      [-116.891463, 44.840531]]]},
   'id': '16003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16005',
    'STATE': '16',
    'COUNTY': '005',
    'NAME': 'Bannock',
    'LSAD': 'County',
    'CENSUSAREA': 1111.988},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.875573, 42.416335],
      [-111.897244, 42.256646],
      [-112.126286, 42.28533],
      [-112.190692, 42.3512],
      [-112.327029, 42.323854],
      [-112.297202, 42.454097],
      [-112.419995, 42.502857],
      [-112.37961, 42.646225],
      [-112.496937, 42.733053],
      [-112.515974, 42.910003],
      [-112.558535, 42.961101],
      [-112.737583, 42.905549],
      [-112.750503, 42.951443],
      [-112.676152, 43.022012],
      [-112.063055, 43.022364],
      [-112.082064, 42.950516],
      [-112.149792, 42.895603],
      [-112.120692, 42.831618],
      [-112.14114, 42.763051],
      [-112.105476, 42.699195],
      [-111.969449, 42.718039],
      [-111.875573, 42.416335]]]},
   'id': '16005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16007',
    'STATE': '16',
    'COUNTY': '007',
    'NAME': 'Bear Lake',
    'LSAD': 'County',
    'CENSUSAREA': 974.785},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.046249, 42.513116],
      [-111.04708, 42.34942],
      [-111.047074, 42.280787],
      [-111.047097, 42.194773],
      [-111.047058, 42.182672],
      [-111.047107, 42.148971],
      [-111.047109, 42.142497],
      [-111.046689, 42.001567],
      [-111.415873, 42.000748],
      [-111.420898, 42.000793],
      [-111.425535, 42.00084],
      [-111.507264, 41.999518],
      [-111.594446, 42.093548],
      [-111.626162, 42.208613],
      [-111.552231, 42.351514],
      [-111.598597, 42.415821],
      [-111.579321, 42.43051],
      [-111.634939, 42.570117],
      [-111.603999, 42.590757],
      [-111.364809, 42.590462],
      [-111.280054, 42.553042],
      [-111.241365, 42.602078],
      [-111.234734, 42.478378],
      [-111.170956, 42.473299],
      [-111.046249, 42.513116]]]},
   'id': '16007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16009',
    'STATE': '16',
    'COUNTY': '009',
    'NAME': 'Benewah',
    'LSAD': 'County',
    'CENSUSAREA': 776.617},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.040019, 47.259272],
      [-117.039843, 47.347201],
      [-117.039857, 47.366093],
      [-116.629147, 47.371701],
      [-116.586576, 47.414662],
      [-116.329496, 47.413781],
      [-116.329586, 47.022442],
      [-116.835438, 47.032576],
      [-117.039821, 47.127265],
      [-117.039836, 47.154734],
      [-117.039871, 47.181858],
      [-117.039888, 47.203282],
      [-117.039899, 47.225515],
      [-117.040019, 47.259272]]]},
   'id': '16009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16011',
    'STATE': '16',
    'COUNTY': '011',
    'NAME': 'Bingham',
    'LSAD': 'County',
    'CENSUSAREA': 2093.978},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-112.697408, 43.623011],
      [-112.519945, 43.62656],
      [-112.520024, 43.425099],
      [-112.103298, 43.425057],
      [-112.043821, 43.366708],
      [-111.822589, 43.366135],
      [-111.822742, 43.2822],
      [-111.587795, 43.28163],
      [-111.589615, 43.020052],
      [-112.063055, 43.022364],
      [-112.676152, 43.022012],
      [-112.750503, 42.951443],
      [-112.816427, 42.863253],
      [-113.00776, 42.863051],
      [-113.007657, 43.111027],
      [-113.00729, 43.284801],
      [-112.947187, 43.284725],
      [-112.936835, 43.449386],
      [-112.816659, 43.449048],
      [-112.816193, 43.535869],
      [-112.69908, 43.540244],
      [-112.697408, 43.623011]]]},
   'id': '16011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16013',
    'STATE': '16',
    'COUNTY': '013',
    'NAME': 'Blaine',
    'LSAD': 'County',
    'CENSUSAREA': 2643.586},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.472177, 42.669251],
      [-113.472155, 42.849218],
      [-113.413026, 42.84925],
      [-113.413693, 43.199785],
      [-113.714701, 43.20003],
      [-114.374877, 43.199603],
      [-114.39458, 43.325804],
      [-114.53456, 43.333337],
      [-114.546987, 43.436603],
      [-114.507786, 43.480804],
      [-114.586574, 43.558902],
      [-114.682225, 43.590431],
      [-114.666283, 43.73801],
      [-114.714849, 43.814844],
      [-114.828915, 43.788027],
      [-114.989384, 43.858611],
      [-114.971258, 43.938134],
      [-114.873411, 43.992879],
      [-114.813745, 43.992978],
      [-114.813789, 43.927818],
      [-114.681246, 43.927753],
      [-114.561237, 43.84441],
      [-114.514979, 43.894842],
      [-114.29299, 43.887215],
      [-114.275226, 43.830935],
      [-114.073072, 43.738668],
      [-114.03277, 43.778879],
      [-113.973494, 43.707207],
      [-113.875866, 43.650749],
      [-113.798031, 43.568818],
      [-113.70057, 43.584762],
      [-113.593503, 43.467251],
      [-113.63526, 43.452266],
      [-113.635446, 43.367556],
      [-113.36191, 43.367232],
      [-113.361905, 43.284655],
      [-113.00729, 43.284801],
      [-113.007657, 43.111027],
      [-113.24351, 43.111109],
      [-113.236927, 42.762359],
      [-113.178978, 42.762283],
      [-113.179038, 42.675543],
      [-113.236952, 42.625281],
      [-113.375835, 42.687887],
      [-113.472177, 42.669251]]]},
   'id': '16013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16015',
    'STATE': '16',
    'COUNTY': '015',
    'NAME': 'Boise',
    'LSAD': 'County',
    'CENSUSAREA': 1899.237},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-115.975767, 43.591338],
      [-116.122476, 43.691256],
      [-116.281687, 43.806937],
      [-116.273069, 44.151227],
      [-116.212132, 44.151354],
      [-116.112427, 44.147834],
      [-116.103075, 44.236624],
      [-115.52015, 44.235196],
      [-115.401528, 44.259374],
      [-115.294462, 44.339411],
      [-115.178952, 44.29638],
      [-115.167118, 44.202711],
      [-115.026206, 44.158417],
      [-115.04647, 44.056242],
      [-114.99075, 43.949725],
      [-115.067174, 43.94035],
      [-115.147722, 44.002364],
      [-115.182416, 44.092262],
      [-115.230685, 44.098685],
      [-115.197061, 44.068328],
      [-115.287258, 43.935501],
      [-115.513842, 43.880723],
      [-115.54754, 43.792655],
      [-115.59297, 43.798087],
      [-115.645864, 43.700272],
      [-115.698219, 43.665088],
      [-115.975767, 43.591338]]]},
   'id': '16015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16017',
    'STATE': '16',
    'COUNTY': '017',
    'NAME': 'Bonner',
    'LSAD': 'County',
    'CENSUSAREA': 1734.573},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.041874, 47.977387],
      [-117.041676, 48.04556],
      [-117.041401, 48.0855],
      [-117.039552, 48.17396],
      [-117.039413, 48.17725],
      [-117.039618, 48.178142],
      [-117.039583, 48.180313],
      [-117.039582, 48.180853],
      [-117.039582, 48.181124],
      [-117.039615, 48.184015],
      [-117.039599, 48.184387],
      [-117.035178, 48.370878],
      [-117.035178, 48.371221],
      [-117.035289, 48.422732],
      [-117.035254, 48.423144],
      [-117.035285, 48.429816],
      [-117.035285, 48.430113],
      [-117.034499, 48.620769],
      [-117.034358, 48.628523],
      [-117.033177, 48.846563],
      [-116.785141, 48.847428],
      [-116.784843, 48.500617],
      [-116.049226, 48.502058],
      [-116.049353, 48.21546],
      [-116.049415, 48.07722],
      [-116.049398, 48.075395],
      [-116.049368, 48.072134],
      [-116.04932, 48.066644],
      [-116.048424, 47.977126],
      [-116.229606, 48.067682],
      [-116.329066, 48.017791],
      [-116.322825, 47.890342],
      [-116.505028, 47.890188],
      [-116.504214, 47.991479],
      [-116.633095, 47.977147],
      [-117.041874, 47.977387]]]},
   'id': '16017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16019',
    'STATE': '16',
    'COUNTY': '019',
    'NAME': 'Bonneville',
    'LSAD': 'County',
    'CENSUSAREA': 1866.077},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.045205, 43.501136],
      [-111.044617, 43.31572],
      [-111.044229, 43.195579],
      [-111.044168, 43.189244],
      [-111.044232, 43.18444],
      [-111.044266, 43.177236],
      [-111.044235, 43.177121],
      [-111.044143, 43.072364],
      [-111.044162, 43.068222],
      [-111.04415, 43.066172],
      [-111.044117, 43.060309],
      [-111.044086, 43.054819],
      [-111.044063, 43.046302],
      [-111.044058, 43.04464],
      [-111.043997, 43.041415],
      [-111.044094, 43.02927],
      [-111.044033, 43.026411],
      [-111.044034, 43.024844],
      [-111.044034, 43.024581],
      [-111.044206, 43.022614],
      [-111.044156, 43.020052],
      [-111.589615, 43.020052],
      [-111.587795, 43.28163],
      [-111.822742, 43.2822],
      [-111.822589, 43.366135],
      [-112.043821, 43.366708],
      [-112.103298, 43.425057],
      [-112.520024, 43.425099],
      [-112.519945, 43.62656],
      [-111.626438, 43.626748],
      [-111.399915, 43.622015],
      [-111.243885, 43.621694],
      [-111.199111, 43.539686],
      [-111.045205, 43.501136]]]},
   'id': '16019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16021',
    'STATE': '16',
    'COUNTY': '021',
    'NAME': 'Boundary',
    'LSAD': 'County',
    'CENSUSAREA': 1268.56},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.032351, 48.999188],
      [-116.757185, 48.999791],
      [-116.757234, 48.999943],
      [-116.049193, 49.000912],
      [-116.049025, 48.958351],
      [-116.049023, 48.957947],
      [-116.049226, 48.502058],
      [-116.784843, 48.500617],
      [-116.785141, 48.847428],
      [-117.033177, 48.846563],
      [-117.032351, 48.999188]]]},
   'id': '16021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16023',
    'STATE': '16',
    'COUNTY': '023',
    'NAME': 'Butte',
    'LSAD': 'County',
    'CENSUSAREA': 2231.667},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.798031, 43.568818],
      [-113.412487, 43.81684],
      [-113.361529, 43.797376],
      [-113.453713, 43.873739],
      [-113.457929, 44.059209],
      [-113.416344, 44.059209],
      [-113.416796, 44.233311],
      [-113.320672, 44.232998],
      [-112.995379, 44.233956],
      [-112.994195, 43.972403],
      [-112.695027, 43.97194],
      [-112.697408, 43.623011],
      [-112.69908, 43.540244],
      [-112.816193, 43.535869],
      [-112.816659, 43.449048],
      [-112.936835, 43.449386],
      [-112.947187, 43.284725],
      [-113.00729, 43.284801],
      [-113.361905, 43.284655],
      [-113.36191, 43.367232],
      [-113.635446, 43.367556],
      [-113.63526, 43.452266],
      [-113.593503, 43.467251],
      [-113.70057, 43.584762],
      [-113.798031, 43.568818]]]},
   'id': '16023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16025',
    'STATE': '16',
    'COUNTY': '025',
    'NAME': 'Camas',
    'LSAD': 'County',
    'CENSUSAREA': 1074.493},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.374877, 43.199603],
      [-114.594685, 43.198302],
      [-115.08648, 43.198436],
      [-115.083089, 43.604292],
      [-115.008925, 43.697398],
      [-115.042177, 43.745451],
      [-114.989384, 43.858611],
      [-114.828915, 43.788027],
      [-114.714849, 43.814844],
      [-114.666283, 43.73801],
      [-114.682225, 43.590431],
      [-114.586574, 43.558902],
      [-114.507786, 43.480804],
      [-114.546987, 43.436603],
      [-114.53456, 43.333337],
      [-114.39458, 43.325804],
      [-114.374877, 43.199603]]]},
   'id': '16025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16027',
    'STATE': '16',
    'COUNTY': '027',
    'NAME': 'Canyon',
    'LSAD': 'County',
    'CENSUSAREA': 587.37},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.026623, 43.680865],
      [-117.026586, 43.683001],
      [-117.026825, 43.706193],
      [-117.026725, 43.714815],
      [-117.026841, 43.732905],
      [-117.026651, 43.733935],
      [-117.026634, 43.808104],
      [-116.996504, 43.864714],
      [-116.982482, 43.872799],
      [-116.979186, 43.879973],
      [-116.85322, 43.7926],
      [-116.712672, 43.807161],
      [-116.707332, 43.807279],
      [-116.512559, 43.807216],
      [-116.513123, 43.634183],
      [-116.473492, 43.634103],
      [-116.473713, 43.459216],
      [-116.513364, 43.45932],
      [-116.511722, 43.290253],
      [-116.780671, 43.477217],
      [-116.841528, 43.593168],
      [-117.026623, 43.680865]]]},
   'id': '16027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16029',
    'STATE': '16',
    'COUNTY': '029',
    'NAME': 'Caribou',
    'LSAD': 'County',
    'CENSUSAREA': 1764.146},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.044156, 43.020052],
      [-111.044129, 43.018702],
      [-111.043924, 42.975063],
      [-111.043957, 42.969482],
      [-111.043959, 42.96445],
      [-111.046249, 42.513116],
      [-111.170956, 42.473299],
      [-111.234734, 42.478378],
      [-111.241365, 42.602078],
      [-111.280054, 42.553042],
      [-111.364809, 42.590462],
      [-111.603999, 42.590757],
      [-111.634939, 42.570117],
      [-111.579321, 42.43051],
      [-111.598597, 42.415821],
      [-111.875573, 42.416335],
      [-111.969449, 42.718039],
      [-112.105476, 42.699195],
      [-112.14114, 42.763051],
      [-112.120692, 42.831618],
      [-112.149792, 42.895603],
      [-112.082064, 42.950516],
      [-112.063055, 43.022364],
      [-111.589615, 43.020052],
      [-111.044156, 43.020052]]]},
   'id': '16029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16031',
    'STATE': '16',
    'COUNTY': '031',
    'NAME': 'Cassia',
    'LSAD': 'County',
    'CENSUSAREA': 2565.081},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.00082, 41.998223],
      [-113.000821, 41.998223],
      [-113.396497, 41.99425],
      [-113.40223, 41.994161],
      [-113.431563, 41.993799],
      [-113.76453, 41.989459],
      [-113.796082, 41.989104],
      [-113.893261, 41.988057],
      [-114.041723, 41.99372],
      [-114.048246, 41.993721],
      [-114.048257, 41.993814],
      [-114.061774, 41.993797],
      [-114.061763, 41.993939],
      [-114.107259, 41.993831],
      [-114.107428, 41.993965],
      [-114.281854, 41.994264],
      [-114.285363, 42.417332],
      [-114.069053, 42.417124],
      [-114.06708, 42.51452],
      [-114.000691, 42.526434],
      [-113.985215, 42.534136],
      [-113.959446, 42.53502],
      [-113.956046, 42.530243],
      [-113.931799, 42.535275],
      [-113.779811, 42.55687],
      [-113.655338, 42.535663],
      [-113.557609, 42.656416],
      [-113.472177, 42.669251],
      [-113.375835, 42.687887],
      [-113.236952, 42.625281],
      [-113.175702, 42.58935],
      [-113.002807, 42.588022],
      [-113.000823, 42.327483],
      [-113.00082, 41.998223]]]},
   'id': '16031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16033',
    'STATE': '16',
    'COUNTY': '033',
    'NAME': 'Clark',
    'LSAD': 'County',
    'CENSUSAREA': 1764.185},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-112.829247, 44.385427],
      [-112.824701, 44.393611],
      [-112.823373, 44.406225],
      [-112.822046, 44.420831],
      [-112.822046, 44.434109],
      [-112.812087, 44.45137],
      [-112.781294, 44.484888],
      [-112.71911, 44.504344],
      [-112.68816, 44.49885],
      [-112.544224, 44.483763],
      [-112.473207, 44.480027],
      [-112.410345, 44.462968],
      [-112.38708, 44.460476],
      [-112.371294, 44.472108],
      [-112.358926, 44.48628],
      [-112.3566, 44.493127],
      [-112.347199, 44.520298],
      [-112.339721, 44.538577],
      [-112.299009, 44.559348],
      [-112.274083, 44.564334],
      [-112.258297, 44.564334],
      [-112.246665, 44.56101],
      [-112.235864, 44.555194],
      [-112.229477, 44.549494],
      [-112.221698, 44.543519],
      [-112.187115, 44.534452],
      [-112.078471, 44.533551],
      [-111.947941, 44.556776],
      [-111.870504, 44.564033],
      [-111.849293, 44.539837],
      [-111.843295, 44.528225],
      [-111.806528, 44.515459],
      [-111.737191, 44.54306],
      [-111.704218, 44.560205],
      [-111.631505, 44.552022],
      [-111.617502, 44.553035],
      [-111.617773, 44.401585],
      [-111.791624, 44.401488],
      [-111.791456, 44.316956],
      [-111.852351, 44.316949],
      [-111.857973, 44.1878],
      [-111.913513, 44.144092],
      [-112.033664, 44.144049],
      [-112.034268, 44.05735],
      [-112.15595, 44.057677],
      [-112.694674, 44.058454],
      [-112.695027, 43.97194],
      [-112.994195, 43.972403],
      [-112.995379, 44.233956],
      [-112.813907, 44.230439],
      [-112.829247, 44.385427]]]},
   'id': '16033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16035',
    'STATE': '16',
    'COUNTY': '035',
    'NAME': 'Clearwater',
    'LSAD': 'County',
    'CENSUSAREA': 2457.274},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.675505, 46.719516],
      [-114.667346, 46.719276],
      [-114.655704, 46.711743],
      [-114.644747, 46.702155],
      [-114.642692, 46.694622],
      [-114.641322, 46.686404],
      [-114.641745, 46.679286],
      [-114.642713, 46.673145],
      [-114.635868, 46.65951],
      [-114.614423, 46.639188],
      [-114.594707, 46.633558],
      [-115.630833, 46.47312],
      [-115.779083, 46.267252],
      [-115.814704, 46.265718],
      [-116.170422, 46.371589],
      [-116.308539, 46.412998],
      [-116.369247, 46.466921],
      [-116.369352, 46.49975],
      [-116.448618, 46.497056],
      [-116.455881, 46.629097],
      [-116.329279, 46.6279],
      [-116.329587, 46.934502],
      [-114.975789, 46.932865],
      [-114.936015, 46.899761],
      [-114.938713, 46.869021],
      [-114.927837, 46.83599],
      [-114.920459, 46.827697],
      [-114.888146, 46.808573],
      [-114.853279, 46.799794],
      [-114.825923, 46.781949],
      [-114.76718, 46.738828],
      [-114.739253, 46.715167],
      [-114.717645, 46.713994],
      [-114.69063, 46.719961],
      [-114.675505, 46.719516]]]},
   'id': '16035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16037',
    'STATE': '16',
    'COUNTY': '037',
    'NAME': 'Custer',
    'LSAD': 'County',
    'CENSUSAREA': 4920.94},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.812434, 44.808138],
      [-114.819855, 44.747227],
      [-114.74165, 44.653252],
      [-114.662714, 44.662131],
      [-114.562436, 44.575723],
      [-114.477309, 44.594118],
      [-114.386634, 44.670988],
      [-114.406309, 44.719319],
      [-114.344608, 44.793421],
      [-114.220805, 44.878922],
      [-114.189803, 44.824723],
      [-114.217202, 44.746829],
      [-114.084698, 44.755725],
      [-114.035375, 44.671167],
      [-113.81535, 44.494175],
      [-113.503476, 44.422479],
      [-113.446807, 44.45115],
      [-113.320672, 44.232998],
      [-113.416796, 44.233311],
      [-113.416344, 44.059209],
      [-113.457929, 44.059209],
      [-113.453713, 43.873739],
      [-113.361529, 43.797376],
      [-113.412487, 43.81684],
      [-113.798031, 43.568818],
      [-113.875866, 43.650749],
      [-113.973494, 43.707207],
      [-114.03277, 43.778879],
      [-114.073072, 43.738668],
      [-114.275226, 43.830935],
      [-114.29299, 43.887215],
      [-114.514979, 43.894842],
      [-114.561237, 43.84441],
      [-114.681246, 43.927753],
      [-114.813789, 43.927818],
      [-114.813745, 43.992978],
      [-114.873411, 43.992879],
      [-114.971258, 43.938134],
      [-114.978209, 43.946841],
      [-114.983747, 43.945988],
      [-114.99075, 43.949725],
      [-115.04647, 44.056242],
      [-115.026206, 44.158417],
      [-115.167118, 44.202711],
      [-115.178952, 44.29638],
      [-115.294462, 44.339411],
      [-115.228241, 44.422868],
      [-115.246996, 44.519552],
      [-115.304751, 44.580026],
      [-115.279663, 44.612095],
      [-115.168309, 44.647451],
      [-115.151795, 44.728171],
      [-115.088961, 44.770916],
      [-115.009938, 44.713369],
      [-114.812434, 44.808138]]]},
   'id': '16037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16039',
    'STATE': '16',
    'COUNTY': '039',
    'NAME': 'Elmore',
    'LSAD': 'County',
    'CENSUSAREA': 3074.738},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.266168, 43.112553],
      [-115.978695, 43.113421],
      [-115.974946, 43.365081],
      [-115.975767, 43.591338],
      [-115.698219, 43.665088],
      [-115.645864, 43.700272],
      [-115.59297, 43.798087],
      [-115.54754, 43.792655],
      [-115.513842, 43.880723],
      [-115.287258, 43.935501],
      [-115.197061, 44.068328],
      [-115.230685, 44.098685],
      [-115.182416, 44.092262],
      [-115.147722, 44.002364],
      [-115.067174, 43.94035],
      [-114.99075, 43.949725],
      [-114.983747, 43.945988],
      [-114.978209, 43.946841],
      [-114.971258, 43.938134],
      [-114.989384, 43.858611],
      [-115.042177, 43.745451],
      [-115.008925, 43.697398],
      [-115.083089, 43.604292],
      [-115.08648, 43.198436],
      [-115.086808, 42.914691],
      [-115.037262, 42.911931],
      [-115.037716, 42.76848],
      [-115.454314, 42.767732],
      [-115.44157, 42.930904],
      [-115.60373, 42.937249],
      [-115.641066, 42.95536],
      [-115.76991, 42.938948],
      [-115.926546, 43.001526],
      [-115.965669, 42.943725],
      [-116.012092, 42.949917],
      [-116.266168, 43.112553]]]},
   'id': '16039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16041',
    'STATE': '16',
    'COUNTY': '041',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 663.645},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.507264, 41.999518],
      [-111.876491, 41.998528],
      [-111.915622, 41.998496],
      [-111.915837, 41.998519],
      [-112.109528, 41.997105],
      [-112.10921, 42.169781],
      [-112.071014, 42.238475],
      [-112.126286, 42.28533],
      [-111.897244, 42.256646],
      [-111.875573, 42.416335],
      [-111.598597, 42.415821],
      [-111.552231, 42.351514],
      [-111.626162, 42.208613],
      [-111.594446, 42.093548],
      [-111.507264, 41.999518]]]},
   'id': '16041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16043',
    'STATE': '16',
    'COUNTY': '043',
    'NAME': 'Fremont',
    'LSAD': 'County',
    'CENSUSAREA': 1863.525},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.048974, 44.474072],
      [-111.049194, 44.438058],
      [-111.049216, 44.435811],
      [-111.048633, 44.062903],
      [-111.048751, 44.060838],
      [-111.048751, 44.060403],
      [-111.048107, 43.983096],
      [-111.18711, 43.932202],
      [-111.398883, 43.923086],
      [-111.501009, 43.929272],
      [-111.558833, 43.883305],
      [-111.837795, 43.898332],
      [-111.976833, 43.927431],
      [-111.97709, 43.970929],
      [-112.15637, 43.971382],
      [-112.15595, 44.057677],
      [-112.034268, 44.05735],
      [-112.033664, 44.144049],
      [-111.913513, 44.144092],
      [-111.857973, 44.1878],
      [-111.852351, 44.316949],
      [-111.791456, 44.316956],
      [-111.791624, 44.401488],
      [-111.617773, 44.401585],
      [-111.617502, 44.553035],
      [-111.601249, 44.55421],
      [-111.525764, 44.604883],
      [-111.516588, 44.643707],
      [-111.489008, 44.705553],
      [-111.481536, 44.709186],
      [-111.394815, 44.751351],
      [-111.377682, 44.751744],
      [-111.323669, 44.724474],
      [-111.219236, 44.622616],
      [-111.139455, 44.517112],
      [-111.131379, 44.499925],
      [-111.122654, 44.493659],
      [-111.106574, 44.48633],
      [-111.048974, 44.474072]]]},
   'id': '16043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16045',
    'STATE': '16',
    'COUNTY': '045',
    'NAME': 'Gem',
    'LSAD': 'County',
    'CENSUSAREA': 560.9},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.157096, 44.498966],
      [-116.152289, 44.324388],
      [-116.212071, 44.324277],
      [-116.212132, 44.151354],
      [-116.273069, 44.151227],
      [-116.281687, 43.806937],
      [-116.512559, 43.807216],
      [-116.707332, 43.807279],
      [-116.712672, 43.807161],
      [-116.712591, 43.981259],
      [-116.572245, 43.980334],
      [-116.532176, 44.06606],
      [-116.452526, 44.065345],
      [-116.452012, 44.151417],
      [-116.358532, 44.151066],
      [-116.299757, 44.444107],
      [-116.157096, 44.498966]]]},
   'id': '16045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16047',
    'STATE': '16',
    'COUNTY': '047',
    'NAME': 'Gooding',
    'LSAD': 'County',
    'CENSUSAREA': 728.973},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.594685, 43.198302],
      [-114.594375, 42.850826],
      [-114.6174, 42.850811],
      [-114.616535, 42.649367],
      [-114.821582, 42.671582],
      [-114.850557, 42.749904],
      [-114.928714, 42.764961],
      [-114.901359, 42.858678],
      [-115.037262, 42.911931],
      [-115.086808, 42.914691],
      [-115.08648, 43.198436],
      [-114.594685, 43.198302]]]},
   'id': '16047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16049',
    'STATE': '16',
    'COUNTY': '049',
    'NAME': 'Idaho',
    'LSAD': 'County',
    'CENSUSAREA': 8477.352},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.691197, 45.269245],
      [-116.673793, 45.321511],
      [-116.553473, 45.499107],
      [-116.481208, 45.580597],
      [-116.463635, 45.602785],
      [-116.463504, 45.615785],
      [-116.471504, 45.628467],
      [-116.48912, 45.65114],
      [-116.510938, 45.668114],
      [-116.528272, 45.681473],
      [-116.535396, 45.691734],
      [-116.538014, 45.714929],
      [-116.535698, 45.734231],
      [-116.54809, 45.752364],
      [-116.59421, 45.77908],
      [-116.633377, 45.784681],
      [-116.789099, 45.847749],
      [-116.796418, 45.853807],
      [-116.701977, 45.996177],
      [-116.638651, 46.036076],
      [-116.529919, 46.000809],
      [-116.514484, 46.131828],
      [-116.427985, 46.202578],
      [-116.189977, 46.154379],
      [-116.133369, 46.215189],
      [-116.012665, 46.225747],
      [-116.170422, 46.371589],
      [-115.814704, 46.265718],
      [-115.779083, 46.267252],
      [-115.630833, 46.47312],
      [-114.594707, 46.633558],
      [-114.592264, 46.632861],
      [-114.481943, 46.631993],
      [-114.461211, 46.639151],
      [-114.44683, 46.645314],
      [-114.422176, 46.652163],
      [-114.370129, 46.654217],
      [-114.349584, 46.646684],
      [-114.341336, 46.642803],
      [-114.337942, 46.641205],
      [-114.331093, 46.630248],
      [-114.331093, 46.607649],
      [-114.346528, 46.535789],
      [-114.385297, 46.467162],
      [-114.378, 46.435371],
      [-114.426885, 46.289671],
      [-114.472643, 46.162202],
      [-114.48312, 46.129147],
      [-114.476284, 46.112988],
      [-114.468205, 46.099937],
      [-114.467583, 46.081914],
      [-114.476284, 46.062026],
      [-114.4912, 46.044003],
      [-114.4912, 46.034059],
      [-114.490578, 46.022872],
      [-114.483379, 46.008047],
      [-114.465376, 45.996077],
      [-114.429638, 45.986638],
      [-114.412007, 45.978057],
      [-114.401552, 45.963195],
      [-114.39376, 45.89402],
      [-114.44868, 45.858891],
      [-114.498809, 45.850676],
      [-114.509303, 45.845531],
      [-114.514596, 45.840785],
      [-114.566172, 45.773864],
      [-114.547763, 45.743309],
      [-114.528667, 45.731636],
      [-114.504869, 45.722176],
      [-114.497553, 45.710677],
      [-114.495421, 45.703321],
      [-114.500925, 45.666715],
      [-114.515411, 45.652842],
      [-114.54182, 45.641305],
      [-114.545574, 45.642928],
      [-114.550834, 45.6426],
      [-114.561046, 45.639906],
      [-114.563652, 45.637412],
      [-114.561773, 45.565109],
      [-114.560855, 45.564575],
      [-114.663529, 45.471215],
      [-114.793263, 45.508641],
      [-114.793633, 45.436614],
      [-114.604026, 45.295618],
      [-114.694126, 45.197114],
      [-115.975756, 45.195699],
      [-115.974957, 45.219699],
      [-116.121743, 45.15871],
      [-116.144531, 45.107619],
      [-116.28263, 45.134682],
      [-116.343081, 45.268043],
      [-116.691197, 45.269245]]]},
   'id': '16049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16051',
    'STATE': '16',
    'COUNTY': '051',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 1093.501},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.976833, 43.927431],
      [-111.983381, 43.754138],
      [-111.932811, 43.766845],
      [-111.626438, 43.626748],
      [-112.519945, 43.62656],
      [-112.697408, 43.623011],
      [-112.695027, 43.97194],
      [-112.694674, 44.058454],
      [-112.15595, 44.057677],
      [-112.15637, 43.971382],
      [-111.97709, 43.970929],
      [-111.976833, 43.927431]]]},
   'id': '16051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16053',
    'STATE': '16',
    'COUNTY': '053',
    'NAME': 'Jerome',
    'LSAD': 'County',
    'CENSUSAREA': 597.185},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.931799, 42.535275],
      [-113.956046, 42.530243],
      [-113.959446, 42.53502],
      [-113.985215, 42.534136],
      [-114.000691, 42.526434],
      [-114.045718, 42.528766],
      [-114.130292, 42.494975],
      [-114.375289, 42.598227],
      [-114.616535, 42.649367],
      [-114.6174, 42.850811],
      [-114.594375, 42.850826],
      [-114.365366, 42.85079],
      [-114.345659, 42.809055],
      [-114.04987, 42.808521],
      [-114.049868, 42.765121],
      [-113.932904, 42.765032],
      [-113.931799, 42.535275]]]},
   'id': '16053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16055',
    'STATE': '16',
    'COUNTY': '055',
    'NAME': 'Kootenai',
    'LSAD': 'County',
    'CENSUSAREA': 1244.125},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.039857, 47.366093],
      [-117.039882, 47.399085],
      [-117.03995, 47.412412],
      [-117.039948, 47.434885],
      [-117.039971, 47.463309],
      [-117.039945, 47.477823],
      [-117.040514, 47.522351],
      [-117.040545, 47.527562],
      [-117.040745, 47.532909],
      [-117.041276, 47.55821],
      [-117.041174, 47.55853],
      [-117.041431, 47.67814],
      [-117.041431, 47.678185],
      [-117.041431, 47.68],
      [-117.041532, 47.683194],
      [-117.041633, 47.7064],
      [-117.041678, 47.72271],
      [-117.042135, 47.7441],
      [-117.042059, 47.7451],
      [-117.042657, 47.760857],
      [-117.042623, 47.761223],
      [-117.042521, 47.764896],
      [-117.042485, 47.766525],
      [-117.041874, 47.977387],
      [-116.633095, 47.977147],
      [-116.504214, 47.991479],
      [-116.505028, 47.890188],
      [-116.322825, 47.890342],
      [-116.329496, 47.413781],
      [-116.586576, 47.414662],
      [-116.629147, 47.371701],
      [-117.039857, 47.366093]]]},
   'id': '16055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16057',
    'STATE': '16',
    'COUNTY': '057',
    'NAME': 'Latah',
    'LSAD': 'County',
    'CENSUSAREA': 1075.996},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.039783, 46.541785],
      [-117.039828, 46.815443],
      [-117.039657, 46.825798],
      [-117.039821, 47.127265],
      [-116.835438, 47.032576],
      [-116.329586, 47.022442],
      [-116.329587, 46.934502],
      [-116.329279, 46.6279],
      [-116.455881, 46.629097],
      [-116.625985, 46.628041],
      [-116.719183, 46.542789],
      [-117.039783, 46.541785]]]},
   'id': '16057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16059',
    'STATE': '16',
    'COUNTY': '059',
    'NAME': 'Lemhi',
    'LSAD': 'County',
    'CENSUSAREA': 4563.387},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.9426, 45.686362],
      [-113.93422, 45.682232],
      [-113.896681, 45.641451],
      [-113.835396, 45.61296],
      [-113.813933, 45.600559],
      [-113.804871, 45.589112],
      [-113.802009, 45.579096],
      [-113.813456, 45.550002],
      [-113.810117, 45.530924],
      [-113.786269, 45.521385],
      [-113.772915, 45.512322],
      [-113.76576, 45.483228],
      [-113.774156, 45.465372],
      [-113.760924, 45.406501],
      [-113.738729, 45.329741],
      [-113.674409, 45.249411],
      [-113.650064, 45.23471],
      [-113.599506, 45.191114],
      [-113.565979, 45.149335],
      [-113.566179, 45.14312],
      [-113.57636, 45.133771],
      [-113.576453, 45.130311],
      [-113.485278, 45.063519],
      [-113.47377, 45.0617],
      [-113.463961, 45.063194],
      [-113.449349, 45.045745],
      [-113.445751, 45.018351],
      [-113.445915, 44.979918],
      [-113.447199, 44.971924],
      [-113.472715, 44.948123],
      [-113.480836, 44.95031],
      [-113.494446, 44.948597],
      [-113.498745, 44.942314],
      [-113.475838, 44.894648],
      [-113.455071, 44.865424],
      [-113.353631, 44.791395],
      [-113.341704, 44.784853],
      [-113.329491, 44.788645],
      [-113.278382, 44.812706],
      [-113.247166, 44.82295],
      [-113.207878, 44.80804],
      [-113.158206, 44.780847],
      [-113.134617, 44.763149],
      [-113.101082, 44.718832],
      [-113.051504, 44.63695],
      [-113.049349, 44.62938],
      [-113.053529, 44.621187],
      [-113.05677, 44.618657],
      [-113.027147, 44.495915],
      [-113.003544, 44.450814],
      [-112.9703, 44.426933],
      [-112.875822, 44.374357],
      [-112.849266, 44.371038],
      [-112.83134, 44.38166],
      [-112.829247, 44.385427],
      [-112.813907, 44.230439],
      [-112.995379, 44.233956],
      [-113.320672, 44.232998],
      [-113.446807, 44.45115],
      [-113.503476, 44.422479],
      [-113.81535, 44.494175],
      [-114.035375, 44.671167],
      [-114.084698, 44.755725],
      [-114.217202, 44.746829],
      [-114.189803, 44.824723],
      [-114.220805, 44.878922],
      [-114.344608, 44.793421],
      [-114.406309, 44.719319],
      [-114.386634, 44.670988],
      [-114.477309, 44.594118],
      [-114.562436, 44.575723],
      [-114.662714, 44.662131],
      [-114.74165, 44.653252],
      [-114.819855, 44.747227],
      [-114.812434, 44.808138],
      [-114.732212, 44.880351],
      [-114.722627, 45.178914],
      [-114.694126, 45.197114],
      [-114.604026, 45.295618],
      [-114.793633, 45.436614],
      [-114.793263, 45.508641],
      [-114.663529, 45.471215],
      [-114.560855, 45.564575],
      [-114.551286, 45.559007],
      [-114.514196, 45.564734],
      [-114.473759, 45.563278],
      [-114.460542, 45.561283],
      [-114.36662, 45.491616],
      [-114.350819, 45.468542],
      [-114.309613, 45.469432],
      [-114.247828, 45.545489],
      [-114.187852, 45.542151],
      [-114.135249, 45.557465],
      [-114.03493, 45.647967],
      [-114.022534, 45.67962],
      [-114.019315, 45.692937],
      [-114.015633, 45.696127],
      [-113.987759, 45.705247],
      [-113.971565, 45.700636],
      [-113.9426, 45.686362]]]},
   'id': '16059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16061',
    'STATE': '16',
    'COUNTY': '061',
    'NAME': 'Lewis',
    'LSAD': 'County',
    'CENSUSAREA': 478.795},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.369247, 46.466921],
      [-116.308539, 46.412998],
      [-116.170422, 46.371589],
      [-116.012665, 46.225747],
      [-116.133369, 46.215189],
      [-116.189977, 46.154379],
      [-116.427985, 46.202578],
      [-116.514484, 46.131828],
      [-116.529919, 46.000809],
      [-116.638651, 46.036076],
      [-116.701977, 45.996177],
      [-116.713153, 46.325521],
      [-116.489852, 46.325334],
      [-116.362266, 46.352336],
      [-116.369247, 46.466921]]]},
   'id': '16061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16063',
    'STATE': '16',
    'COUNTY': '063',
    'NAME': 'Lincoln',
    'LSAD': 'County',
    'CENSUSAREA': 1201.405},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.714701, 43.20003],
      [-113.713928, 42.849733],
      [-113.763862, 42.764508],
      [-113.932904, 42.765032],
      [-114.049868, 42.765121],
      [-114.04987, 42.808521],
      [-114.345659, 42.809055],
      [-114.365366, 42.85079],
      [-114.594375, 42.850826],
      [-114.594685, 43.198302],
      [-114.374877, 43.199603],
      [-113.714701, 43.20003]]]},
   'id': '16063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16065',
    'STATE': '16',
    'COUNTY': '065',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 469.206},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.398883, 43.923086],
      [-111.399915, 43.622015],
      [-111.626438, 43.626748],
      [-111.932811, 43.766845],
      [-111.983381, 43.754138],
      [-111.976833, 43.927431],
      [-111.837795, 43.898332],
      [-111.558833, 43.883305],
      [-111.501009, 43.929272],
      [-111.398883, 43.923086]]]},
   'id': '16065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16067',
    'STATE': '16',
    'COUNTY': '067',
    'NAME': 'Minidoka',
    'LSAD': 'County',
    'CENSUSAREA': 757.591},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.931799, 42.535275],
      [-113.932904, 42.765032],
      [-113.763862, 42.764508],
      [-113.713928, 42.849733],
      [-113.714701, 43.20003],
      [-113.413693, 43.199785],
      [-113.413026, 42.84925],
      [-113.472155, 42.849218],
      [-113.472177, 42.669251],
      [-113.557609, 42.656416],
      [-113.655338, 42.535663],
      [-113.779811, 42.55687],
      [-113.931799, 42.535275]]]},
   'id': '16067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16069',
    'STATE': '16',
    'COUNTY': '069',
    'NAME': 'Nez Perce',
    'LSAD': 'County',
    'CENSUSAREA': 848.092},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.915989, 45.995413],
      [-116.94353, 46.062173],
      [-116.925621, 46.158888],
      [-116.958801, 46.24232],
      [-116.985333, 46.294617],
      [-116.987939, 46.298031],
      [-117.047469, 46.342884],
      [-117.061045, 46.367747],
      [-117.046915, 46.379577],
      [-117.039813, 46.425425],
      [-117.039741, 46.462704],
      [-117.039763, 46.46957],
      [-117.039771, 46.471779],
      [-117.039783, 46.541785],
      [-116.719183, 46.542789],
      [-116.625985, 46.628041],
      [-116.455881, 46.629097],
      [-116.448618, 46.497056],
      [-116.369352, 46.49975],
      [-116.369247, 46.466921],
      [-116.362266, 46.352336],
      [-116.489852, 46.325334],
      [-116.713153, 46.325521],
      [-116.701977, 45.996177],
      [-116.796418, 45.853807],
      [-116.857254, 45.904159],
      [-116.866544, 45.916958],
      [-116.875125, 45.9422],
      [-116.915989, 45.995413]]]},
   'id': '16069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16071',
    'STATE': '16',
    'COUNTY': '071',
    'NAME': 'Oneida',
    'LSAD': 'County',
    'CENSUSAREA': 1200.061},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-112.109528, 41.997105],
      [-112.163956, 41.996708],
      [-112.239107, 42.001217],
      [-112.264936, 42.000991],
      [-112.38617, 42.001126],
      [-112.450567, 42.001092],
      [-112.450814, 42.000953],
      [-112.648019, 42.000307],
      [-112.709375, 42.000309],
      [-112.788542, 41.999681],
      [-112.833084, 41.999305],
      [-112.833125, 41.999345],
      [-112.880619, 41.998921],
      [-112.882367, 41.998922],
      [-112.909587, 41.998791],
      [-112.979218, 41.998263],
      [-113.00082, 41.998223],
      [-113.000823, 42.327483],
      [-112.65399, 42.328869],
      [-112.653989, 42.415978],
      [-112.49779, 42.41598],
      [-112.498169, 42.503046],
      [-112.419995, 42.502857],
      [-112.297202, 42.454097],
      [-112.327029, 42.323854],
      [-112.190692, 42.3512],
      [-112.126286, 42.28533],
      [-112.071014, 42.238475],
      [-112.10921, 42.169781],
      [-112.109528, 41.997105]]]},
   'id': '16071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16073',
    'STATE': '16',
    'COUNTY': '073',
    'NAME': 'Owyhee',
    'LSAD': 'County',
    'CENSUSAREA': 7665.511},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.026717, 43.675523],
      [-117.026623, 43.680865],
      [-116.841528, 43.593168],
      [-116.780671, 43.477217],
      [-116.511722, 43.290253],
      [-116.433111, 43.296436],
      [-116.385964, 43.193445],
      [-116.266168, 43.112553],
      [-116.012092, 42.949917],
      [-115.965669, 42.943725],
      [-115.926546, 43.001526],
      [-115.76991, 42.938948],
      [-115.641066, 42.95536],
      [-115.60373, 42.937249],
      [-115.44157, 42.930904],
      [-115.454314, 42.767732],
      [-115.037716, 42.76848],
      [-115.037694, 42.749936],
      [-115.038256, 41.996025],
      [-115.98688, 41.998534],
      [-116.012212, 41.998035],
      [-116.012219, 41.998048],
      [-116.018945, 41.997722],
      [-116.01896, 41.997762],
      [-116.030758, 41.997383],
      [-116.030754, 41.997399],
      [-116.03857, 41.997413],
      [-116.038602, 41.99746],
      [-116.160833, 41.997508],
      [-116.163931, 41.997555],
      [-116.463528, 41.996547],
      [-116.483094, 41.996885],
      [-116.485823, 41.996861],
      [-116.510452, 41.997096],
      [-116.586937, 41.99737],
      [-116.62677, 41.99775],
      [-117.018294, 41.999358],
      [-117.026222, 42.000252],
      [-117.026331, 42.807015],
      [-117.026303, 42.80717],
      [-117.026253, 42.807447],
      [-117.026683, 43.024876],
      [-117.026652, 43.025128],
      [-117.026746, 43.577526],
      [-117.026774, 43.578674],
      [-117.026922, 43.593632],
      [-117.026889, 43.596033],
      [-117.026824, 43.600357],
      [-117.02676, 43.601912],
      [-117.026789, 43.610669],
      [-117.026937, 43.617614],
      [-117.027001, 43.621032],
      [-117.026905, 43.62488],
      [-117.026705, 43.631659],
      [-117.026661, 43.664385],
      [-117.026717, 43.675523]]]},
   'id': '16073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16075',
    'STATE': '16',
    'COUNTY': '075',
    'NAME': 'Payette',
    'LSAD': 'County',
    'CENSUSAREA': 406.867},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.961535, 43.918388],
      [-116.935301, 43.988616],
      [-116.931719, 44.102474],
      [-116.897145, 44.152537],
      [-116.452012, 44.151417],
      [-116.452526, 44.065345],
      [-116.532176, 44.06606],
      [-116.572245, 43.980334],
      [-116.712591, 43.981259],
      [-116.712672, 43.807161],
      [-116.85322, 43.7926],
      [-116.979186, 43.879973],
      [-116.961535, 43.918388]]]},
   'id': '16075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16077',
    'STATE': '16',
    'COUNTY': '077',
    'NAME': 'Power',
    'LSAD': 'County',
    'CENSUSAREA': 1404.244},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-113.236952, 42.625281],
      [-113.179038, 42.675543],
      [-113.178978, 42.762283],
      [-113.236927, 42.762359],
      [-113.24351, 43.111109],
      [-113.007657, 43.111027],
      [-113.00776, 42.863051],
      [-112.816427, 42.863253],
      [-112.750503, 42.951443],
      [-112.737583, 42.905549],
      [-112.558535, 42.961101],
      [-112.515974, 42.910003],
      [-112.496937, 42.733053],
      [-112.37961, 42.646225],
      [-112.419995, 42.502857],
      [-112.498169, 42.503046],
      [-112.49779, 42.41598],
      [-112.653989, 42.415978],
      [-112.65399, 42.328869],
      [-113.000823, 42.327483],
      [-113.002807, 42.588022],
      [-113.175702, 42.58935],
      [-113.236952, 42.625281]]]},
   'id': '16077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16079',
    'STATE': '16',
    'COUNTY': '079',
    'NAME': 'Shoshone',
    'LSAD': 'County',
    'CENSUSAREA': 2629.665},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-116.048424, 47.977126],
      [-116.048421, 47.97682],
      [-116.007254, 47.944968],
      [-115.919291, 47.857406],
      [-115.729123, 47.703102],
      [-115.72377, 47.696671],
      [-115.706284, 47.637864],
      [-115.718072, 47.592675],
      [-115.721207, 47.576323],
      [-115.735755, 47.555346],
      [-115.739684, 47.537663],
      [-115.729861, 47.518016],
      [-115.712178, 47.488546],
      [-115.725931, 47.466934],
      [-115.729861, 47.447287],
      [-115.721084, 47.42235],
      [-115.69057, 47.415059],
      [-115.661341, 47.402663],
      [-115.576836, 47.366825],
      [-115.561439, 47.351887],
      [-115.551309, 47.333856],
      [-115.52369, 47.298919],
      [-115.479255, 47.282089],
      [-115.421645, 47.271736],
      [-115.339201, 47.261623],
      [-115.320184, 47.255717],
      [-115.294785, 47.220914],
      [-115.29211, 47.209861],
      [-115.266723, 47.181101],
      [-115.200547, 47.139154],
      [-115.193221, 47.133026],
      [-115.099178, 47.048129],
      [-115.072985, 47.01376],
      [-114.975789, 46.932865],
      [-116.329587, 46.934502],
      [-116.329586, 47.022442],
      [-116.329496, 47.413781],
      [-116.322825, 47.890342],
      [-116.329066, 48.017791],
      [-116.229606, 48.067682],
      [-116.048424, 47.977126]]]},
   'id': '16079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16081',
    'STATE': '16',
    'COUNTY': '081',
    'NAME': 'Teton',
    'LSAD': 'County',
    'CENSUSAREA': 449.456},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-111.048107, 43.983096],
      [-111.046715, 43.815832],
      [-111.04634, 43.726957],
      [-111.046435, 43.726545],
      [-111.046421, 43.722059],
      [-111.04611, 43.687848],
      [-111.046051, 43.685812],
      [-111.046118, 43.684902],
      [-111.04588, 43.681033],
      [-111.045706, 43.659112],
      [-111.045205, 43.501136],
      [-111.199111, 43.539686],
      [-111.243885, 43.621694],
      [-111.399915, 43.622015],
      [-111.398883, 43.923086],
      [-111.18711, 43.932202],
      [-111.048107, 43.983096]]]},
   'id': '16081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16083',
    'STATE': '16',
    'COUNTY': '083',
    'NAME': 'Twin Falls',
    'LSAD': 'County',
    'CENSUSAREA': 1921.213},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.498243, 41.994636],
      [-114.498259, 41.994599],
      [-114.598267, 41.994511],
      [-114.763825, 41.999909],
      [-114.914187, 41.999909],
      [-115.031783, 41.996008],
      [-115.038256, 41.996025],
      [-115.037694, 42.749936],
      [-115.037716, 42.76848],
      [-115.037262, 42.911931],
      [-114.901359, 42.858678],
      [-114.928714, 42.764961],
      [-114.850557, 42.749904],
      [-114.821582, 42.671582],
      [-114.616535, 42.649367],
      [-114.375289, 42.598227],
      [-114.130292, 42.494975],
      [-114.045718, 42.528766],
      [-114.000691, 42.526434],
      [-114.06708, 42.51452],
      [-114.069053, 42.417124],
      [-114.285363, 42.417332],
      [-114.281854, 41.994264],
      [-114.498243, 41.994636]]]},
   'id': '16083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16085',
    'STATE': '16',
    'COUNTY': '085',
    'NAME': 'Valley',
    'LSAD': 'County',
    'CENSUSAREA': 3664.515},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-114.812434, 44.808138],
      [-115.009938, 44.713369],
      [-115.088961, 44.770916],
      [-115.151795, 44.728171],
      [-115.168309, 44.647451],
      [-115.279663, 44.612095],
      [-115.304751, 44.580026],
      [-115.246996, 44.519552],
      [-115.228241, 44.422868],
      [-115.294462, 44.339411],
      [-115.401528, 44.259374],
      [-115.52015, 44.235196],
      [-116.103075, 44.236624],
      [-116.112427, 44.147834],
      [-116.212132, 44.151354],
      [-116.212071, 44.324277],
      [-116.152289, 44.324388],
      [-116.157096, 44.498966],
      [-116.157064, 44.703291],
      [-116.205988, 44.767155],
      [-116.186161, 44.887793],
      [-116.089397, 45.063748],
      [-116.144531, 45.107619],
      [-116.121743, 45.15871],
      [-115.974957, 45.219699],
      [-115.975756, 45.195699],
      [-114.694126, 45.197114],
      [-114.722627, 45.178914],
      [-114.732212, 44.880351],
      [-114.812434, 44.808138]]]},
   'id': '16085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US16087',
    'STATE': '16',
    'COUNTY': '087',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 1452.982},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-117.197506, 44.29728],
      [-117.196597, 44.30228],
      [-117.194827, 44.31054],
      [-117.191546, 44.329621],
      [-117.189769, 44.336585],
      [-117.214889, 44.466901],
      [-117.208454, 44.485928],
      [-117.156489, 44.528312],
      [-117.149242, 44.536151],
      [-117.144161, 44.545647],
      [-117.1159, 44.623339],
      [-117.095868, 44.664737],
      [-117.062273, 44.727143],
      [-117.044217, 44.74514],
      [-117.03827, 44.748179],
      [-117.016216, 44.755572],
      [-116.931499, 44.792281],
      [-116.891463, 44.840531],
      [-116.624783, 44.837841],
      [-116.624297, 44.662852],
      [-116.528382, 44.614886],
      [-116.527157, 44.490695],
      [-116.407496, 44.443849],
      [-116.299757, 44.444107],
      [-116.358532, 44.151066],
      [-116.452012, 44.151417],
      [-116.897145, 44.152537],
      [-116.895931, 44.154295],
      [-116.894083, 44.160191],
      [-116.895757, 44.171267],
      [-116.902752, 44.179467],
      [-116.975905, 44.242844],
      [-116.98687, 44.245477],
      [-117.027558, 44.248881],
      [-117.03317, 44.248192],
      [-117.041144, 44.243653],
      [-117.170342, 44.25889],
      [-117.190107, 44.273958],
      [-117.196597, 44.287529],
      [-117.197777, 44.295789],
      [-117.197506, 44.29728]]]},
   'id': '16087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17001',
    'STATE': '17',
    'COUNTY': '001',
    'NAME': 'Adams',
    'LSAD': 'County',
    'CENSUSAREA': 855.202},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.365396, 39.777266],
      [-91.432919, 39.840554],
      [-91.446385, 39.870394],
      [-91.455887, 39.945538],
      [-91.460287, 39.980333],
      [-91.494865, 40.037421],
      [-91.510322, 40.127994],
      [-91.512974, 40.181062],
      [-91.510332, 40.201142],
      [-91.258828, 40.197299],
      [-90.911969, 40.193088],
      [-90.913616, 40.104452],
      [-90.916609, 39.845075],
      [-90.916071, 39.757168],
      [-91.147678, 39.75707],
      [-91.265848, 39.757258],
      [-91.365125, 39.758723],
      [-91.367962, 39.759124],
      [-91.365396, 39.777266]]]},
   'id': '17001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17003',
    'STATE': '17',
    'COUNTY': '003',
    'NAME': 'Alexander',
    'LSAD': 'County',
    'CENSUSAREA': 235.509},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.132685, 36.9822],
      [-89.170008, 36.970298],
      [-89.185491, 36.973518],
      [-89.207013, 36.982437],
      [-89.226247, 36.985287],
      [-89.245481, 36.98315],
      [-89.261154, 36.982437],
      [-89.271127, 36.985287],
      [-89.278628, 36.98867],
      [-89.29213, 36.992189],
      [-89.322733, 37.009033],
      [-89.378277, 37.039605],
      [-89.383937, 37.046441],
      [-89.385434, 37.05513],
      [-89.414471, 37.12505],
      [-89.467631, 37.2182],
      [-89.491222, 37.248629],
      [-89.517032, 37.28192],
      [-89.518393, 37.289354],
      [-89.511842, 37.310825],
      [-89.489005, 37.333368],
      [-89.484598, 37.334832],
      [-89.248439, 37.335109],
      [-89.273631, 37.126968],
      [-89.171881, 37.068184],
      [-89.175725, 37.062069],
      [-89.181369, 37.046305],
      [-89.182509, 37.037275],
      [-89.178975, 37.020928],
      [-89.173595, 37.011409],
      [-89.166447, 37.003337],
      [-89.132685, 36.9822]]]},
   'id': '17003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17005',
    'STATE': '17',
    'COUNTY': '005',
    'NAME': 'Bond',
    'LSAD': 'County',
    'CENSUSAREA': 380.279},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.250447, 39.028145],
      [-89.254237, 38.742019],
      [-89.481642, 38.740532],
      [-89.597321, 38.743236],
      [-89.599593, 38.87453],
      [-89.636874, 38.874278],
      [-89.639265, 38.999129],
      [-89.586088, 39.028246],
      [-89.250447, 39.028145]]]},
   'id': '17005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17007',
    'STATE': '17',
    'COUNTY': '007',
    'NAME': 'Boone',
    'LSAD': 'County',
    'CENSUSAREA': 280.719},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.70738, 42.493587],
      [-88.707378, 42.493587],
      [-88.705633, 42.153561],
      [-88.939732, 42.15232],
      [-88.940388, 42.495046],
      [-88.776496, 42.49402],
      [-88.70738, 42.493587]]]},
   'id': '17007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17009',
    'STATE': '17',
    'COUNTY': '009',
    'NAME': 'Brown',
    'LSAD': 'County',
    'CENSUSAREA': 305.607},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.513747, 39.987891],
      [-90.536721, 39.923027],
      [-90.583534, 39.87675],
      [-90.582435, 39.854574],
      [-90.571754, 39.839326],
      [-90.893651, 39.84092],
      [-90.916609, 39.845075],
      [-90.913616, 40.104452],
      [-90.695884, 40.103794],
      [-90.607134, 39.981658],
      [-90.513747, 39.987891]]]},
   'id': '17009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17011',
    'STATE': '17',
    'COUNTY': '011',
    'NAME': 'Bureau',
    'LSAD': 'County',
    'CENSUSAREA': 869.031},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.857798, 41.234483],
      [-89.857571, 41.234768],
      [-89.856619, 41.320956],
      [-89.856902, 41.408836],
      [-89.862351, 41.584005],
      [-89.631494, 41.584949],
      [-89.628371, 41.585014],
      [-89.166561, 41.585289],
      [-89.163705, 41.310187],
      [-89.334901, 41.300877],
      [-89.356671, 41.233235],
      [-89.466534, 41.233873],
      [-89.466421, 41.148558],
      [-89.638429, 41.148591],
      [-89.638597, 41.14976],
      [-89.638864, 41.233862],
      [-89.857798, 41.234483]]]},
   'id': '17011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17013',
    'STATE': '17',
    'COUNTY': '013',
    'NAME': 'Calhoun',
    'LSAD': 'County',
    'CENSUSAREA': 253.825},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.467784, 38.961809],
      [-90.472122, 38.958838],
      [-90.482419, 38.94446],
      [-90.482725, 38.934712],
      [-90.486974, 38.925982],
      [-90.507451, 38.902767],
      [-90.54403, 38.87505],
      [-90.555693, 38.870785],
      [-90.566557, 38.868847],
      [-90.583388, 38.86903],
      [-90.625122, 38.888654],
      [-90.657254, 38.92027],
      [-90.663372, 38.928042],
      [-90.66587, 38.934195],
      [-90.71158, 39.046798],
      [-90.713629, 39.053977],
      [-90.712541, 39.057064],
      [-90.682744, 39.088348],
      [-90.681086, 39.10059],
      [-90.718996, 39.224973],
      [-90.726981, 39.251173],
      [-90.72996, 39.255894],
      [-90.799346, 39.313087],
      [-90.842175, 39.341932],
      [-90.882706, 39.362254],
      [-90.939983, 39.393555],
      [-90.613694, 39.395775],
      [-90.603569, 39.117592],
      [-90.570169, 38.99329],
      [-90.450809, 38.967758],
      [-90.467784, 38.961809]]]},
   'id': '17013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17015',
    'STATE': '17',
    'COUNTY': '015',
    'NAME': 'Carroll',
    'LSAD': 'County',
    'CENSUSAREA': 444.807},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.152104, 41.928947],
      [-90.1516, 41.931002],
      [-90.140613, 41.995999],
      [-90.141167, 42.008931],
      [-90.150916, 42.02944],
      [-90.154221, 42.033073],
      [-90.164537, 42.045007],
      [-90.166495, 42.054543],
      [-90.168358, 42.075779],
      [-90.163405, 42.087613],
      [-90.161119, 42.104404],
      [-90.162225, 42.11488],
      [-90.167533, 42.122475],
      [-90.211328, 42.15401],
      [-90.234919, 42.165431],
      [-90.306531, 42.190439],
      [-90.316269, 42.1936],
      [-90.304913, 42.194073],
      [-89.919657, 42.196305],
      [-89.688486, 42.199112],
      [-89.686549, 41.937493],
      [-89.685366, 41.93034],
      [-90.152104, 41.928947]]]},
   'id': '17015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17017',
    'STATE': '17',
    'COUNTY': '017',
    'NAME': 'Cass',
    'LSAD': 'County',
    'CENSUSAREA': 375.818},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.355198, 40.124245],
      [-90.286493, 40.055023],
      [-90.196609, 40.052499],
      [-89.994724, 40.108373],
      [-89.994506, 39.901925],
      [-89.994405, 39.87286],
      [-90.583534, 39.87675],
      [-90.536721, 39.923027],
      [-90.513747, 39.987891],
      [-90.433523, 40.024001],
      [-90.355198, 40.124245]]]},
   'id': '17017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17019',
    'STATE': '17',
    'COUNTY': '019',
    'NAME': 'Champaign',
    'LSAD': 'County',
    'CENSUSAREA': 996.266},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.459957, 40.39885],
      [-87.932858, 40.399401],
      [-87.937645, 39.879803],
      [-88.462207, 39.879092],
      [-88.460418, 40.281935],
      [-88.459957, 40.39885]]]},
   'id': '17019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17021',
    'STATE': '17',
    'COUNTY': '021',
    'NAME': 'Christian',
    'LSAD': 'County',
    'CENSUSAREA': 709.377},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.252325, 39.820416],
      [-89.248609, 39.825723],
      [-89.240092, 39.823137],
      [-89.233523, 39.813159],
      [-89.217523, 39.813224],
      [-89.141817, 39.80091],
      [-89.139125, 39.655131],
      [-89.025691, 39.654637],
      [-89.02568, 39.654183],
      [-89.025469, 39.464462],
      [-89.025381, 39.345896],
      [-89.139807, 39.348888],
      [-89.530836, 39.348864],
      [-89.533655, 39.524592],
      [-89.535028, 39.641138],
      [-89.425051, 39.683696],
      [-89.392858, 39.74385],
      [-89.252325, 39.820416]]]},
   'id': '17021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17023',
    'STATE': '17',
    'COUNTY': '023',
    'NAME': 'Clark',
    'LSAD': 'County',
    'CENSUSAREA': 501.418},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.531663, 39.47711],
      [-87.531624, 39.469378],
      [-87.531608, 39.466225],
      [-87.531489, 39.449474],
      [-87.531355, 39.437732],
      [-87.531355, 39.436656],
      [-87.531646, 39.347888],
      [-87.537271, 39.352089],
      [-87.544013, 39.352907],
      [-87.584852, 39.337329],
      [-87.589084, 39.333831],
      [-87.604043, 39.313526],
      [-87.61005, 39.282232],
      [-87.605543, 39.261122],
      [-87.604076, 39.259459],
      [-87.593486, 39.247452],
      [-87.587507, 39.249282],
      [-87.605173, 39.185897],
      [-87.628727, 39.157427],
      [-87.746174, 39.17922],
      [-87.950385, 39.174882],
      [-88.007766, 39.173925],
      [-88.012121, 39.378968],
      [-88.014205, 39.480762],
      [-87.960179, 39.481309],
      [-87.531663, 39.47711]]]},
   'id': '17023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17025',
    'STATE': '17',
    'COUNTY': '025',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 468.316},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.253851, 38.599502],
      [-88.564109, 38.607093],
      [-88.698457, 38.606304],
      [-88.695165, 38.826299],
      [-88.693531, 38.914617],
      [-88.620486, 38.915303],
      [-88.361745, 38.910847],
      [-88.36176, 38.851949],
      [-88.258608, 38.847521],
      [-88.253851, 38.599502]]]},
   'id': '17025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17027',
    'STATE': '17',
    'COUNTY': '027',
    'NAME': 'Clinton',
    'LSAD': 'County',
    'CENSUSAREA': 474.085},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.254237, 38.742019],
      [-89.138393, 38.736331],
      [-89.143898, 38.503088],
      [-89.360248, 38.516522],
      [-89.481556, 38.468465],
      [-89.615212, 38.472072],
      [-89.704417, 38.415667],
      [-89.707024, 38.655152],
      [-89.595103, 38.655948],
      [-89.597321, 38.743236],
      [-89.481642, 38.740532],
      [-89.254237, 38.742019]]]},
   'id': '17027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17029',
    'STATE': '17',
    'COUNTY': '029',
    'NAME': 'Coles',
    'LSAD': 'County',
    'CENSUSAREA': 508.291},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.472073, 39.651588],
      [-88.063437, 39.652555],
      [-87.9666, 39.685928],
      [-87.960179, 39.481309],
      [-88.014205, 39.480762],
      [-88.012121, 39.378968],
      [-88.47083, 39.374515],
      [-88.470505, 39.447041],
      [-88.472073, 39.651588]]]},
   'id': '17029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17031',
    'STATE': '17',
    'COUNTY': '031',
    'NAME': 'Cook',
    'LSAD': 'County',
    'CENSUSAREA': 945.326},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.524044, 41.708335],
      [-87.524944, 41.702635],
      [-87.524844, 41.691635],
      [-87.524642, 41.634935],
      [-87.524742, 41.632435],
      [-87.524642, 41.622535],
      [-87.524641, 41.563335],
      [-87.525669, 41.470283],
      [-87.653236, 41.469754],
      [-87.712752, 41.46962],
      [-87.717554, 41.469733],
      [-87.790303, 41.469846],
      [-87.790408, 41.528134],
      [-87.79056, 41.539916],
      [-87.792292, 41.538662],
      [-87.792793, 41.55854],
      [-87.909453, 41.556732],
      [-87.91193, 41.643933],
      [-88.027688, 41.641506],
      [-88.02916, 41.68553],
      [-87.914265, 41.716746],
      [-87.919333, 41.847679],
      [-87.919532, 41.851854],
      [-87.91964, 41.852621],
      [-87.919872, 41.859781],
      [-87.920082, 41.862199],
      [-87.920441, 41.906869],
      [-87.92, 41.958151],
      [-87.92067, 41.994031],
      [-88.080223, 41.990752],
      [-88.207356, 41.987127],
      [-88.210764, 41.987023],
      [-88.216575, 41.987127],
      [-88.217875, 41.987027],
      [-88.232275, 41.986627],
      [-88.233475, 41.986727],
      [-88.262876, 41.986227],
      [-88.238369, 42.154253],
      [-88.237402, 42.154281],
      [-88.199584, 42.15426],
      [-88.121545, 42.154193],
      [-88.004466, 42.153645],
      [-87.759327, 42.152362],
      [-87.75639, 42.14835],
      [-87.755826, 42.147579],
      [-87.754767, 42.146132],
      [-87.754444, 42.145691],
      [-87.754358, 42.145573],
      [-87.750396, 42.14016],
      [-87.748486, 42.13755],
      [-87.746421, 42.134729],
      [-87.741662, 42.128227],
      [-87.741318, 42.127812],
      [-87.740787, 42.127172],
      [-87.740718, 42.127089],
      [-87.739735, 42.125903],
      [-87.739529, 42.125655],
      [-87.733929, 42.118903],
      [-87.730463, 42.114723],
      [-87.729387, 42.113426],
      [-87.729378, 42.113414],
      [-87.728335, 42.112157],
      [-87.728191, 42.111984],
      [-87.727248, 42.110847],
      [-87.727005, 42.110554],
      [-87.725196, 42.108373],
      [-87.724661, 42.107727],
      [-87.724603, 42.107674],
      [-87.723723, 42.106879],
      [-87.722306, 42.105596],
      [-87.72222, 42.105518],
      [-87.7215, 42.104866],
      [-87.720407, 42.103878],
      [-87.720303, 42.103783],
      [-87.718065, 42.101758],
      [-87.717504, 42.10125],
      [-87.717276, 42.101044],
      [-87.717169, 42.100947],
      [-87.712206, 42.096455],
      [-87.71096, 42.095328],
      [-87.706415, 42.092213],
      [-87.704594, 42.090966],
      [-87.703882, 42.090478],
      [-87.70237, 42.089442],
      [-87.682359, 42.075729],
      [-87.682179, 42.075441],
      [-87.68075, 42.07316],
      [-87.679843, 42.071713],
      [-87.671462, 42.058334],
      [-87.670512, 42.05298],
      [-87.670699, 42.052305],
      [-87.671119, 42.050781],
      [-87.671184, 42.050548],
      [-87.671894, 42.047972],
      [-87.671094, 42.042802],
      [-87.668982, 42.029142],
      [-87.630953, 41.933132],
      [-87.63087, 41.932784],
      [-87.627038, 41.916738],
      [-87.624763, 41.907209],
      [-87.624134, 41.904574],
      [-87.624052, 41.904232],
      [-87.622944, 41.90202],
      [-87.619852, 41.901392],
      [-87.617433, 41.898032],
      [-87.614163, 41.893418],
      [-87.612291, 41.893335],
      [-87.611659, 41.892216],
      [-87.611659, 41.890708],
      [-87.61268, 41.889248],
      [-87.614188, 41.888421],
      [-87.613556, 41.88448],
      [-87.613654, 41.884412],
      [-87.615734, 41.882958],
      [-87.616537, 41.882396],
      [-87.616251, 41.868933],
      [-87.60945, 41.845233],
      [-87.600549, 41.826833],
      [-87.587123, 41.811422],
      [-87.587054, 41.811342],
      [-87.580948, 41.804334],
      [-87.58092, 41.804225],
      [-87.58055, 41.80275],
      [-87.576347, 41.786034],
      [-87.560646, 41.766034],
      [-87.542845, 41.752135],
      [-87.530745, 41.748235],
      [-87.524141, 41.72399],
      [-87.524044, 41.708335]]]},
   'id': '17031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17033',
    'STATE': '17',
    'COUNTY': '033',
    'NAME': 'Crawford',
    'LSAD': 'County',
    'CENSUSAREA': 443.629},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.528108, 38.908027],
      [-87.540804, 38.896385],
      [-87.553384, 38.863344],
      [-87.550515, 38.85956],
      [-87.537248, 38.853592],
      [-87.532064, 38.852503],
      [-87.759592, 38.849514],
      [-87.908113, 38.850107],
      [-87.945923, 38.850108],
      [-87.950385, 39.174882],
      [-87.746174, 39.17922],
      [-87.628727, 39.157427],
      [-87.642174, 39.157097],
      [-87.651719, 39.150602],
      [-87.658746, 39.135997],
      [-87.614881, 39.102655],
      [-87.572588, 39.057286],
      [-87.512187, 38.954417],
      [-87.518826, 38.923205],
      [-87.52791, 38.908209],
      [-87.528108, 38.908027]]]},
   'id': '17033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17035',
    'STATE': '17',
    'COUNTY': '035',
    'NAME': 'Cumberland',
    'LSAD': 'County',
    'CENSUSAREA': 346.024},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.012121, 39.378968],
      [-88.007766, 39.173925],
      [-88.360654, 39.171118],
      [-88.470865, 39.171463],
      [-88.470906, 39.215029],
      [-88.471147, 39.220615],
      [-88.47083, 39.374515],
      [-88.012121, 39.378968]]]},
   'id': '17035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17037',
    'STATE': '17',
    'COUNTY': '037',
    'NAME': 'DeKalb',
    'LSAD': 'County',
    'CENSUSAREA': 631.307},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.588657, 42.15359],
      [-88.601291, 41.981336],
      [-88.601933, 41.719563],
      [-88.60362, 41.719546],
      [-88.60224, 41.631389],
      [-88.818462, 41.631352],
      [-88.938618, 41.628319],
      [-88.941279, 41.891752],
      [-88.939732, 42.15232],
      [-88.705633, 42.153561],
      [-88.588657, 42.15359]]]},
   'id': '17037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17039',
    'STATE': '17',
    'COUNTY': '039',
    'NAME': 'De Witt',
    'LSAD': 'County',
    'CENSUSAREA': 397.513},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.689271, 40.282148],
      [-88.574885, 40.281501],
      [-88.745164, 40.055191],
      [-89.144764, 40.048853],
      [-89.148764, 40.282038],
      [-88.689271, 40.282148]]]},
   'id': '17039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17041',
    'STATE': '17',
    'COUNTY': '041',
    'NAME': 'Douglas',
    'LSAD': 'County',
    'CENSUSAREA': 416.665},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.937645, 39.879803],
      [-87.9666, 39.685928],
      [-88.063437, 39.652555],
      [-88.472073, 39.651588],
      [-88.473182, 39.791837],
      [-88.462328, 39.79182],
      [-88.462207, 39.879092],
      [-87.937645, 39.879803]]]},
   'id': '17041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17043',
    'STATE': '17',
    'COUNTY': '043',
    'NAME': 'DuPage',
    'LSAD': 'County',
    'CENSUSAREA': 327.499},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.080223, 41.990752],
      [-87.92067, 41.994031],
      [-87.92, 41.958151],
      [-87.920441, 41.906869],
      [-87.920082, 41.862199],
      [-87.919872, 41.859781],
      [-87.91964, 41.852621],
      [-87.919532, 41.851854],
      [-87.919333, 41.847679],
      [-87.914265, 41.716746],
      [-88.02916, 41.68553],
      [-88.030561, 41.72893],
      [-88.261468, 41.724529],
      [-88.261952, 41.724652],
      [-88.26247, 41.777429],
      [-88.26267, 41.779629],
      [-88.263071, 41.799328],
      [-88.263068, 41.81229],
      [-88.262876, 41.986227],
      [-88.233475, 41.986727],
      [-88.232275, 41.986627],
      [-88.217875, 41.987027],
      [-88.216575, 41.987127],
      [-88.210764, 41.987023],
      [-88.207356, 41.987127],
      [-88.080223, 41.990752]]]},
   'id': '17043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17045',
    'STATE': '17',
    'COUNTY': '045',
    'NAME': 'Edgar',
    'LSAD': 'County',
    'CENSUSAREA': 623.374},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.533227, 39.883],
      [-87.533142, 39.810947],
      [-87.533056, 39.803922],
      [-87.533058, 39.796243],
      [-87.533066, 39.781743],
      [-87.532703, 39.664868],
      [-87.532444, 39.646102],
      [-87.532365, 39.646126],
      [-87.532196, 39.607306],
      [-87.532008, 39.564013],
      [-87.531939, 39.545853],
      [-87.531965, 39.526937],
      [-87.531692, 39.495516],
      [-87.531627, 39.491698],
      [-87.531663, 39.47712],
      [-87.531663, 39.47711],
      [-87.960179, 39.481309],
      [-87.9666, 39.685928],
      [-87.937645, 39.879803],
      [-87.533227, 39.883]]]},
   'id': '17045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17047',
    'STATE': '17',
    'COUNTY': '047',
    'NAME': 'Edwards',
    'LSAD': 'County',
    'CENSUSAREA': 222.416},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.058472, 38.255747],
      [-88.1509, 38.256097],
      [-88.147814, 38.569086],
      [-87.953898, 38.570094],
      [-87.977034, 38.379374],
      [-87.972855, 38.364565],
      [-87.969656, 38.361933],
      [-87.967298, 38.353556],
      [-87.957878, 38.347675],
      [-87.954445, 38.339733],
      [-87.954798, 38.335308],
      [-87.9906, 38.259715],
      [-88.02768, 38.259771],
      [-88.027749, 38.255661],
      [-88.058472, 38.255747]]]},
   'id': '17047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17049',
    'STATE': '17',
    'COUNTY': '049',
    'NAME': 'Effingham',
    'LSAD': 'County',
    'CENSUSAREA': 478.777},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.360654, 39.171118],
      [-88.361745, 38.910847],
      [-88.620486, 38.915303],
      [-88.693531, 38.914617],
      [-88.806794, 38.911656],
      [-88.805325, 39.216263],
      [-88.804484, 39.216131],
      [-88.470906, 39.215029],
      [-88.470865, 39.171463],
      [-88.360654, 39.171118]]]},
   'id': '17049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17051',
    'STATE': '17',
    'COUNTY': '051',
    'NAME': 'Fayette',
    'LSAD': 'County',
    'CENSUSAREA': 716.482},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.250658, 39.086442],
      [-89.250513, 39.217512],
      [-89.140076, 39.217907],
      [-89.139305, 39.217192],
      [-89.122992, 39.217303],
      [-89.025698, 39.215536],
      [-88.917477, 39.216545],
      [-88.838197, 39.216273],
      [-88.836967, 39.216548],
      [-88.83481, 39.21637],
      [-88.80672, 39.216402],
      [-88.805325, 39.216263],
      [-88.806794, 38.911656],
      [-88.693531, 38.914617],
      [-88.695165, 38.826299],
      [-89.138138, 38.824244],
      [-89.138393, 38.736331],
      [-89.254237, 38.742019],
      [-89.250447, 39.028145],
      [-89.250335, 39.029942],
      [-89.250658, 39.086442]]]},
   'id': '17051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17053',
    'STATE': '17',
    'COUNTY': '053',
    'NAME': 'Ford',
    'LSAD': 'County',
    'CENSUSAREA': 485.616},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.935309, 40.485923],
      [-87.931758, 40.400187],
      [-87.932858, 40.399401],
      [-88.459957, 40.39885],
      [-88.459475, 40.617345],
      [-88.234949, 40.618166],
      [-88.2473, 40.99456],
      [-88.245975, 40.994607],
      [-88.236498, 40.995218],
      [-88.133741, 40.997605],
      [-88.131938, 40.997839],
      [-88.117905, 40.488086],
      [-87.935309, 40.485923]]]},
   'id': '17053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17055',
    'STATE': '17',
    'COUNTY': '055',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 408.889},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.151176, 37.861999],
      [-89.150834, 37.950196],
      [-89.177597, 37.950311],
      [-89.129637, 38.124747],
      [-88.704606, 38.125195],
      [-88.706622, 37.906797],
      [-88.706665, 37.888866],
      [-88.706747, 37.887706],
      [-88.706688, 37.886951],
      [-88.70676, 37.863338],
      [-89.151176, 37.861999]]]},
   'id': '17055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17057',
    'STATE': '17',
    'COUNTY': '057',
    'NAME': 'Fulton',
    'LSAD': 'County',
    'CENSUSAREA': 865.595},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.215267, 40.713598],
      [-89.986068, 40.712257],
      [-89.989018, 40.625835],
      [-89.873506, 40.624588],
      [-89.872463, 40.513127],
      [-89.92468, 40.435921],
      [-90.033026, 40.377806],
      [-90.118966, 40.235263],
      [-90.199556, 40.183945],
      [-90.451502, 40.188892],
      [-90.450227, 40.276335],
      [-90.445506, 40.627843],
      [-90.445217, 40.65687],
      [-90.445084, 40.657202],
      [-90.445009, 40.662406],
      [-90.444877, 40.663944],
      [-90.44475, 40.677479],
      [-90.444875, 40.677784],
      [-90.444606, 40.695505],
      [-90.444429, 40.697371],
      [-90.444343, 40.714667],
      [-90.215267, 40.713598]]]},
   'id': '17057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17059',
    'STATE': '17',
    'COUNTY': '059',
    'NAME': 'Gallatin',
    'LSAD': 'County',
    'CENSUSAREA': 323.071},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.039, 37.775454],
      [-88.045008, 37.762436],
      [-88.050969, 37.752599],
      [-88.059588, 37.742608],
      [-88.072538, 37.733286],
      [-88.122412, 37.709685],
      [-88.151646, 37.675098],
      [-88.158207, 37.664542],
      [-88.160187, 37.657592],
      [-88.156827, 37.632801],
      [-88.139973, 37.586451],
      [-88.133416, 37.574277],
      [-88.375332, 37.599563],
      [-88.373884, 37.776237],
      [-88.374395, 37.863935],
      [-88.374398, 37.870982],
      [-88.374593, 37.871139],
      [-88.37453, 37.874824],
      [-88.374406, 37.875066],
      [-88.37453, 37.907678],
      [-88.37452, 37.908432],
      [-88.357462, 37.909081],
      [-88.26331, 37.908632],
      [-88.071449, 37.895813],
      [-88.049453, 37.845187],
      [-88.027789, 37.828298],
      [-88.02803, 37.799224],
      [-88.039, 37.775454]]]},
   'id': '17059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17061',
    'STATE': '17',
    'COUNTY': '061',
    'NAME': 'Greene',
    'LSAD': 'County',
    'CENSUSAREA': 543.019},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.48749, 39.175133],
      [-90.574615, 39.178623],
      [-90.603569, 39.117592],
      [-90.613694, 39.395775],
      [-90.593256, 39.484586],
      [-90.590605, 39.493675],
      [-90.582202, 39.510332],
      [-90.581055, 39.521728],
      [-90.301801, 39.520192],
      [-90.15375, 39.520315],
      [-90.150641, 39.346315],
      [-90.149173, 39.334597],
      [-90.148069, 39.261947],
      [-90.314071, 39.225053],
      [-90.370711, 39.174444],
      [-90.48749, 39.175133]]]},
   'id': '17061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17063',
    'STATE': '17',
    'COUNTY': '063',
    'NAME': 'Grundy',
    'LSAD': 'County',
    'CENSUSAREA': 418.043},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.36314, 41.11158],
      [-88.58624, 41.108293],
      [-88.59596, 41.457034],
      [-88.254972, 41.462768],
      [-88.252098, 41.463096],
      [-88.244155, 41.201546],
      [-88.240889, 41.114383],
      [-88.251995, 41.114229],
      [-88.36314, 41.11158]]]},
   'id': '17063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17065',
    'STATE': '17',
    'COUNTY': '065',
    'NAME': 'Hamilton',
    'LSAD': 'County',
    'CENSUSAREA': 434.665},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.485265, 37.907032],
      [-88.706622, 37.906797],
      [-88.704606, 38.125195],
      [-88.702391, 38.256661],
      [-88.370491, 38.255413],
      [-88.37452, 37.908432],
      [-88.37453, 37.907678],
      [-88.375019, 37.90775],
      [-88.484314, 37.906945],
      [-88.485265, 37.907032]]]},
   'id': '17065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17067',
    'STATE': '17',
    'COUNTY': '067',
    'NAME': 'Hancock',
    'LSAD': 'County',
    'CENSUSAREA': 793.726},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.501435, 40.248874],
      [-91.489868, 40.286048],
      [-91.46214, 40.342414],
      [-91.444833, 40.36317],
      [-91.419422, 40.378264],
      [-91.38836, 40.384929],
      [-91.375746, 40.391879],
      [-91.372554, 40.4012],
      [-91.36391, 40.490122],
      [-91.364211, 40.500043],
      [-91.369059, 40.512532],
      [-91.384531, 40.530948],
      [-91.404125, 40.539127],
      [-91.406851, 40.547557],
      [-91.405241, 40.554641],
      [-91.359873, 40.601805],
      [-91.348733, 40.609695],
      [-91.339719, 40.613488],
      [-91.306524, 40.626231],
      [-91.253074, 40.637962],
      [-91.218437, 40.638437],
      [-91.197906, 40.636107],
      [-91.18698, 40.637297],
      [-91.185415, 40.638052],
      [-90.913894, 40.637748],
      [-90.904216, 40.639201],
      [-90.909756, 40.284394],
      [-90.911969, 40.193088],
      [-91.258828, 40.197299],
      [-91.510332, 40.201142],
      [-91.505968, 40.234305],
      [-91.501435, 40.248874]]]},
   'id': '17067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17069',
    'STATE': '17',
    'COUNTY': '069',
    'NAME': 'Hardin',
    'LSAD': 'County',
    'CENSUSAREA': 177.528},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.133416, 37.574277],
      [-88.133393, 37.574235],
      [-88.133306, 37.574191],
      [-88.133235, 37.574154],
      [-88.121517, 37.568166],
      [-88.072242, 37.528826],
      [-88.063311, 37.515755],
      [-88.061311, 37.505332],
      [-88.061292, 37.505232],
      [-88.062562, 37.489385],
      [-88.083395, 37.473683],
      [-88.255193, 37.456748],
      [-88.281667, 37.452596],
      [-88.312585, 37.440591],
      [-88.330622, 37.429316],
      [-88.358436, 37.40486],
      [-88.408808, 37.425216],
      [-88.414895, 37.423461],
      [-88.415149, 37.424863],
      [-88.412112, 37.599912],
      [-88.375332, 37.599563],
      [-88.133416, 37.574277]]]},
   'id': '17069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17071',
    'STATE': '17',
    'COUNTY': '071',
    'NAME': 'Henderson',
    'LSAD': 'County',
    'CENSUSAREA': 378.872},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.112258, 40.696218],
      [-91.11194, 40.697018],
      [-91.094728, 40.797833],
      [-91.097031, 40.802471],
      [-91.097553, 40.808433],
      [-91.092993, 40.821079],
      [-91.009536, 40.900565],
      [-90.9985, 40.90812],
      [-90.968995, 40.919127],
      [-90.962916, 40.924957],
      [-90.952233, 40.954047],
      [-90.942253, 41.034702],
      [-90.945549, 41.06173],
      [-90.948523, 41.070248],
      [-90.785194, 41.068749],
      [-90.789652, 40.63575],
      [-90.894339, 40.638683],
      [-90.904216, 40.639201],
      [-90.913894, 40.637748],
      [-91.185415, 40.638052],
      [-91.138055, 40.660893],
      [-91.122421, 40.670675],
      [-91.112258, 40.696218]]]},
   'id': '17071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17073',
    'STATE': '17',
    'COUNTY': '073',
    'NAME': 'Henry',
    'LSAD': 'County',
    'CENSUSAREA': 822.985},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.856902, 41.408836],
      [-89.856619, 41.320956],
      [-89.857571, 41.234768],
      [-89.857798, 41.234483],
      [-89.868384, 41.148955],
      [-89.984559, 41.149366],
      [-90.323178, 41.151288],
      [-90.437657, 41.151252],
      [-90.433771, 41.326983],
      [-90.43213, 41.456234],
      [-90.332657, 41.514001],
      [-90.196535, 41.540126],
      [-90.185609, 41.584653],
      [-89.862351, 41.584005],
      [-89.856902, 41.408836]]]},
   'id': '17073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17075',
    'STATE': '17',
    'COUNTY': '075',
    'NAME': 'Iroquois',
    'LSAD': 'County',
    'CENSUSAREA': 1117.316},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.526129, 40.736885],
      [-87.526292, 40.535409],
      [-87.526352, 40.535111],
      [-87.526376, 40.491574],
      [-87.526379, 40.491237],
      [-87.935309, 40.485923],
      [-88.117905, 40.488086],
      [-88.131938, 40.997839],
      [-87.526307, 41.010355],
      [-87.526305, 41.010346],
      [-87.526084, 40.911914],
      [-87.526437, 40.894209],
      [-87.525962, 40.880618],
      [-87.526113, 40.879703],
      [-87.525783, 40.854357],
      [-87.526129, 40.73695],
      [-87.526129, 40.736885]]]},
   'id': '17075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17077',
    'STATE': '17',
    'COUNTY': '077',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 584.081},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.521407, 37.572143],
      [-89.521274, 37.578971],
      [-89.518007, 37.583962],
      [-89.511936, 37.584564],
      [-89.506563, 37.62505],
      [-89.515436, 37.67137],
      [-89.671255, 37.801144],
      [-89.674304, 37.803179],
      [-89.595084, 37.95531],
      [-89.177597, 37.950311],
      [-89.150834, 37.950196],
      [-89.151176, 37.861999],
      [-89.153668, 37.600469],
      [-89.450594, 37.600022],
      [-89.521407, 37.572143]]]},
   'id': '17077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17079',
    'STATE': '17',
    'COUNTY': '079',
    'NAME': 'Jasper',
    'LSAD': 'County',
    'CENSUSAREA': 494.51},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.007766, 39.173925],
      [-87.950385, 39.174882],
      [-87.945923, 38.850108],
      [-88.258608, 38.847521],
      [-88.36176, 38.851949],
      [-88.361745, 38.910847],
      [-88.360654, 39.171118],
      [-88.007766, 39.173925]]]},
   'id': '17079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17081',
    'STATE': '17',
    'COUNTY': '081',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 571.169},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.698961, 38.474914],
      [-88.702391, 38.256661],
      [-88.704606, 38.125195],
      [-89.129637, 38.124747],
      [-89.149739, 38.124945],
      [-89.147416, 38.212896],
      [-89.144388, 38.473878],
      [-88.698961, 38.474914]]]},
   'id': '17081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17083',
    'STATE': '17',
    'COUNTY': '083',
    'NAME': 'Jersey',
    'LSAD': 'County',
    'CENSUSAREA': 369.271},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.385751, 38.956848],
      [-90.406367, 38.962554],
      [-90.450792, 38.967764],
      [-90.450809, 38.967758],
      [-90.570169, 38.99329],
      [-90.603569, 39.117592],
      [-90.574615, 39.178623],
      [-90.48749, 39.175133],
      [-90.370711, 39.174444],
      [-90.314071, 39.225053],
      [-90.148069, 39.261947],
      [-90.145991, 39.000046],
      [-90.273686, 38.999347],
      [-90.275932, 38.926453],
      [-90.385751, 38.956848]]]},
   'id': '17083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17085',
    'STATE': '17',
    'COUNTY': '085',
    'NAME': 'Jo Daviess',
    'LSAD': 'County',
    'CENSUSAREA': 601.087},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.640927, 42.508302],
      [-90.617731, 42.508077],
      [-90.614589, 42.508053],
      [-90.565441, 42.5076],
      [-90.555862, 42.507509],
      [-90.551165, 42.507691],
      [-90.544799, 42.507713],
      [-90.544347, 42.507707],
      [-90.532254, 42.507573],
      [-90.491716, 42.507624],
      [-90.479446, 42.507416],
      [-90.474955, 42.507484],
      [-90.437011, 42.507147],
      [-90.426378, 42.507059],
      [-90.405927, 42.506891],
      [-90.370673, 42.507111],
      [-90.367874, 42.507114],
      [-90.362652, 42.507048],
      [-90.303823, 42.507469],
      [-90.272864, 42.507531],
      [-90.269335, 42.507726],
      [-90.267143, 42.507642],
      [-90.253121, 42.50734],
      [-90.250622, 42.507521],
      [-90.22319, 42.507765],
      [-90.206073, 42.507747],
      [-90.181572, 42.508068],
      [-90.164363, 42.508272],
      [-90.142922, 42.508151],
      [-90.095004, 42.507885],
      [-90.093026, 42.50816],
      [-90.018665, 42.507288],
      [-90.017028, 42.507127],
      [-89.999314, 42.506914],
      [-89.997213, 42.506755],
      [-89.985645, 42.506431],
      [-89.985072, 42.506464],
      [-89.926484, 42.505787],
      [-89.926374, 42.505788],
      [-89.926224, 42.505788],
      [-89.919657, 42.196305],
      [-90.304913, 42.194073],
      [-90.316269, 42.1936],
      [-90.349162, 42.204277],
      [-90.356964, 42.205445],
      [-90.375129, 42.214811],
      [-90.391108, 42.225473],
      [-90.419326, 42.254467],
      [-90.430884, 42.27823],
      [-90.430735, 42.284211],
      [-90.424326, 42.293326],
      [-90.4162, 42.321314],
      [-90.416535, 42.325109],
      [-90.419027, 42.328505],
      [-90.474834, 42.381473],
      [-90.477279, 42.383794],
      [-90.559451, 42.430695],
      [-90.624328, 42.458904],
      [-90.646727, 42.471904],
      [-90.654027, 42.478503],
      [-90.656327, 42.483603],
      [-90.656527, 42.489203],
      [-90.655927, 42.491703],
      [-90.640927, 42.508302]]]},
   'id': '17085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17087',
    'STATE': '17',
    'COUNTY': '087',
    'NAME': 'Johnson',
    'LSAD': 'County',
    'CENSUSAREA': 343.915},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.041401, 37.596576],
      [-88.851487, 37.597236],
      [-88.708546, 37.599277],
      [-88.71065, 37.33709],
      [-88.904003, 37.335629],
      [-88.929129, 37.302647],
      [-89.044787, 37.329846],
      [-89.041401, 37.596576]]]},
   'id': '17087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17089',
    'STATE': '17',
    'COUNTY': '089',
    'NAME': 'Kane',
    'LSAD': 'County',
    'CENSUSAREA': 520.058},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.263068, 41.81229],
      [-88.263071, 41.799328],
      [-88.26267, 41.779629],
      [-88.26247, 41.777429],
      [-88.261952, 41.724652],
      [-88.601933, 41.719563],
      [-88.601291, 41.981336],
      [-88.588657, 42.15359],
      [-88.238369, 42.154253],
      [-88.262876, 41.986227],
      [-88.263068, 41.81229]]]},
   'id': '17089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17091',
    'STATE': '17',
    'COUNTY': '091',
    'NAME': 'Kankakee',
    'LSAD': 'County',
    'CENSUSAREA': 676.556},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.526768, 41.298052],
      [-87.52657, 41.166097],
      [-87.526567, 41.163865],
      [-87.52666, 41.16009],
      [-87.526719, 41.159448],
      [-87.526693, 41.153958],
      [-87.526696, 41.149222],
      [-87.5267, 41.139658],
      [-87.526711, 41.121485],
      [-87.52652, 41.024837],
      [-87.526346, 41.010583],
      [-87.526307, 41.010355],
      [-88.131938, 40.997839],
      [-88.133741, 40.997605],
      [-88.236498, 40.995218],
      [-88.245975, 40.994607],
      [-88.2473, 40.99456],
      [-88.248258, 41.023547],
      [-88.25113, 41.10353],
      [-88.251995, 41.114229],
      [-88.240889, 41.114383],
      [-88.244155, 41.201546],
      [-88.011812, 41.205604],
      [-88.013919, 41.292447],
      [-87.526768, 41.298052]]]},
   'id': '17091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17093',
    'STATE': '17',
    'COUNTY': '093',
    'NAME': 'Kendall',
    'LSAD': 'County',
    'CENSUSAREA': 320.335},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.261468, 41.724529],
      [-88.257274, 41.593469],
      [-88.252098, 41.463096],
      [-88.254972, 41.462768],
      [-88.59596, 41.457034],
      [-88.60224, 41.631389],
      [-88.60362, 41.719546],
      [-88.601933, 41.719563],
      [-88.261952, 41.724652],
      [-88.261468, 41.724529]]]},
   'id': '17093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17095',
    'STATE': '17',
    'COUNTY': '095',
    'NAME': 'Knox',
    'LSAD': 'County',
    'CENSUSAREA': 716.395},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.215267, 40.713598],
      [-90.444343, 40.714667],
      [-90.439423, 41.063995],
      [-90.437957, 41.133884],
      [-90.438122, 41.136808],
      [-90.437847, 41.137221],
      [-90.437657, 41.151252],
      [-90.323178, 41.151288],
      [-89.984559, 41.149366],
      [-89.985479, 40.974495],
      [-89.985429, 40.887645],
      [-89.985376, 40.850576],
      [-89.985226, 40.848699],
      [-89.985333, 40.800032],
      [-89.986068, 40.712257],
      [-90.215267, 40.713598]]]},
   'id': '17095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17097',
    'STATE': '17',
    'COUNTY': '097',
    'NAME': 'Lake',
    'LSAD': 'County',
    'CENSUSAREA': 443.67},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.049782, 42.495319],
      [-87.99018, 42.494519],
      [-87.971279, 42.494019],
      [-87.900242, 42.49302],
      [-87.843594, 42.492307],
      [-87.815872, 42.49192],
      [-87.800561, 42.49192],
      [-87.800477, 42.49192],
      [-87.800317, 42.490578],
      [-87.798971, 42.479278],
      [-87.79823, 42.473054],
      [-87.798071, 42.471721],
      [-87.800752, 42.445867],
      [-87.80337, 42.420621],
      [-87.803529, 42.417759],
      [-87.80375, 42.413793],
      [-87.80537, 42.384721],
      [-87.80613, 42.383357],
      [-87.81557, 42.366416],
      [-87.81657, 42.364621],
      [-87.820858, 42.361584],
      [-87.820871, 42.361544],
      [-87.826717, 42.343497],
      [-87.830646, 42.331368],
      [-87.830986, 42.330317],
      [-87.831221, 42.32853],
      [-87.834769, 42.301522],
      [-87.833468, 42.294892],
      [-87.832738, 42.291173],
      [-87.83253, 42.290109],
      [-87.831286, 42.283772],
      [-87.828569, 42.269922],
      [-87.828034, 42.268673],
      [-87.82772, 42.267937],
      [-87.826944, 42.266125],
      [-87.825313, 42.262313],
      [-87.812461, 42.232278],
      [-87.812422, 42.232185],
      [-87.812315, 42.231935],
      [-87.812267, 42.231823],
      [-87.808395, 42.224271],
      [-87.803873, 42.215449],
      [-87.800066, 42.208024],
      [-87.798589, 42.206007],
      [-87.7983, 42.205611],
      [-87.797497, 42.204514],
      [-87.797444, 42.204442],
      [-87.796937, 42.203748],
      [-87.796779, 42.203533],
      [-87.788313, 42.191966],
      [-87.787241, 42.190501],
      [-87.775295, 42.174179],
      [-87.759327, 42.152362],
      [-88.004466, 42.153645],
      [-88.121545, 42.154193],
      [-88.199584, 42.15426],
      [-88.19875, 42.25422],
      [-88.199521, 42.496013],
      [-88.049782, 42.495319]]]},
   'id': '17097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17099',
    'STATE': '17',
    'COUNTY': '099',
    'NAME': 'LaSalle',
    'LSAD': 'County',
    'CENSUSAREA': 1135.124},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.166561, 41.585289],
      [-89.1672, 41.628707],
      [-88.938618, 41.628319],
      [-88.818462, 41.631352],
      [-88.60224, 41.631389],
      [-88.59596, 41.457034],
      [-88.58624, 41.108293],
      [-88.930881, 41.1059],
      [-88.93139, 40.92774],
      [-89.047718, 40.925749],
      [-89.047856, 41.104781],
      [-89.162238, 41.10408],
      [-89.163705, 41.310187],
      [-89.166561, 41.585289]]]},
   'id': '17099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17101',
    'STATE': '17',
    'COUNTY': '101',
    'NAME': 'Lawrence',
    'LSAD': 'County',
    'CENSUSAREA': 372.178},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.532064, 38.852503],
      [-87.528194, 38.851691],
      [-87.525893, 38.848795],
      [-87.495211, 38.78306],
      [-87.498515, 38.758983],
      [-87.519609, 38.697198],
      [-87.531231, 38.684036],
      [-87.540052, 38.679143],
      [-87.579397, 38.672475],
      [-87.593678, 38.667402],
      [-87.60018, 38.662462],
      [-87.62012, 38.639489],
      [-87.627345, 38.607237],
      [-87.651529, 38.568166],
      [-87.653977, 38.568289],
      [-87.760094, 38.568783],
      [-87.769353, 38.568937],
      [-87.912286, 38.570104],
      [-87.908113, 38.850107],
      [-87.759592, 38.849514],
      [-87.532064, 38.852503]]]},
   'id': '17101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17103',
    'STATE': '17',
    'COUNTY': '103',
    'NAME': 'Lee',
    'LSAD': 'County',
    'CENSUSAREA': 724.896},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.628371, 41.585014],
      [-89.631494, 41.584949],
      [-89.631368, 41.771297],
      [-89.62933, 41.901617],
      [-89.360682, 41.88807],
      [-88.941279, 41.891752],
      [-88.938618, 41.628319],
      [-89.1672, 41.628707],
      [-89.166561, 41.585289],
      [-89.628371, 41.585014]]]},
   'id': '17103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17105',
    'STATE': '17',
    'COUNTY': '105',
    'NAME': 'Livingston',
    'LSAD': 'County',
    'CENSUSAREA': 1044.285},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.459475, 40.617345],
      [-88.574502, 40.61655],
      [-88.584272, 40.757608],
      [-88.814487, 40.75506],
      [-88.929331, 40.753337],
      [-88.93139, 40.92774],
      [-88.930881, 41.1059],
      [-88.58624, 41.108293],
      [-88.36314, 41.11158],
      [-88.251995, 41.114229],
      [-88.25113, 41.10353],
      [-88.248258, 41.023547],
      [-88.2473, 40.99456],
      [-88.234949, 40.618166],
      [-88.459475, 40.617345]]]},
   'id': '17105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17107',
    'STATE': '17',
    'COUNTY': '107',
    'NAME': 'Logan',
    'LSAD': 'County',
    'CENSUSAREA': 618.059},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.26374, 40.325344],
      [-89.26265, 40.280919],
      [-89.148764, 40.282038],
      [-89.144764, 40.048853],
      [-89.143457, 39.91792],
      [-89.217846, 39.91699],
      [-89.483419, 39.93314],
      [-89.578289, 39.976127],
      [-89.601604, 40.122432],
      [-89.602979, 40.320129],
      [-89.26374, 40.325344]]]},
   'id': '17107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17109',
    'STATE': '17',
    'COUNTY': '109',
    'NAME': 'McDonough',
    'LSAD': 'County',
    'CENSUSAREA': 589.407},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.789652, 40.63575],
      [-90.445506, 40.627843],
      [-90.450227, 40.276335],
      [-90.909756, 40.284394],
      [-90.904216, 40.639201],
      [-90.894339, 40.638683],
      [-90.789652, 40.63575]]]},
   'id': '17109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17111',
    'STATE': '17',
    'COUNTY': '111',
    'NAME': 'McHenry',
    'LSAD': 'County',
    'CENSUSAREA': 603.171},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.304692, 42.494773],
      [-88.271691, 42.494818],
      [-88.2169, 42.495923],
      [-88.200172, 42.496016],
      [-88.199521, 42.496013],
      [-88.19875, 42.25422],
      [-88.199584, 42.15426],
      [-88.237402, 42.154281],
      [-88.238369, 42.154253],
      [-88.588657, 42.15359],
      [-88.705633, 42.153561],
      [-88.707378, 42.493587],
      [-88.506912, 42.494883],
      [-88.470597, 42.494672],
      [-88.461397, 42.494618],
      [-88.417396, 42.494618],
      [-88.304692, 42.494773]]]},
   'id': '17111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17113',
    'STATE': '17',
    'COUNTY': '113',
    'NAME': 'McLean',
    'LSAD': 'County',
    'CENSUSAREA': 1183.378},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.814487, 40.75506],
      [-88.584272, 40.757608],
      [-88.574502, 40.61655],
      [-88.459475, 40.617345],
      [-88.459957, 40.39885],
      [-88.460418, 40.281935],
      [-88.4809, 40.281216],
      [-88.574885, 40.281501],
      [-88.689271, 40.282148],
      [-89.148764, 40.282038],
      [-89.26265, 40.280919],
      [-89.26374, 40.325344],
      [-89.26939, 40.594329],
      [-89.155175, 40.596417],
      [-89.145649, 40.662057],
      [-88.9847, 40.664954],
      [-88.986896, 40.752297],
      [-88.929331, 40.753337],
      [-88.814487, 40.75506]]]},
   'id': '17113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17115',
    'STATE': '17',
    'COUNTY': '115',
    'NAME': 'Macon',
    'LSAD': 'County',
    'CENSUSAREA': 580.689},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.025691, 39.654637],
      [-89.139125, 39.655131],
      [-89.141817, 39.80091],
      [-89.217523, 39.813224],
      [-89.21747, 39.85296],
      [-89.217546, 39.872392],
      [-89.21781, 39.873818],
      [-89.217846, 39.91699],
      [-89.143457, 39.91792],
      [-89.144764, 40.048853],
      [-88.745164, 40.055191],
      [-88.745957, 39.858136],
      [-88.745671, 39.792146],
      [-88.812709, 39.740486],
      [-88.810575, 39.653222],
      [-89.02568, 39.654183],
      [-89.025691, 39.654637]]]},
   'id': '17115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17117',
    'STATE': '17',
    'COUNTY': '117',
    'NAME': 'Macoupin',
    'LSAD': 'County',
    'CENSUSAREA': 862.906},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.813147, 39.522838],
      [-89.804458, 39.522876],
      [-89.800366, 39.523025],
      [-89.795316, 39.522939],
      [-89.701645, 39.523369],
      [-89.700338, 39.17544],
      [-89.698555, 38.998979],
      [-89.70402, 38.99894],
      [-89.705349, 38.998963],
      [-89.705675, 38.999161],
      [-89.707266, 38.999012],
      [-89.707911, 38.999009],
      [-89.811673, 38.998462],
      [-89.81462, 38.998349],
      [-90.145991, 39.000046],
      [-90.148069, 39.261947],
      [-90.149173, 39.334597],
      [-90.150641, 39.346315],
      [-90.15375, 39.520315],
      [-89.926037, 39.522104],
      [-89.813147, 39.522838]]]},
   'id': '17117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17119',
    'STATE': '17',
    'COUNTY': '119',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 715.582},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.117707, 38.805748],
      [-90.114707, 38.815048],
      [-90.109107, 38.837448],
      [-90.109407, 38.843548],
      [-90.113327, 38.849306],
      [-90.207035, 38.898954],
      [-90.22585, 38.908923],
      [-90.250248, 38.919344],
      [-90.275932, 38.926453],
      [-90.273686, 38.999347],
      [-90.145991, 39.000046],
      [-89.81462, 38.998349],
      [-89.811673, 38.998462],
      [-89.707911, 38.999009],
      [-89.707266, 38.999012],
      [-89.705675, 38.999161],
      [-89.705349, 38.998963],
      [-89.70402, 38.99894],
      [-89.698555, 38.998979],
      [-89.653446, 38.999191],
      [-89.652405, 38.999581],
      [-89.648846, 38.999167],
      [-89.639265, 38.999129],
      [-89.636874, 38.874278],
      [-89.599593, 38.87453],
      [-89.597321, 38.743236],
      [-89.595103, 38.655948],
      [-89.707024, 38.655152],
      [-90.037105, 38.658449],
      [-90.17772, 38.660536],
      [-90.181399, 38.660378],
      [-90.18641, 38.67475],
      [-90.19521, 38.68755],
      [-90.20221, 38.69345],
      [-90.20921, 38.70275],
      [-90.21201, 38.71175],
      [-90.20991, 38.72605],
      [-90.171309, 38.766549],
      [-90.165082, 38.770618],
      [-90.123107, 38.798048],
      [-90.117707, 38.805748]]]},
   'id': '17119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17121',
    'STATE': '17',
    'COUNTY': '121',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 572.363},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.144388, 38.473878],
      [-89.144258, 38.474861],
      [-89.143898, 38.503088],
      [-89.138393, 38.736331],
      [-89.138138, 38.824244],
      [-88.695165, 38.826299],
      [-88.698457, 38.606304],
      [-88.698961, 38.474914],
      [-89.144388, 38.473878]]]},
   'id': '17121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17123',
    'STATE': '17',
    'COUNTY': '123',
    'NAME': 'Marshall',
    'LSAD': 'County',
    'CENSUSAREA': 386.789},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.638429, 41.148591],
      [-89.466421, 41.148558],
      [-89.32927, 41.147931],
      [-89.358597, 41.103665],
      [-89.162238, 41.10408],
      [-89.047856, 41.104781],
      [-89.047718, 40.925749],
      [-89.47233, 40.921206],
      [-89.447693, 40.973246],
      [-89.638727, 40.973707],
      [-89.638429, 41.148591]]]},
   'id': '17123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17125',
    'STATE': '17',
    'COUNTY': '125',
    'NAME': 'Mason',
    'LSAD': 'County',
    'CENSUSAREA': 539.238},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.199556, 40.183945],
      [-90.118966, 40.235263],
      [-90.033026, 40.377806],
      [-89.92468, 40.435921],
      [-89.717104, 40.435655],
      [-89.714927, 40.319218],
      [-89.602979, 40.320129],
      [-89.601604, 40.122432],
      [-89.638262, 40.15487],
      [-89.749196, 40.126852],
      [-89.97049, 40.142082],
      [-89.994724, 40.108373],
      [-90.196609, 40.052499],
      [-90.286493, 40.055023],
      [-90.355198, 40.124245],
      [-90.199556, 40.183945]]]},
   'id': '17125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17127',
    'STATE': '17',
    'COUNTY': '127',
    'NAME': 'Massac',
    'LSAD': 'County',
    'CENSUSAREA': 237.218},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.564152, 37.07844],
      [-88.576718, 37.085852],
      [-88.589207, 37.099655],
      [-88.625889, 37.119458],
      [-88.809206, 37.189235],
      [-88.916934, 37.224291],
      [-88.928021, 37.226281],
      [-88.929129, 37.302647],
      [-88.904003, 37.335629],
      [-88.71065, 37.33709],
      [-88.490336, 37.159358],
      [-88.490297, 37.066669],
      [-88.514356, 37.065231],
      [-88.531576, 37.067192],
      [-88.545403, 37.070003],
      [-88.560032, 37.07601],
      [-88.564152, 37.07844]]]},
   'id': '17127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17129',
    'STATE': '17',
    'COUNTY': '129',
    'NAME': 'Menard',
    'LSAD': 'County',
    'CENSUSAREA': 314.437},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.994724, 40.108373],
      [-89.97049, 40.142082],
      [-89.749196, 40.126852],
      [-89.638262, 40.15487],
      [-89.601604, 40.122432],
      [-89.578289, 39.976127],
      [-89.698259, 39.975309],
      [-89.701864, 39.916787],
      [-89.994506, 39.901925],
      [-89.994724, 40.108373]]]},
   'id': '17129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17131',
    'STATE': '17',
    'COUNTY': '131',
    'NAME': 'Mercer',
    'LSAD': 'County',
    'CENSUSAREA': 561.202},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.948523, 41.070248],
      [-90.949383, 41.07271],
      [-90.949383, 41.072711],
      [-90.946627, 41.096632],
      [-90.989663, 41.155716],
      [-90.997906, 41.162564],
      [-91.005503, 41.165622],
      [-91.019036, 41.16491],
      [-91.049808, 41.178033],
      [-91.113648, 41.241401],
      [-91.114186, 41.250029],
      [-91.079657, 41.333727],
      [-91.078682, 41.336089],
      [-90.433771, 41.326983],
      [-90.437657, 41.151252],
      [-90.437847, 41.137221],
      [-90.438122, 41.136808],
      [-90.437957, 41.133884],
      [-90.439423, 41.063995],
      [-90.785194, 41.068749],
      [-90.948523, 41.070248]]]},
   'id': '17131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17133',
    'STATE': '17',
    'COUNTY': '133',
    'NAME': 'Monroe',
    'LSAD': 'County',
    'CENSUSAREA': 385.011},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.203847, 38.088753],
      [-90.243116, 38.112669],
      [-90.254112, 38.12199],
      [-90.334258, 38.189932],
      [-90.353902, 38.213855],
      [-90.363926, 38.236355],
      [-90.373929, 38.281853],
      [-90.372519, 38.323354],
      [-90.370819, 38.333554],
      [-90.350918, 38.375053],
      [-90.346118, 38.381853],
      [-90.340297, 38.386998],
      [-90.295316, 38.426753],
      [-90.285215, 38.443453],
      [-90.279215, 38.472453],
      [-90.263064, 38.52022],
      [-90.036018, 38.30885],
      [-89.913226, 38.307829],
      [-89.899061, 38.220755],
      [-90.036385, 38.223125],
      [-90.035999, 38.13563],
      [-90.203847, 38.088753]]]},
   'id': '17133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17135',
    'STATE': '17',
    'COUNTY': '135',
    'NAME': 'Montgomery',
    'LSAD': 'County',
    'CENSUSAREA': 703.687},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.700338, 39.17544],
      [-89.701645, 39.523369],
      [-89.533655, 39.524592],
      [-89.530836, 39.348864],
      [-89.139807, 39.348888],
      [-89.140076, 39.217907],
      [-89.250513, 39.217512],
      [-89.250658, 39.086442],
      [-89.250335, 39.029942],
      [-89.250447, 39.028145],
      [-89.586088, 39.028246],
      [-89.639265, 38.999129],
      [-89.648846, 38.999167],
      [-89.652405, 38.999581],
      [-89.653446, 38.999191],
      [-89.698555, 38.998979],
      [-89.700338, 39.17544]]]},
   'id': '17135'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17137',
    'STATE': '17',
    'COUNTY': '137',
    'NAME': 'Morgan',
    'LSAD': 'County',
    'CENSUSAREA': 568.791},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.571754, 39.839326],
      [-90.582435, 39.854574],
      [-90.583534, 39.87675],
      [-89.994405, 39.87286],
      [-89.984745, 39.718079],
      [-89.926037, 39.522104],
      [-90.15375, 39.520315],
      [-90.301801, 39.520192],
      [-90.300666, 39.636541],
      [-90.372969, 39.665781],
      [-90.371253, 39.753388],
      [-90.599105, 39.79006],
      [-90.566976, 39.826883],
      [-90.571754, 39.839326]]]},
   'id': '17137'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17139',
    'STATE': '17',
    'COUNTY': '139',
    'NAME': 'Moultrie',
    'LSAD': 'County',
    'CENSUSAREA': 335.943},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.473182, 39.791837],
      [-88.472073, 39.651588],
      [-88.470505, 39.447041],
      [-88.584273, 39.447582],
      [-88.641468, 39.520958],
      [-88.716875, 39.521209],
      [-88.717539, 39.579299],
      [-88.809051, 39.580241],
      [-88.810575, 39.653222],
      [-88.812709, 39.740486],
      [-88.745671, 39.792146],
      [-88.473182, 39.791837]]]},
   'id': '17139'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17141',
    'STATE': '17',
    'COUNTY': '141',
    'NAME': 'Ogle',
    'LSAD': 'County',
    'CENSUSAREA': 758.574},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.939732, 42.15232],
      [-88.941279, 41.891752],
      [-89.360682, 41.88807],
      [-89.62933, 41.901617],
      [-89.628907, 41.930044],
      [-89.685366, 41.93034],
      [-89.686549, 41.937493],
      [-89.688486, 42.199112],
      [-89.396192, 42.201916],
      [-89.173, 42.204241],
      [-89.172799, 42.150297],
      [-88.939732, 42.15232]]]},
   'id': '17141'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17143',
    'STATE': '17',
    'COUNTY': '143',
    'NAME': 'Peoria',
    'LSAD': 'County',
    'CENSUSAREA': 619.209},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.986068, 40.712257],
      [-89.985333, 40.800032],
      [-89.985226, 40.848699],
      [-89.985376, 40.850576],
      [-89.985429, 40.887645],
      [-89.985479, 40.974495],
      [-89.982549, 40.974707],
      [-89.638727, 40.973707],
      [-89.447693, 40.973246],
      [-89.47233, 40.921206],
      [-89.552766, 40.810469],
      [-89.554994, 40.747637],
      [-89.658003, 40.567438],
      [-89.872463, 40.513127],
      [-89.873506, 40.624588],
      [-89.989018, 40.625835],
      [-89.986068, 40.712257]]]},
   'id': '17143'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17145',
    'STATE': '17',
    'COUNTY': '145',
    'NAME': 'Perry',
    'LSAD': 'County',
    'CENSUSAREA': 441.761},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.592797, 38.219271],
      [-89.147416, 38.212896],
      [-89.149739, 38.124945],
      [-89.129637, 38.124747],
      [-89.177597, 37.950311],
      [-89.595084, 37.95531],
      [-89.592797, 38.219271]]]},
   'id': '17145'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17147',
    'STATE': '17',
    'COUNTY': '147',
    'NAME': 'Piatt',
    'LSAD': 'County',
    'CENSUSAREA': 439.202},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.462207, 39.879092],
      [-88.462328, 39.79182],
      [-88.473182, 39.791837],
      [-88.745671, 39.792146],
      [-88.745957, 39.858136],
      [-88.745164, 40.055191],
      [-88.574885, 40.281501],
      [-88.4809, 40.281216],
      [-88.460418, 40.281935],
      [-88.462207, 39.879092]]]},
   'id': '17147'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17149',
    'STATE': '17',
    'COUNTY': '149',
    'NAME': 'Pike',
    'LSAD': 'County',
    'CENSUSAREA': 831.381},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.313162, 39.684907],
      [-91.349039, 39.712316],
      [-91.367753, 39.729029],
      [-91.370009, 39.732524],
      [-91.369953, 39.745042],
      [-91.367962, 39.759124],
      [-91.365125, 39.758723],
      [-91.265848, 39.757258],
      [-91.147678, 39.75707],
      [-90.916071, 39.757168],
      [-90.916609, 39.845075],
      [-90.893651, 39.84092],
      [-90.571754, 39.839326],
      [-90.566976, 39.826883],
      [-90.599105, 39.79006],
      [-90.64599, 39.703368],
      [-90.581055, 39.521728],
      [-90.582202, 39.510332],
      [-90.590605, 39.493675],
      [-90.593256, 39.484586],
      [-90.613694, 39.395775],
      [-90.939983, 39.393555],
      [-90.993789, 39.422959],
      [-91.042351, 39.452062],
      [-91.158606, 39.553048],
      [-91.168419, 39.564928],
      [-91.178012, 39.598196],
      [-91.229317, 39.620853],
      [-91.313162, 39.684907]]]},
   'id': '17149'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17151',
    'STATE': '17',
    'COUNTY': '151',
    'NAME': 'Pope',
    'LSAD': 'County',
    'CENSUSAREA': 368.77},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.490297, 37.066669],
      [-88.490336, 37.159358],
      [-88.71065, 37.33709],
      [-88.708546, 37.599277],
      [-88.412112, 37.599912],
      [-88.415149, 37.424863],
      [-88.414895, 37.423461],
      [-88.439333, 37.416416],
      [-88.456, 37.408482],
      [-88.470224, 37.396255],
      [-88.476592, 37.386875],
      [-88.514661, 37.290948],
      [-88.515939, 37.284043],
      [-88.509328, 37.26213],
      [-88.471753, 37.220155],
      [-88.458763, 37.213536],
      [-88.447764, 37.203527],
      [-88.424403, 37.152428],
      [-88.444605, 37.098601],
      [-88.458948, 37.073796],
      [-88.482856, 37.067114],
      [-88.490297, 37.066669]]]},
   'id': '17151'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17153',
    'STATE': '17',
    'COUNTY': '153',
    'NAME': 'Pulaski',
    'LSAD': 'County',
    'CENSUSAREA': 199.185},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.928021, 37.226281],
      [-88.942111, 37.228811],
      [-88.933385, 37.225005],
      [-88.933399, 37.225007],
      [-88.966831, 37.229891],
      [-88.98326, 37.228685],
      [-89.000968, 37.224401],
      [-89.041263, 37.202881],
      [-89.086526, 37.165602],
      [-89.168087, 37.074218],
      [-89.171881, 37.068184],
      [-89.273631, 37.126968],
      [-89.248439, 37.335109],
      [-89.099448, 37.333559],
      [-89.044787, 37.329846],
      [-88.929129, 37.302647],
      [-88.928021, 37.226281]]]},
   'id': '17153'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17155',
    'STATE': '17',
    'COUNTY': '155',
    'NAME': 'Putnam',
    'LSAD': 'County',
    'CENSUSAREA': 160.161},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.466421, 41.148558],
      [-89.466534, 41.233873],
      [-89.356671, 41.233235],
      [-89.334901, 41.300877],
      [-89.163705, 41.310187],
      [-89.162238, 41.10408],
      [-89.358597, 41.103665],
      [-89.32927, 41.147931],
      [-89.466421, 41.148558]]]},
   'id': '17155'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17157',
    'STATE': '17',
    'COUNTY': '157',
    'NAME': 'Randolph',
    'LSAD': 'County',
    'CENSUSAREA': 575.5},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.674304, 37.803179],
      [-89.739873, 37.84693],
      [-89.844786, 37.905572],
      [-89.851048, 37.90398],
      [-89.862949, 37.896906],
      [-89.881475, 37.879591],
      [-89.901832, 37.869822],
      [-89.923185, 37.870672],
      [-89.937383, 37.874693],
      [-89.938191, 37.875111],
      [-89.950594, 37.881526],
      [-89.973642, 37.917661],
      [-89.974918, 37.926719],
      [-89.997103, 37.963225],
      [-90.072283, 38.017001],
      [-90.126532, 38.041666],
      [-90.203847, 38.088753],
      [-90.035999, 38.13563],
      [-90.036385, 38.223125],
      [-89.899061, 38.220755],
      [-89.703256, 38.219404],
      [-89.592797, 38.219271],
      [-89.595084, 37.95531],
      [-89.674304, 37.803179]]]},
   'id': '17157'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17159',
    'STATE': '17',
    'COUNTY': '159',
    'NAME': 'Richland',
    'LSAD': 'County',
    'CENSUSAREA': 359.99},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.953898, 38.570094],
      [-88.147814, 38.569086],
      [-88.148044, 38.597988],
      [-88.253851, 38.599502],
      [-88.258608, 38.847521],
      [-87.945923, 38.850108],
      [-87.908113, 38.850107],
      [-87.912286, 38.570104],
      [-87.912351, 38.569909],
      [-87.953014, 38.57014],
      [-87.953898, 38.570094]]]},
   'id': '17159'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17161',
    'STATE': '17',
    'COUNTY': '161',
    'NAME': 'Rock Island',
    'LSAD': 'County',
    'CENSUSAREA': 427.636},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.278633, 41.767358],
      [-90.242747, 41.783767],
      [-90.229749, 41.675375],
      [-90.165057, 41.602933],
      [-90.164842, 41.597322],
      [-90.170427, 41.591761],
      [-90.181412, 41.590993],
      [-90.185609, 41.584653],
      [-90.196535, 41.540126],
      [-90.332657, 41.514001],
      [-90.43213, 41.456234],
      [-90.433771, 41.326983],
      [-91.078682, 41.336089],
      [-91.047819, 41.4109],
      [-91.039872, 41.418523],
      [-91.027787, 41.423603],
      [-90.989976, 41.431962],
      [-90.847458, 41.455019],
      [-90.786282, 41.452888],
      [-90.771672, 41.450761],
      [-90.737537, 41.450127],
      [-90.655839, 41.462132],
      [-90.605937, 41.494232],
      [-90.499475, 41.518055],
      [-90.474332, 41.519733],
      [-90.461432, 41.523533],
      [-90.39793, 41.572233],
      [-90.34165, 41.621484],
      [-90.343162, 41.648141],
      [-90.334525, 41.679559],
      [-90.317041, 41.729104],
      [-90.31522, 41.734264],
      [-90.309826, 41.743321],
      [-90.302782, 41.750031],
      [-90.278633, 41.767358]]]},
   'id': '17161'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17163',
    'STATE': '17',
    'COUNTY': '163',
    'NAME': 'St. Clair',
    'LSAD': 'County',
    'CENSUSAREA': 657.759},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.18451, 38.611551],
      [-90.182625, 38.617989],
      [-90.17801, 38.63375],
      [-90.17771, 38.64275],
      [-90.18111, 38.65955],
      [-90.181399, 38.660378],
      [-90.17772, 38.660536],
      [-90.037105, 38.658449],
      [-89.707024, 38.655152],
      [-89.704417, 38.415667],
      [-89.703256, 38.219404],
      [-89.899061, 38.220755],
      [-89.913226, 38.307829],
      [-90.036018, 38.30885],
      [-90.263064, 38.52022],
      [-90.260314, 38.528352],
      [-90.257773, 38.532008],
      [-90.248913, 38.544752],
      [-90.224512, 38.574651],
      [-90.202511, 38.588651],
      [-90.196011, 38.594451],
      [-90.18451, 38.611551]]]},
   'id': '17163'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17165',
    'STATE': '17',
    'COUNTY': '165',
    'NAME': 'Saline',
    'LSAD': 'County',
    'CENSUSAREA': 379.819},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.706622, 37.906797],
      [-88.485265, 37.907032],
      [-88.484314, 37.906945],
      [-88.375019, 37.90775],
      [-88.37453, 37.907678],
      [-88.374406, 37.875066],
      [-88.37453, 37.874824],
      [-88.374593, 37.871139],
      [-88.374398, 37.870982],
      [-88.374395, 37.863935],
      [-88.373884, 37.776237],
      [-88.375332, 37.599563],
      [-88.412112, 37.599912],
      [-88.708546, 37.599277],
      [-88.70676, 37.863338],
      [-88.706688, 37.886951],
      [-88.706747, 37.887706],
      [-88.706665, 37.888866],
      [-88.706622, 37.906797]]]},
   'id': '17165'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17167',
    'STATE': '17',
    'COUNTY': '167',
    'NAME': 'Sangamon',
    'LSAD': 'County',
    'CENSUSAREA': 868.302},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.701645, 39.523369],
      [-89.795316, 39.522939],
      [-89.800366, 39.523025],
      [-89.804458, 39.522876],
      [-89.813147, 39.522838],
      [-89.926037, 39.522104],
      [-89.984745, 39.718079],
      [-89.994405, 39.87286],
      [-89.994506, 39.901925],
      [-89.701864, 39.916787],
      [-89.698259, 39.975309],
      [-89.578289, 39.976127],
      [-89.483419, 39.93314],
      [-89.217846, 39.91699],
      [-89.21781, 39.873818],
      [-89.217546, 39.872392],
      [-89.21747, 39.85296],
      [-89.217523, 39.813224],
      [-89.233523, 39.813159],
      [-89.240092, 39.823137],
      [-89.248609, 39.825723],
      [-89.252325, 39.820416],
      [-89.392858, 39.74385],
      [-89.425051, 39.683696],
      [-89.535028, 39.641138],
      [-89.533655, 39.524592],
      [-89.701645, 39.523369]]]},
   'id': '17167'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17169',
    'STATE': '17',
    'COUNTY': '169',
    'NAME': 'Schuyler',
    'LSAD': 'County',
    'CENSUSAREA': 437.273},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.909756, 40.284394],
      [-90.450227, 40.276335],
      [-90.451502, 40.188892],
      [-90.199556, 40.183945],
      [-90.355198, 40.124245],
      [-90.433523, 40.024001],
      [-90.513747, 39.987891],
      [-90.607134, 39.981658],
      [-90.695884, 40.103794],
      [-90.913616, 40.104452],
      [-90.911969, 40.193088],
      [-90.909756, 40.284394]]]},
   'id': '17169'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17171',
    'STATE': '17',
    'COUNTY': '171',
    'NAME': 'Scott',
    'LSAD': 'County',
    'CENSUSAREA': 250.913},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.581055, 39.521728],
      [-90.64599, 39.703368],
      [-90.599105, 39.79006],
      [-90.371253, 39.753388],
      [-90.372969, 39.665781],
      [-90.300666, 39.636541],
      [-90.301801, 39.520192],
      [-90.581055, 39.521728]]]},
   'id': '17171'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17173',
    'STATE': '17',
    'COUNTY': '173',
    'NAME': 'Shelby',
    'LSAD': 'County',
    'CENSUSAREA': 758.523},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.139807, 39.348888],
      [-89.025381, 39.345896],
      [-89.025469, 39.464462],
      [-89.02568, 39.654183],
      [-88.810575, 39.653222],
      [-88.809051, 39.580241],
      [-88.717539, 39.579299],
      [-88.716875, 39.521209],
      [-88.641468, 39.520958],
      [-88.584273, 39.447582],
      [-88.470505, 39.447041],
      [-88.47083, 39.374515],
      [-88.471147, 39.220615],
      [-88.470906, 39.215029],
      [-88.804484, 39.216131],
      [-88.805325, 39.216263],
      [-88.80672, 39.216402],
      [-88.83481, 39.21637],
      [-88.836967, 39.216548],
      [-88.838197, 39.216273],
      [-88.917477, 39.216545],
      [-89.025698, 39.215536],
      [-89.122992, 39.217303],
      [-89.139305, 39.217192],
      [-89.140076, 39.217907],
      [-89.139807, 39.348888]]]},
   'id': '17173'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17175',
    'STATE': '17',
    'COUNTY': '175',
    'NAME': 'Stark',
    'LSAD': 'County',
    'CENSUSAREA': 288.079},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.638864, 41.233862],
      [-89.638597, 41.14976],
      [-89.638429, 41.148591],
      [-89.638727, 40.973707],
      [-89.982549, 40.974707],
      [-89.985479, 40.974495],
      [-89.984559, 41.149366],
      [-89.868384, 41.148955],
      [-89.857798, 41.234483],
      [-89.638864, 41.233862]]]},
   'id': '17175'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17177',
    'STATE': '17',
    'COUNTY': '177',
    'NAME': 'Stephenson',
    'LSAD': 'County',
    'CENSUSAREA': 564.523},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.837587, 42.505543],
      [-89.801897, 42.505444],
      [-89.799704, 42.505421],
      [-89.793957, 42.505466],
      [-89.780302, 42.505349],
      [-89.769643, 42.505322],
      [-89.742395, 42.505382],
      [-89.693487, 42.505099],
      [-89.690088, 42.505191],
      [-89.667596, 42.50496],
      [-89.650324, 42.504613],
      [-89.644176, 42.50452],
      [-89.61341, 42.503942],
      [-89.603523, 42.503557],
      [-89.600001, 42.503672],
      [-89.594779, 42.503468],
      [-89.564407, 42.502628],
      [-89.522542, 42.501889],
      [-89.493216, 42.501514],
      [-89.492612, 42.501514],
      [-89.4843, 42.501426],
      [-89.425162, 42.500726],
      [-89.423926, 42.500818],
      [-89.422567, 42.50068],
      [-89.420991, 42.500589],
      [-89.401432, 42.500433],
      [-89.401416, 42.500433],
      [-89.396192, 42.201916],
      [-89.688486, 42.199112],
      [-89.919657, 42.196305],
      [-89.926224, 42.505788],
      [-89.837587, 42.505543]]]},
   'id': '17177'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17179',
    'STATE': '17',
    'COUNTY': '179',
    'NAME': 'Tazewell',
    'LSAD': 'County',
    'CENSUSAREA': 648.974},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.26939, 40.594329],
      [-89.26374, 40.325344],
      [-89.602979, 40.320129],
      [-89.714927, 40.319218],
      [-89.717104, 40.435655],
      [-89.92468, 40.435921],
      [-89.872463, 40.513127],
      [-89.658003, 40.567438],
      [-89.554994, 40.747637],
      [-89.330167, 40.748257],
      [-89.327343, 40.615566],
      [-89.26939, 40.594329]]]},
   'id': '17179'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17181',
    'STATE': '17',
    'COUNTY': '181',
    'NAME': 'Union',
    'LSAD': 'County',
    'CENSUSAREA': 413.459},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.521523, 37.566208],
      [-89.521407, 37.572143],
      [-89.450594, 37.600022],
      [-89.153668, 37.600469],
      [-89.041401, 37.596576],
      [-89.044787, 37.329846],
      [-89.099448, 37.333559],
      [-89.248439, 37.335109],
      [-89.484598, 37.334832],
      [-89.474569, 37.338165],
      [-89.447556, 37.340475],
      [-89.43604, 37.344441],
      [-89.432836, 37.347056],
      [-89.428185, 37.356158],
      [-89.421054, 37.387668],
      [-89.42594, 37.407471],
      [-89.439769, 37.4372],
      [-89.450969, 37.450069],
      [-89.475525, 37.471388],
      [-89.492051, 37.494008],
      [-89.517051, 37.537278],
      [-89.521697, 37.557325],
      [-89.521523, 37.566208]]]},
   'id': '17181'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17183',
    'STATE': '17',
    'COUNTY': '183',
    'NAME': 'Vermilion',
    'LSAD': 'County',
    'CENSUSAREA': 898.368},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.526379, 40.491237],
      [-87.526502, 40.477158],
      [-87.526511, 40.476879],
      [-87.526549, 40.475659],
      [-87.526809, 40.46217],
      [-87.530054, 40.250671],
      [-87.529992, 40.250036],
      [-87.530828, 40.191812],
      [-87.531133, 40.17003],
      [-87.531438, 40.148123],
      [-87.531439, 40.148027],
      [-87.531759, 40.144273],
      [-87.531561, 40.133005],
      [-87.532308, 40.011587],
      [-87.532308, 40.011492],
      [-87.532287, 40.000037],
      [-87.532331, 39.997776],
      [-87.532542, 39.987462],
      [-87.532683, 39.977691],
      [-87.53279, 39.97501],
      [-87.532776, 39.971077],
      [-87.533227, 39.883127],
      [-87.533227, 39.883],
      [-87.937645, 39.879803],
      [-87.932858, 40.399401],
      [-87.931758, 40.400187],
      [-87.935309, 40.485923],
      [-87.526379, 40.491237]]]},
   'id': '17183'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17185',
    'STATE': '17',
    'COUNTY': '185',
    'NAME': 'Wabash',
    'LSAD': 'County',
    'CENSUSAREA': 223.252},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.651529, 38.568166],
      [-87.670071, 38.545237],
      [-87.669232, 38.541742],
      [-87.656144, 38.521668],
      [-87.740001, 38.415698],
      [-87.750028, 38.403027],
      [-87.863032, 38.280172],
      [-87.923958, 38.258409],
      [-87.951715, 38.239632],
      [-87.987911, 38.256957],
      [-87.9906, 38.259715],
      [-87.954798, 38.335308],
      [-87.954445, 38.339733],
      [-87.957878, 38.347675],
      [-87.967298, 38.353556],
      [-87.969656, 38.361933],
      [-87.972855, 38.364565],
      [-87.977034, 38.379374],
      [-87.953898, 38.570094],
      [-87.953014, 38.57014],
      [-87.912351, 38.569909],
      [-87.912286, 38.570104],
      [-87.769353, 38.568937],
      [-87.760094, 38.568783],
      [-87.653977, 38.568289],
      [-87.651529, 38.568166]]]},
   'id': '17185'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17187',
    'STATE': '17',
    'COUNTY': '187',
    'NAME': 'Warren',
    'LSAD': 'County',
    'CENSUSAREA': 542.405},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.445506, 40.627843],
      [-90.789652, 40.63575],
      [-90.785194, 41.068749],
      [-90.439423, 41.063995],
      [-90.444343, 40.714667],
      [-90.444429, 40.697371],
      [-90.444606, 40.695505],
      [-90.444875, 40.677784],
      [-90.44475, 40.677479],
      [-90.444877, 40.663944],
      [-90.445009, 40.662406],
      [-90.445084, 40.657202],
      [-90.445217, 40.65687],
      [-90.445506, 40.627843]]]},
   'id': '17187'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17189',
    'STATE': '17',
    'COUNTY': '189',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 562.572},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.704417, 38.415667],
      [-89.615212, 38.472072],
      [-89.481556, 38.468465],
      [-89.360248, 38.516522],
      [-89.143898, 38.503088],
      [-89.144258, 38.474861],
      [-89.144388, 38.473878],
      [-89.147416, 38.212896],
      [-89.592797, 38.219271],
      [-89.703256, 38.219404],
      [-89.704417, 38.415667]]]},
   'id': '17189'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17191',
    'STATE': '17',
    'COUNTY': '191',
    'NAME': 'Wayne',
    'LSAD': 'County',
    'CENSUSAREA': 713.814},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.702391, 38.256661],
      [-88.698961, 38.474914],
      [-88.698457, 38.606304],
      [-88.564109, 38.607093],
      [-88.253851, 38.599502],
      [-88.148044, 38.597988],
      [-88.147814, 38.569086],
      [-88.1509, 38.256097],
      [-88.370491, 38.255413],
      [-88.702391, 38.256661]]]},
   'id': '17191'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17193',
    'STATE': '17',
    'COUNTY': '193',
    'NAME': 'White',
    'LSAD': 'County',
    'CENSUSAREA': 494.766},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.951715, 38.239632],
      [-87.955344, 38.230008],
      [-87.961103, 38.214733],
      [-87.959062, 38.203712],
      [-87.951307, 38.193099],
      [-87.940694, 38.181261],
      [-87.928856, 38.176771],
      [-87.915666, 38.173322],
      [-87.910792, 38.167666],
      [-87.911034, 38.162194],
      [-87.92783, 38.141545],
      [-87.942176, 38.131759],
      [-87.974272, 38.121981],
      [-88.013118, 38.103527],
      [-88.042132, 38.046345],
      [-88.041532, 38.037345],
      [-88.012574, 37.977062],
      [-88.013451, 37.893951],
      [-88.017073, 37.889222],
      [-88.021117, 37.888057],
      [-88.055373, 37.891238],
      [-88.071449, 37.895813],
      [-88.26331, 37.908632],
      [-88.357462, 37.909081],
      [-88.37452, 37.908432],
      [-88.370491, 38.255413],
      [-88.1509, 38.256097],
      [-88.058472, 38.255747],
      [-88.027749, 38.255661],
      [-88.02768, 38.259771],
      [-87.9906, 38.259715],
      [-87.987911, 38.256957],
      [-87.951715, 38.239632]]]},
   'id': '17193'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17195',
    'STATE': '17',
    'COUNTY': '195',
    'NAME': 'Whiteside',
    'LSAD': 'County',
    'CENSUSAREA': 684.25},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.20844, 41.797176],
      [-90.187969, 41.803163],
      [-90.181973, 41.80707],
      [-90.152104, 41.928947],
      [-89.685366, 41.93034],
      [-89.628907, 41.930044],
      [-89.62933, 41.901617],
      [-89.631368, 41.771297],
      [-89.631494, 41.584949],
      [-89.862351, 41.584005],
      [-90.185609, 41.584653],
      [-90.181412, 41.590993],
      [-90.170427, 41.591761],
      [-90.164842, 41.597322],
      [-90.165057, 41.602933],
      [-90.229749, 41.675375],
      [-90.242747, 41.783767],
      [-90.222263, 41.793133],
      [-90.20844, 41.797176]]]},
   'id': '17195'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17197',
    'STATE': '17',
    'COUNTY': '197',
    'NAME': 'Will',
    'LSAD': 'County',
    'CENSUSAREA': 836.908},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.525669, 41.470283],
      [-87.525671, 41.470115],
      [-87.525623, 41.453619],
      [-87.526768, 41.298177],
      [-87.526768, 41.298052],
      [-88.013919, 41.292447],
      [-88.011812, 41.205604],
      [-88.244155, 41.201546],
      [-88.252098, 41.463096],
      [-88.257274, 41.593469],
      [-88.261468, 41.724529],
      [-88.030561, 41.72893],
      [-88.02916, 41.68553],
      [-88.027688, 41.641506],
      [-87.91193, 41.643933],
      [-87.909453, 41.556732],
      [-87.792793, 41.55854],
      [-87.792292, 41.538662],
      [-87.79056, 41.539916],
      [-87.790408, 41.528134],
      [-87.790303, 41.469846],
      [-87.717554, 41.469733],
      [-87.712752, 41.46962],
      [-87.653236, 41.469754],
      [-87.525669, 41.470283]]]},
   'id': '17197'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17199',
    'STATE': '17',
    'COUNTY': '199',
    'NAME': 'Williamson',
    'LSAD': 'County',
    'CENSUSAREA': 420.149},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.708546, 37.599277],
      [-88.851487, 37.597236],
      [-89.041401, 37.596576],
      [-89.153668, 37.600469],
      [-89.151176, 37.861999],
      [-88.70676, 37.863338],
      [-88.708546, 37.599277]]]},
   'id': '17199'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17201',
    'STATE': '17',
    'COUNTY': '201',
    'NAME': 'Winnebago',
    'LSAD': 'County',
    'CENSUSAREA': 513.362},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.013667, 42.496087],
      [-88.992977, 42.496026],
      [-88.992659, 42.496025],
      [-88.943264, 42.495114],
      [-88.940391, 42.495046],
      [-88.940388, 42.495046],
      [-88.939732, 42.15232],
      [-89.172799, 42.150297],
      [-89.173, 42.204241],
      [-89.396192, 42.201916],
      [-89.401416, 42.500433],
      [-89.366031, 42.500274],
      [-89.361561, 42.500012],
      [-89.290896, 42.498853],
      [-89.250759, 42.497994],
      [-89.246972, 42.49813],
      [-89.228279, 42.498047],
      [-89.22627, 42.497957],
      [-89.166728, 42.497256],
      [-89.164905, 42.497347],
      [-89.125111, 42.496957],
      [-89.120365, 42.496992],
      [-89.116949, 42.49691],
      [-89.099012, 42.496499],
      [-89.071141, 42.496208],
      [-89.042898, 42.496255],
      [-89.013804, 42.496097],
      [-89.013667, 42.496087]]]},
   'id': '17201'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US17203',
    'STATE': '17',
    'COUNTY': '203',
    'NAME': 'Woodford',
    'LSAD': 'County',
    'CENSUSAREA': 527.799},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-88.986896, 40.752297],
      [-88.9847, 40.664954],
      [-89.145649, 40.662057],
      [-89.155175, 40.596417],
      [-89.26939, 40.594329],
      [-89.327343, 40.615566],
      [-89.330167, 40.748257],
      [-89.554994, 40.747637],
      [-89.552766, 40.810469],
      [-89.47233, 40.921206],
      [-89.047718, 40.925749],
      [-88.93139, 40.92774],
      [-88.929331, 40.753337],
      [-88.986896, 40.752297]]]},
   'id': '17203'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18001',
    'STATE': '18',
    'COUNTY': '001',
    'NAME': 'Adams',
    'LSAD': 'County',
    'CENSUSAREA': 339.028},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.802936, 40.922568],
      [-84.802935, 40.922377],
      [-84.802538, 40.765515],
      [-84.802266, 40.742298],
      [-84.802119, 40.728163],
      [-84.802119, 40.728146],
      [-84.802181, 40.718602],
      [-84.802094, 40.702476],
      [-84.802127, 40.691405],
      [-84.802157, 40.689324],
      [-84.80222, 40.674776],
      [-84.802193, 40.660298],
      [-84.802135, 40.644859],
      [-84.802265, 40.572215],
      [-84.802265, 40.572212],
      [-85.068479, 40.56824],
      [-85.073861, 40.917823],
      [-84.802936, 40.922568]]]},
   'id': '18001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18003',
    'STATE': '18',
    'COUNTY': '003',
    'NAME': 'Allen',
    'LSAD': 'County',
    'CENSUSAREA': 657.308},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.803582, 41.271273],
      [-84.803581, 41.271079],
      [-84.80358, 41.270942],
      [-84.803492, 41.252562],
      [-84.803492, 41.252531],
      [-84.803472, 41.173889],
      [-84.803594, 41.173203],
      [-84.803413, 41.164649],
      [-84.803378, 41.096867],
      [-84.803374, 41.089302],
      [-84.803313, 40.989394],
      [-84.803313, 40.989209],
      [-84.802936, 40.922568],
      [-85.073861, 40.917823],
      [-85.167063, 40.916585],
      [-85.33603, 40.917082],
      [-85.335374, 41.002047],
      [-85.335643, 41.00525],
      [-85.338552, 41.17912],
      [-85.307781, 41.264158],
      [-85.192094, 41.264209],
      [-84.806471, 41.270904],
      [-84.803582, 41.271273]]]},
   'id': '18003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18005',
    'STATE': '18',
    'COUNTY': '005',
    'NAME': 'Bartholomew',
    'LSAD': 'County',
    'CENSUSAREA': 406.908},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.952005, 39.347373],
      [-85.85746, 39.349312],
      [-85.854064, 39.349498],
      [-85.684515, 39.350049],
      [-85.687295, 39.190076],
      [-85.687161, 39.189026],
      [-85.687294, 39.185605],
      [-85.686783, 39.130859],
      [-85.799834, 39.128897],
      [-85.798804, 39.068536],
      [-85.860573, 39.04091],
      [-86.080272, 39.05027],
      [-86.080294, 39.152543],
      [-86.085601, 39.344189],
      [-86.081531, 39.344446],
      [-85.952005, 39.347373]]]},
   'id': '18005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18007',
    'STATE': '18',
    'COUNTY': '007',
    'NAME': 'Benton',
    'LSAD': 'County',
    'CENSUSAREA': 406.418},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.09839, 40.736541],
      [-87.09682, 40.736491],
      [-87.095357, 40.562895],
      [-87.093676, 40.475745],
      [-87.526511, 40.476879],
      [-87.526502, 40.477158],
      [-87.526379, 40.491237],
      [-87.526376, 40.491574],
      [-87.526352, 40.535111],
      [-87.526292, 40.535409],
      [-87.526129, 40.736885],
      [-87.2673, 40.736582],
      [-87.09839, 40.736541]]]},
   'id': '18007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18009',
    'STATE': '18',
    'COUNTY': '009',
    'NAME': 'Blackford',
    'LSAD': 'County',
    'CENSUSAREA': 165.08},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.219901, 40.379034],
      [-85.44433, 40.37914],
      [-85.447014, 40.566929],
      [-85.201146, 40.567242],
      [-85.206831, 40.379182],
      [-85.219901, 40.379034]]]},
   'id': '18009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18011',
    'STATE': '18',
    'COUNTY': '011',
    'NAME': 'Boone',
    'LSAD': 'County',
    'CENSUSAREA': 422.913},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.242365, 40.180778],
      [-86.239739, 39.926055],
      [-86.24109, 39.926092],
      [-86.263305, 39.924889],
      [-86.326293, 39.924029],
      [-86.695071, 39.92277],
      [-86.695804, 40.178657],
      [-86.39885, 40.17719],
      [-86.242365, 40.180778]]]},
   'id': '18011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18013',
    'STATE': '18',
    'COUNTY': '013',
    'NAME': 'Brown',
    'LSAD': 'County',
    'CENSUSAREA': 311.981},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.085601, 39.344189],
      [-86.080294, 39.152543],
      [-86.080272, 39.05027],
      [-86.318133, 39.04881],
      [-86.370066, 39.048375],
      [-86.381395, 39.339752],
      [-86.251684, 39.341672],
      [-86.085601, 39.344189]]]},
   'id': '18013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18015',
    'STATE': '18',
    'COUNTY': '015',
    'NAME': 'Carroll',
    'LSAD': 'County',
    'CENSUSAREA': 372.224},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.771293, 40.562082],
      [-86.747764, 40.73754],
      [-86.697099, 40.737102],
      [-86.678148, 40.736897],
      [-86.677986, 40.736752],
      [-86.581739, 40.735765],
      [-86.525164, 40.692419],
      [-86.373521, 40.69246],
      [-86.374417, 40.561361],
      [-86.375762, 40.431851],
      [-86.694665, 40.432156],
      [-86.695353, 40.561874],
      [-86.771293, 40.562082]]]},
   'id': '18015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18017',
    'STATE': '18',
    'COUNTY': '017',
    'NAME': 'Cass',
    'LSAD': 'County',
    'CENSUSAREA': 412.155},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.165024, 40.562649],
      [-86.184044, 40.562459],
      [-86.374417, 40.561361],
      [-86.373521, 40.69246],
      [-86.525164, 40.692419],
      [-86.581739, 40.735765],
      [-86.581532, 40.910925],
      [-86.468509, 40.909889],
      [-86.169012, 40.909836],
      [-86.165024, 40.562649]]]},
   'id': '18017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18019',
    'STATE': '18',
    'COUNTY': '019',
    'NAME': 'Clark',
    'LSAD': 'County',
    'CENSUSAREA': 372.855},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.638044, 38.38027],
      [-85.638777, 38.361443],
      [-85.653641, 38.327108],
      [-85.675017, 38.301317],
      [-85.683561, 38.295469],
      [-85.744862, 38.26717],
      [-85.750962, 38.26787],
      [-85.761062, 38.27257],
      [-85.766563, 38.27767],
      [-85.765963, 38.280469],
      [-85.773363, 38.286169],
      [-85.780963, 38.288469],
      [-85.791563, 38.288569],
      [-85.791575, 38.288566],
      [-85.760844, 38.350218],
      [-85.807704, 38.404443],
      [-85.99462, 38.418345],
      [-85.993317, 38.48854],
      [-85.884776, 38.503469],
      [-85.847893, 38.561269],
      [-85.793584, 38.604814],
      [-85.56998, 38.606155],
      [-85.427467, 38.586735],
      [-85.415821, 38.563558],
      [-85.4156, 38.546341],
      [-85.417322, 38.540763],
      [-85.423077, 38.531581],
      [-85.432928, 38.524072],
      [-85.433136, 38.523914],
      [-85.462518, 38.512602],
      [-85.607629, 38.439295],
      [-85.620521, 38.423105],
      [-85.632937, 38.395666],
      [-85.638041, 38.380338],
      [-85.638044, 38.38027]]]},
   'id': '18019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18021',
    'STATE': '18',
    'COUNTY': '021',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 357.542},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.240737, 39.171773],
      [-87.240379, 39.259064],
      [-87.238964, 39.52062],
      [-87.199012, 39.607137],
      [-87.013062, 39.604787],
      [-87.014533, 39.473572],
      [-86.939981, 39.473345],
      [-86.942473, 39.342043],
      [-87.053646, 39.342621],
      [-87.054578, 39.168086],
      [-87.068341, 39.167965],
      [-87.240737, 39.171773]]]},
   'id': '18021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18023',
    'STATE': '18',
    'COUNTY': '023',
    'NAME': 'Clinton',
    'LSAD': 'County',
    'CENSUSAREA': 405.07},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.242743, 40.215834],
      [-86.242365, 40.180778],
      [-86.39885, 40.17719],
      [-86.695804, 40.178657],
      [-86.695637, 40.214367],
      [-86.694665, 40.432156],
      [-86.375762, 40.431851],
      [-86.242992, 40.373661],
      [-86.242743, 40.215834]]]},
   'id': '18023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18025',
    'STATE': '18',
    'COUNTY': '025',
    'NAME': 'Crawford',
    'LSAD': 'County',
    'CENSUSAREA': 305.643},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.323453, 38.139032],
      [-86.326788, 38.134604],
      [-86.332567, 38.130131],
      [-86.398661, 38.106238],
      [-86.426508, 38.081784],
      [-86.460425, 38.206825],
      [-86.571677, 38.207531],
      [-86.570136, 38.266328],
      [-86.679511, 38.263086],
      [-86.681424, 38.394767],
      [-86.308868, 38.394069],
      [-86.308674, 38.422875],
      [-86.255045, 38.422685],
      [-86.314292, 38.14261],
      [-86.323453, 38.139032]]]},
   'id': '18025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18027',
    'STATE': '18',
    'COUNTY': '027',
    'NAME': 'Daviess',
    'LSAD': 'County',
    'CENSUSAREA': 429.487},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.242097, 38.54493],
      [-87.279333, 38.693314],
      [-87.241463, 38.817476],
      [-87.192243, 38.814688],
      [-87.098771, 38.903974],
      [-87.031263, 38.902516],
      [-86.904252, 38.904204],
      [-86.922943, 38.817238],
      [-86.924186, 38.505358],
      [-87.072369, 38.5147],
      [-87.242097, 38.54493]]]},
   'id': '18027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18029',
    'STATE': '18',
    'COUNTY': '029',
    'NAME': 'Dearborn',
    'LSAD': 'County',
    'CENSUSAREA': 305.034},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.819826, 39.156504],
      [-84.819985, 39.149081],
      [-84.820157, 39.10548],
      [-84.831197, 39.10192],
      [-84.888873, 39.066376],
      [-84.897364, 39.057378],
      [-84.897171, 39.052407],
      [-84.889065, 39.04082],
      [-84.878614, 39.030296],
      [-85.132508, 38.948055],
      [-85.065574, 39.307232],
      [-84.928655, 39.305934],
      [-84.819451, 39.305153],
      [-84.819451, 39.305152],
      [-84.819622, 39.27159],
      [-84.819633, 39.261855],
      [-84.819859, 39.251018],
      [-84.819801, 39.247806],
      [-84.819813, 39.244334],
      [-84.819802, 39.157613],
      [-84.819826, 39.156504]]]},
   'id': '18029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18031',
    'STATE': '18',
    'COUNTY': '031',
    'NAME': 'Decatur',
    'LSAD': 'County',
    'CENSUSAREA': 372.568},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.686783, 39.130859],
      [-85.687294, 39.185605],
      [-85.687161, 39.189026],
      [-85.687295, 39.190076],
      [-85.684515, 39.350049],
      [-85.63063, 39.350205],
      [-85.629327, 39.45275],
      [-85.297575, 39.453275],
      [-85.29654, 39.268291],
      [-85.43791, 39.197132],
      [-85.440054, 39.195617],
      [-85.56632, 39.132761],
      [-85.686783, 39.130859]]]},
   'id': '18031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18033',
    'STATE': '18',
    'COUNTY': '033',
    'NAME': 'DeKalb',
    'LSAD': 'County',
    'CENSUSAREA': 362.824},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.803956, 41.426044],
      [-84.804015, 41.411655],
      [-84.804046, 41.408361],
      [-84.804133, 41.408292],
      [-84.803926, 41.367959],
      [-84.803582, 41.271273],
      [-84.806471, 41.270904],
      [-85.192094, 41.264209],
      [-85.194084, 41.526437],
      [-84.804729, 41.530135],
      [-84.804729, 41.530092],
      [-84.804551, 41.500364],
      [-84.804457, 41.488224],
      [-84.803919, 41.435531],
      [-84.803956, 41.426128],
      [-84.803956, 41.426044]]]},
   'id': '18033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18035',
    'STATE': '18',
    'COUNTY': '035',
    'NAME': 'Delaware',
    'LSAD': 'County',
    'CENSUSAREA': 392.124},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.44433, 40.37914],
      [-85.219901, 40.379034],
      [-85.220028, 40.375043],
      [-85.218758, 40.306706],
      [-85.214386, 40.076889],
      [-85.216033, 40.076828],
      [-85.576197, 40.077143],
      [-85.578589, 40.379524],
      [-85.552303, 40.378666],
      [-85.44433, 40.37914]]]},
   'id': '18035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18037',
    'STATE': '18',
    'COUNTY': '037',
    'NAME': 'Dubois',
    'LSAD': 'County',
    'CENSUSAREA': 427.269},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.679511, 38.263086],
      [-86.792152, 38.2491],
      [-86.791497, 38.20513],
      [-87.01749, 38.20358],
      [-87.073141, 38.203821],
      [-87.073067, 38.232596],
      [-87.072369, 38.5147],
      [-86.924186, 38.505358],
      [-86.682359, 38.526378],
      [-86.681424, 38.394767],
      [-86.679511, 38.263086]]]},
   'id': '18037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18039',
    'STATE': '18',
    'COUNTY': '039',
    'NAME': 'Elkhart',
    'LSAD': 'County',
    'CENSUSAREA': 463.17},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.791335, 41.759051],
      [-85.775039, 41.759147],
      [-85.750469, 41.75909],
      [-85.749992, 41.759091],
      [-85.724534, 41.759085],
      [-85.65975, 41.759101],
      [-85.654747, 41.523347],
      [-85.654274, 41.515695],
      [-85.653507, 41.436856],
      [-86.05923, 41.435812],
      [-86.059237, 41.442753],
      [-86.059052, 41.445236],
      [-86.059451, 41.479154],
      [-86.060652, 41.6084],
      [-86.060516, 41.608959],
      [-86.062572, 41.760283],
      [-86.003683, 41.760007],
      [-85.991302, 41.759949],
      [-85.97498, 41.759849],
      [-85.974901, 41.759849],
      [-85.888825, 41.759422],
      [-85.874997, 41.759341],
      [-85.872041, 41.759365],
      [-85.791363, 41.759051],
      [-85.791335, 41.759051]]]},
   'id': '18039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18041',
    'STATE': '18',
    'COUNTY': '041',
    'NAME': 'Fayette',
    'LSAD': 'County',
    'CENSUSAREA': 215.014},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.036087, 39.526213],
      [-85.29811, 39.525476],
      [-85.301584, 39.787579],
      [-85.221118, 39.788449],
      [-85.185089, 39.715515],
      [-85.034575, 39.714764],
      [-85.036087, 39.526213]]]},
   'id': '18041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18043',
    'STATE': '18',
    'COUNTY': '043',
    'NAME': 'Floyd',
    'LSAD': 'County',
    'CENSUSAREA': 147.935},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.816164, 38.282969],
      [-85.823764, 38.280569],
      [-85.829364, 38.276769],
      [-85.897664, 38.184269],
      [-85.89955, 38.180343],
      [-86.032559, 38.33066],
      [-86.032817, 38.417898],
      [-86.014446, 38.418683],
      [-86.014139, 38.419079],
      [-85.99462, 38.418345],
      [-85.807704, 38.404443],
      [-85.760844, 38.350218],
      [-85.791575, 38.288566],
      [-85.816164, 38.282969]]]},
   'id': '18043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18045',
    'STATE': '18',
    'COUNTY': '045',
    'NAME': 'Fountain',
    'LSAD': 'County',
    'CENSUSAREA': 395.656},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.091957, 40.171253],
      [-87.090022, 39.953571],
      [-87.091006, 39.953009],
      [-87.125902, 39.953149],
      [-87.126051, 39.952985],
      [-87.178717, 39.953301],
      [-87.179415, 39.953033],
      [-87.190124, 39.953069],
      [-87.190288, 39.953379],
      [-87.204129, 39.953279],
      [-87.420221, 39.952452],
      [-87.406667, 40.127508],
      [-87.438755, 40.165694],
      [-87.339273, 40.223173],
      [-87.311889, 40.250036],
      [-87.294191, 40.257966],
      [-87.244898, 40.309252],
      [-87.092148, 40.366612],
      [-87.092563, 40.214806],
      [-87.091957, 40.171253]]]},
   'id': '18045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18047',
    'STATE': '18',
    'COUNTY': '047',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 384.43},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.815555, 39.511052],
      [-84.815555, 39.510952],
      [-84.815754, 39.477358],
      [-84.815754, 39.477352],
      [-84.817453, 39.391753],
      [-84.819352, 39.309454],
      [-84.819451, 39.305153],
      [-84.928655, 39.305934],
      [-85.065574, 39.307232],
      [-85.217883, 39.308474],
      [-85.29654, 39.268291],
      [-85.297575, 39.453275],
      [-85.298623, 39.520258],
      [-85.29811, 39.525476],
      [-85.036087, 39.526213],
      [-84.815355, 39.52195],
      [-84.815555, 39.511052]]]},
   'id': '18047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18049',
    'STATE': '18',
    'COUNTY': '049',
    'NAME': 'Fulton',
    'LSAD': 'County',
    'CENSUSAREA': 368.388},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.945561, 41.042876],
      [-85.9454, 41.000149],
      [-85.946436, 40.999195],
      [-86.168459, 40.996097],
      [-86.169012, 40.909836],
      [-86.468509, 40.909889],
      [-86.467046, 41.171442],
      [-86.077551, 41.172868],
      [-86.075939, 41.084878],
      [-85.945561, 41.042876]]]},
   'id': '18049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18051',
    'STATE': '18',
    'COUNTY': '051',
    'NAME': 'Gibson',
    'LSAD': 'County',
    'CENSUSAREA': 487.486},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.462892, 38.533519],
      [-87.407583, 38.375501],
      [-87.31596, 38.375293],
      [-87.316893, 38.246077],
      [-87.31703, 38.201753],
      [-87.466744, 38.201286],
      [-87.467284, 38.165403],
      [-87.688374, 38.168419],
      [-87.799169, 38.22858],
      [-87.955344, 38.230008],
      [-87.951715, 38.239632],
      [-87.923958, 38.258409],
      [-87.863032, 38.280172],
      [-87.750028, 38.403027],
      [-87.740001, 38.415698],
      [-87.599317, 38.450721],
      [-87.462892, 38.533519]]]},
   'id': '18051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18053',
    'STATE': '18',
    'COUNTY': '053',
    'NAME': 'Grant',
    'LSAD': 'County',
    'CENSUSAREA': 414.074},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.863641, 40.565525],
      [-85.864791, 40.651693],
      [-85.857147, 40.651364],
      [-85.638587, 40.653129],
      [-85.448825, 40.653607],
      [-85.448993, 40.651271],
      [-85.447014, 40.566929],
      [-85.44433, 40.37914],
      [-85.552303, 40.378666],
      [-85.578589, 40.379524],
      [-85.587859, 40.379757],
      [-85.862296, 40.378367],
      [-85.862117, 40.406889],
      [-85.863641, 40.565525]]]},
   'id': '18053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18055',
    'STATE': '18',
    'COUNTY': '055',
    'NAME': 'Greene',
    'LSAD': 'County',
    'CENSUSAREA': 542.495},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.241027, 38.907874],
      [-87.240737, 39.171773],
      [-87.068341, 39.167965],
      [-87.054578, 39.168086],
      [-86.683002, 39.165746],
      [-86.682277, 38.992404],
      [-86.682853, 38.904697],
      [-86.904252, 38.904204],
      [-87.031263, 38.902516],
      [-87.098771, 38.903974],
      [-87.241027, 38.907874]]]},
   'id': '18055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18057',
    'STATE': '18',
    'COUNTY': '057',
    'NAME': 'Hamilton',
    'LSAD': 'County',
    'CENSUSAREA': 394.267},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.172237, 39.926895],
      [-86.239739, 39.926055],
      [-86.242365, 40.180778],
      [-86.242743, 40.215834],
      [-85.861903, 40.218936],
      [-85.862489, 39.943618],
      [-85.862395, 39.928943],
      [-85.937587, 39.927137],
      [-86.172237, 39.926895]]]},
   'id': '18057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18059',
    'STATE': '18',
    'COUNTY': '059',
    'NAME': 'Hancock',
    'LSAD': 'County',
    'CENSUSAREA': 306.016},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.938077, 39.887183],
      [-85.938084, 39.923196],
      [-85.937587, 39.927137],
      [-85.862395, 39.928943],
      [-85.862489, 39.943618],
      [-85.576192, 39.945756],
      [-85.596916, 39.786519],
      [-85.633491, 39.786177],
      [-85.633228, 39.698462],
      [-85.951721, 39.697136],
      [-85.951699, 39.726419],
      [-85.938077, 39.887183]]]},
   'id': '18059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18061',
    'STATE': '18',
    'COUNTY': '061',
    'NAME': 'Harrison',
    'LSAD': 'County',
    'CENSUSAREA': 484.516},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.89955, 38.180343],
      [-85.908764, 38.161169],
      [-85.909464, 38.14007],
      [-85.905164, 38.11107],
      [-85.904564, 38.10027],
      [-85.906163, 38.08617],
      [-85.911607, 38.06689],
      [-85.922395, 38.028679],
      [-85.930235, 38.018311],
      [-85.941403, 38.009831],
      [-85.947952, 38.007083],
      [-85.951467, 38.005608],
      [-85.998609, 37.997775],
      [-86.029509, 37.99264],
      [-86.172186, 38.00992],
      [-86.178983, 38.011308],
      [-86.220371, 38.027922],
      [-86.266891, 38.057125],
      [-86.273584, 38.067443],
      [-86.27872, 38.089303],
      [-86.278034, 38.102426],
      [-86.271223, 38.130112],
      [-86.283964, 38.143185],
      [-86.309727, 38.144393],
      [-86.314292, 38.14261],
      [-86.255045, 38.422685],
      [-86.032817, 38.417898],
      [-86.032559, 38.33066],
      [-85.89955, 38.180343]]]},
   'id': '18061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18063',
    'STATE': '18',
    'COUNTY': '063',
    'NAME': 'Hendricks',
    'LSAD': 'County',
    'CENSUSAREA': 406.911},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.326576, 39.682896],
      [-86.326341, 39.632177],
      [-86.465605, 39.600769],
      [-86.65665, 39.601395],
      [-86.687406, 39.630437],
      [-86.695127, 39.864845],
      [-86.695071, 39.92277],
      [-86.326293, 39.924029],
      [-86.326576, 39.682896]]]},
   'id': '18063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18065',
    'STATE': '18',
    'COUNTY': '065',
    'NAME': 'Henry',
    'LSAD': 'County',
    'CENSUSAREA': 391.876},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.576192, 39.945756],
      [-85.576197, 40.077143],
      [-85.216033, 40.076828],
      [-85.214386, 40.076889],
      [-85.213496, 40.00438],
      [-85.201473, 40.004521],
      [-85.221118, 39.788449],
      [-85.301584, 39.787579],
      [-85.596916, 39.786519],
      [-85.576192, 39.945756]]]},
   'id': '18065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18067',
    'STATE': '18',
    'COUNTY': '067',
    'NAME': 'Howard',
    'LSAD': 'County',
    'CENSUSAREA': 293.057},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.184044, 40.562459],
      [-86.165024, 40.562649],
      [-86.127424, 40.563098],
      [-85.863641, 40.565525],
      [-85.862117, 40.406889],
      [-86.242812, 40.402914],
      [-86.242992, 40.373661],
      [-86.375762, 40.431851],
      [-86.374417, 40.561361],
      [-86.184044, 40.562459]]]},
   'id': '18067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18069',
    'STATE': '18',
    'COUNTY': '069',
    'NAME': 'Huntington',
    'LSAD': 'County',
    'CENSUSAREA': 382.651},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.643841, 41.002305],
      [-85.335643, 41.00525],
      [-85.335374, 41.002047],
      [-85.33603, 40.917082],
      [-85.334667, 40.654413],
      [-85.448825, 40.653607],
      [-85.638587, 40.653129],
      [-85.643841, 41.002305]]]},
   'id': '18069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18071',
    'STATE': '18',
    'COUNTY': '071',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 509.312},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.888334, 38.734443],
      [-86.091705, 38.783399],
      [-86.275281, 38.763795],
      [-86.280389, 38.991028],
      [-86.317474, 38.99087],
      [-86.31738, 39.00005],
      [-86.317799, 39.002733],
      [-86.318133, 39.04881],
      [-86.080272, 39.05027],
      [-85.860573, 39.04091],
      [-85.798804, 39.068536],
      [-85.795357, 38.807508],
      [-85.888334, 38.734443]]]},
   'id': '18071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18073',
    'STATE': '18',
    'COUNTY': '073',
    'NAME': 'Jasper',
    'LSAD': 'County',
    'CENSUSAREA': 559.625},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.218862, 41.242027],
      [-87.131653, 41.286155],
      [-86.968125, 41.219658],
      [-86.930079, 41.236798],
      [-86.929646, 41.229711],
      [-86.93017, 41.172318],
      [-86.930314, 41.170899],
      [-86.930759, 40.912418],
      [-86.986438, 40.837921],
      [-87.099793, 40.837607],
      [-87.09839, 40.736541],
      [-87.2673, 40.736582],
      [-87.275882, 41.218595],
      [-87.226372, 41.235507],
      [-87.218862, 41.242027]]]},
   'id': '18073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18075',
    'STATE': '18',
    'COUNTY': '075',
    'NAME': 'Jay',
    'LSAD': 'County',
    'CENSUSAREA': 383.905},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.804119, 40.352757],
      [-84.803917, 40.310115],
      [-84.803918, 40.310094],
      [-85.218758, 40.306706],
      [-85.220028, 40.375043],
      [-85.219901, 40.379034],
      [-85.206831, 40.379182],
      [-85.201146, 40.567242],
      [-85.068479, 40.56824],
      [-84.802265, 40.572212],
      [-84.802483, 40.528046],
      [-84.803068, 40.465388],
      [-84.804119, 40.352844],
      [-84.804119, 40.352757]]]},
   'id': '18075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18077',
    'STATE': '18',
    'COUNTY': '077',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 360.631},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.439351, 38.610388],
      [-85.427467, 38.586735],
      [-85.56998, 38.606155],
      [-85.57093, 38.678706],
      [-85.683338, 38.736731],
      [-85.683839, 38.815406],
      [-85.444897, 38.912998],
      [-85.203166, 38.913803],
      [-85.201498, 38.691575],
      [-85.213257, 38.695446],
      [-85.226062, 38.705456],
      [-85.246505, 38.731821],
      [-85.258846, 38.737754],
      [-85.275454, 38.741172],
      [-85.289226, 38.74241],
      [-85.333285, 38.74048],
      [-85.410925, 38.73708],
      [-85.422021, 38.734834],
      [-85.434065, 38.729455],
      [-85.452114, 38.709348],
      [-85.456978, 38.689135],
      [-85.439351, 38.610388]]]},
   'id': '18077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18079',
    'STATE': '18',
    'COUNTY': '079',
    'NAME': 'Jennings',
    'LSAD': 'County',
    'CENSUSAREA': 376.583},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.683839, 38.815406],
      [-85.795357, 38.807508],
      [-85.798804, 39.068536],
      [-85.799834, 39.128897],
      [-85.686783, 39.130859],
      [-85.56632, 39.132761],
      [-85.440054, 39.195617],
      [-85.444897, 38.912998],
      [-85.683839, 38.815406]]]},
   'id': '18079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18081',
    'STATE': '18',
    'COUNTY': '081',
    'NAME': 'Johnson',
    'LSAD': 'County',
    'CENSUSAREA': 320.427},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.952523, 39.60915],
      [-85.9508, 39.49522],
      [-85.95122, 39.436053],
      [-85.952545, 39.435921],
      [-85.95322, 39.38352],
      [-85.952005, 39.347373],
      [-86.081531, 39.344446],
      [-86.085601, 39.344189],
      [-86.251684, 39.341672],
      [-86.25131, 39.430595],
      [-86.249885, 39.633645],
      [-86.242924, 39.633744],
      [-86.044705, 39.637219],
      [-85.95208, 39.638345],
      [-85.952523, 39.60915]]]},
   'id': '18081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18083',
    'STATE': '18',
    'COUNTY': '083',
    'NAME': 'Knox',
    'LSAD': 'County',
    'CENSUSAREA': 516.031},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.528194, 38.851691],
      [-87.532064, 38.852503],
      [-87.537248, 38.853592],
      [-87.550515, 38.85956],
      [-87.553384, 38.863344],
      [-87.540804, 38.896385],
      [-87.528108, 38.908027],
      [-87.241027, 38.907874],
      [-87.098771, 38.903974],
      [-87.192243, 38.814688],
      [-87.241463, 38.817476],
      [-87.279333, 38.693314],
      [-87.242097, 38.54493],
      [-87.462892, 38.533519],
      [-87.599317, 38.450721],
      [-87.740001, 38.415698],
      [-87.656144, 38.521668],
      [-87.669232, 38.541742],
      [-87.670071, 38.545237],
      [-87.651529, 38.568166],
      [-87.627345, 38.607237],
      [-87.62012, 38.639489],
      [-87.60018, 38.662462],
      [-87.593678, 38.667402],
      [-87.579397, 38.672475],
      [-87.540052, 38.679143],
      [-87.531231, 38.684036],
      [-87.519609, 38.697198],
      [-87.498515, 38.758983],
      [-87.495211, 38.78306],
      [-87.525893, 38.848795],
      [-87.528194, 38.851691]]]},
   'id': '18083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18085',
    'STATE': '18',
    'COUNTY': '085',
    'NAME': 'Kosciusko',
    'LSAD': 'County',
    'CENSUSAREA': 531.381},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.651928, 41.294776],
      [-85.686574, 41.178376],
      [-85.684181, 41.046716],
      [-85.927265, 41.042574],
      [-85.945561, 41.042876],
      [-86.075939, 41.084878],
      [-86.077551, 41.172868],
      [-86.054047, 41.173147],
      [-86.05923, 41.435812],
      [-85.653507, 41.436856],
      [-85.651928, 41.294776]]]},
   'id': '18085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18087',
    'STATE': '18',
    'COUNTY': '087',
    'NAME': 'LaGrange',
    'LSAD': 'County',
    'CENSUSAREA': 379.624},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.65975, 41.759101],
      [-85.650738, 41.759103],
      [-85.647683, 41.759125],
      [-85.632714, 41.759164],
      [-85.624987, 41.759093],
      [-85.622608, 41.759049],
      [-85.608312, 41.759193],
      [-85.607548, 41.759079],
      [-85.518251, 41.759513],
      [-85.515959, 41.759352],
      [-85.432471, 41.759684],
      [-85.427553, 41.759706],
      [-85.379133, 41.759875],
      [-85.350174, 41.759908],
      [-85.330623, 41.759982],
      [-85.318129, 41.759983],
      [-85.30814, 41.760097],
      [-85.298365, 41.760028],
      [-85.292178, 41.759963],
      [-85.292099, 41.759962],
      [-85.273713, 41.75977],
      [-85.272951, 41.759911],
      [-85.272216, 41.759999],
      [-85.232835, 41.759839],
      [-85.196774, 41.759735],
      [-85.194084, 41.526437],
      [-85.654747, 41.523347],
      [-85.65975, 41.759101]]]},
   'id': '18087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18089',
    'STATE': '18',
    'COUNTY': '089',
    'NAME': 'Lake',
    'LSAD': 'County',
    'CENSUSAREA': 498.961},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.526768, 41.298177],
      [-87.525623, 41.453619],
      [-87.525671, 41.470115],
      [-87.525669, 41.470283],
      [-87.524641, 41.563335],
      [-87.524642, 41.622535],
      [-87.524742, 41.632435],
      [-87.524642, 41.634935],
      [-87.524844, 41.691635],
      [-87.524944, 41.702635],
      [-87.524044, 41.708335],
      [-87.520544, 41.709935],
      [-87.515243, 41.704235],
      [-87.511043, 41.696535],
      [-87.505343, 41.691535],
      [-87.470742, 41.672835],
      [-87.463142, 41.675535],
      [-87.453041, 41.673035],
      [-87.446113, 41.66934],
      [-87.441987, 41.671905],
      [-87.43853, 41.670679],
      [-87.437191, 41.669006],
      [-87.434849, 41.666887],
      [-87.432953, 41.665102],
      [-87.432396, 41.66053],
      [-87.438941, 41.654335],
      [-87.42984, 41.646035],
      [-87.42344, 41.642835],
      [-87.394539, 41.637235],
      [-87.365439, 41.629536],
      [-87.324338, 41.623036],
      [-87.287637, 41.622236],
      [-87.278437, 41.619736],
      [-87.261536, 41.620336],
      [-87.222644, 41.624161],
      [-87.218862, 41.242027],
      [-87.226372, 41.235507],
      [-87.275882, 41.218595],
      [-87.414421, 41.162248],
      [-87.52657, 41.166097],
      [-87.526768, 41.298052],
      [-87.526768, 41.298177]]]},
   'id': '18089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18091',
    'STATE': '18',
    'COUNTY': '091',
    'NAME': 'LaPorte',
    'LSAD': 'County',
    'CENSUSAREA': 598.299},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.824828, 41.76024],
      [-86.823628, 41.76024],
      [-86.804427, 41.76024],
      [-86.801578, 41.76024],
      [-86.800707, 41.76024],
      [-86.800611, 41.760251],
      [-86.748096, 41.759967],
      [-86.746521, 41.759982],
      [-86.641186, 41.759633],
      [-86.640044, 41.759671],
      [-86.524223, 41.759456],
      [-86.526682, 41.65044],
      [-86.486433, 41.570545],
      [-86.524711, 41.432886],
      [-86.70063, 41.401982],
      [-86.783473, 41.285465],
      [-86.930079, 41.236798],
      [-86.930056, 41.449692],
      [-86.929364, 41.463209],
      [-86.932747, 41.71104],
      [-86.90913, 41.726938],
      [-86.875429, 41.737939],
      [-86.824828, 41.76024]]]},
   'id': '18091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18093',
    'STATE': '18',
    'COUNTY': '093',
    'NAME': 'Lawrence',
    'LSAD': 'County',
    'CENSUSAREA': 449.168},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.573548, 38.992147],
      [-86.317474, 38.99087],
      [-86.280389, 38.991028],
      [-86.275281, 38.763795],
      [-86.308701, 38.688101],
      [-86.683102, 38.686561],
      [-86.682853, 38.904697],
      [-86.682277, 38.992404],
      [-86.573548, 38.992147]]]},
   'id': '18093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18095',
    'STATE': '18',
    'COUNTY': '095',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 451.915},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.576192, 39.945756],
      [-85.862489, 39.943618],
      [-85.861903, 40.218936],
      [-85.86116, 40.22531],
      [-85.862296, 40.378367],
      [-85.587859, 40.379757],
      [-85.578589, 40.379524],
      [-85.576197, 40.077143],
      [-85.576192, 39.945756]]]},
   'id': '18095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18097',
    'STATE': '18',
    'COUNTY': '097',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 396.298},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.937587, 39.927137],
      [-85.938084, 39.923196],
      [-85.938077, 39.887183],
      [-85.951699, 39.726419],
      [-85.951721, 39.697136],
      [-85.95208, 39.638345],
      [-86.044705, 39.637219],
      [-86.242924, 39.633744],
      [-86.249885, 39.633645],
      [-86.268501, 39.633047],
      [-86.269239, 39.633267],
      [-86.326341, 39.632177],
      [-86.326576, 39.682896],
      [-86.326293, 39.924029],
      [-86.263305, 39.924889],
      [-86.24109, 39.926092],
      [-86.239739, 39.926055],
      [-86.172237, 39.926895],
      [-85.937587, 39.927137]]]},
   'id': '18097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18099',
    'STATE': '18',
    'COUNTY': '099',
    'NAME': 'Marshall',
    'LSAD': 'County',
    'CENSUSAREA': 443.629},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.05923, 41.435812],
      [-86.054047, 41.173147],
      [-86.077551, 41.172868],
      [-86.467046, 41.171442],
      [-86.466603, 41.432968],
      [-86.467108, 41.476459],
      [-86.059451, 41.479154],
      [-86.059052, 41.445236],
      [-86.059237, 41.442753],
      [-86.05923, 41.435812]]]},
   'id': '18099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18101',
    'STATE': '18',
    'COUNTY': '101',
    'NAME': 'Martin',
    'LSAD': 'County',
    'CENSUSAREA': 335.737},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.682359, 38.526378],
      [-86.924186, 38.505358],
      [-86.922943, 38.817238],
      [-86.904252, 38.904204],
      [-86.682853, 38.904697],
      [-86.683102, 38.686561],
      [-86.682359, 38.526378]]]},
   'id': '18101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18103',
    'STATE': '18',
    'COUNTY': '103',
    'NAME': 'Miami',
    'LSAD': 'County',
    'CENSUSAREA': 373.842},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.864791, 40.651693],
      [-85.863641, 40.565525],
      [-86.127424, 40.563098],
      [-86.165024, 40.562649],
      [-86.169012, 40.909836],
      [-86.168459, 40.996097],
      [-85.946436, 40.999195],
      [-85.939525, 40.650991],
      [-85.864791, 40.651693]]]},
   'id': '18103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18105',
    'STATE': '18',
    'COUNTY': '105',
    'NAME': 'Monroe',
    'LSAD': 'County',
    'CENSUSAREA': 394.509},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.573548, 38.992147],
      [-86.682277, 38.992404],
      [-86.683002, 39.165746],
      [-86.68561, 39.336043],
      [-86.630818, 39.346948],
      [-86.630844, 39.340755],
      [-86.57428, 39.339681],
      [-86.381395, 39.339752],
      [-86.370066, 39.048375],
      [-86.318133, 39.04881],
      [-86.317799, 39.002733],
      [-86.31738, 39.00005],
      [-86.317474, 38.99087],
      [-86.573548, 38.992147]]]},
   'id': '18105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18107',
    'STATE': '18',
    'COUNTY': '107',
    'NAME': 'Montgomery',
    'LSAD': 'County',
    'CENSUSAREA': 504.613},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.091006, 39.953009],
      [-87.090022, 39.953571],
      [-87.091957, 40.171253],
      [-87.092563, 40.214806],
      [-86.695637, 40.214367],
      [-86.695804, 40.178657],
      [-86.695071, 39.92277],
      [-86.695127, 39.864845],
      [-87.009477, 39.866705],
      [-87.091542, 39.867265],
      [-87.091006, 39.953009]]]},
   'id': '18107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18109',
    'STATE': '18',
    'COUNTY': '109',
    'NAME': 'Morgan',
    'LSAD': 'County',
    'CENSUSAREA': 403.969},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.249885, 39.633645],
      [-86.25131, 39.430595],
      [-86.251684, 39.341672],
      [-86.381395, 39.339752],
      [-86.57428, 39.339681],
      [-86.630844, 39.340755],
      [-86.630818, 39.346948],
      [-86.632206, 39.470214],
      [-86.68571, 39.470063],
      [-86.65665, 39.601395],
      [-86.465605, 39.600769],
      [-86.326341, 39.632177],
      [-86.269239, 39.633267],
      [-86.268501, 39.633047],
      [-86.249885, 39.633645]]]},
   'id': '18109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18111',
    'STATE': '18',
    'COUNTY': '111',
    'NAME': 'Newton',
    'LSAD': 'County',
    'CENSUSAREA': 401.759},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.275882, 41.218595],
      [-87.2673, 40.736582],
      [-87.526129, 40.736885],
      [-87.526129, 40.73695],
      [-87.525783, 40.854357],
      [-87.526113, 40.879703],
      [-87.525962, 40.880618],
      [-87.526437, 40.894209],
      [-87.526084, 40.911914],
      [-87.526305, 41.010346],
      [-87.526307, 41.010355],
      [-87.526346, 41.010583],
      [-87.52652, 41.024837],
      [-87.526711, 41.121485],
      [-87.5267, 41.139658],
      [-87.526696, 41.149222],
      [-87.526693, 41.153958],
      [-87.526719, 41.159448],
      [-87.52666, 41.16009],
      [-87.526567, 41.163865],
      [-87.52657, 41.166097],
      [-87.414421, 41.162248],
      [-87.275882, 41.218595]]]},
   'id': '18111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18113',
    'STATE': '18',
    'COUNTY': '113',
    'NAME': 'Noble',
    'LSAD': 'County',
    'CENSUSAREA': 410.843},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.653507, 41.436856],
      [-85.654274, 41.515695],
      [-85.654747, 41.523347],
      [-85.194084, 41.526437],
      [-85.192094, 41.264209],
      [-85.307781, 41.264158],
      [-85.53718, 41.266157],
      [-85.651928, 41.294776],
      [-85.653507, 41.436856]]]},
   'id': '18113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18115',
    'STATE': '18',
    'COUNTY': '115',
    'NAME': 'Ohio',
    'LSAD': 'County',
    'CENSUSAREA': 86.14},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.849445, 39.000923],
      [-84.813182, 38.930583],
      [-84.870749, 38.900905],
      [-85.140312, 38.903194],
      [-85.135832, 38.929578],
      [-85.132508, 38.948055],
      [-84.878614, 39.030296],
      [-84.849445, 39.000923]]]},
   'id': '18115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18117',
    'STATE': '18',
    'COUNTY': '117',
    'NAME': 'Orange',
    'LSAD': 'County',
    'CENSUSAREA': 398.387},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.308674, 38.422875],
      [-86.308868, 38.394069],
      [-86.681424, 38.394767],
      [-86.682359, 38.526378],
      [-86.683102, 38.686561],
      [-86.308701, 38.688101],
      [-86.307894, 38.672977],
      [-86.308674, 38.422875]]]},
   'id': '18117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18119',
    'STATE': '18',
    'COUNTY': '119',
    'NAME': 'Owen',
    'LSAD': 'County',
    'CENSUSAREA': 385.288},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.683002, 39.165746],
      [-87.054578, 39.168086],
      [-87.053646, 39.342621],
      [-86.942473, 39.342043],
      [-86.939981, 39.473345],
      [-86.68571, 39.470063],
      [-86.632206, 39.470214],
      [-86.630818, 39.346948],
      [-86.68561, 39.336043],
      [-86.683002, 39.165746]]]},
   'id': '18119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18121',
    'STATE': '18',
    'COUNTY': '121',
    'NAME': 'Parke',
    'LSAD': 'County',
    'CENSUSAREA': 444.663},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.420221, 39.952452],
      [-87.204129, 39.953279],
      [-87.190288, 39.953379],
      [-87.190124, 39.953069],
      [-87.179415, 39.953033],
      [-87.178717, 39.953301],
      [-87.126051, 39.952985],
      [-87.125902, 39.953149],
      [-87.091006, 39.953009],
      [-87.091542, 39.867265],
      [-87.009477, 39.866705],
      [-87.013062, 39.604787],
      [-87.199012, 39.607137],
      [-87.382418, 39.607937],
      [-87.395625, 39.65295],
      [-87.353863, 39.862077],
      [-87.420221, 39.952452]]]},
   'id': '18121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18123',
    'STATE': '18',
    'COUNTY': '123',
    'NAME': 'Perry',
    'LSAD': 'County',
    'CENSUSAREA': 381.727},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.655296, 37.842508],
      [-86.660293, 37.865057],
      [-86.709164, 37.89764],
      [-86.718462, 37.893123],
      [-86.72351, 37.892831],
      [-86.73146, 37.89434],
      [-86.740877, 37.902568],
      [-86.75099, 37.912893],
      [-86.770179, 37.940264],
      [-86.787695, 37.971449],
      [-86.794985, 37.988982],
      [-86.814776, 37.998638],
      [-86.772367, 37.998165],
      [-86.791497, 38.20513],
      [-86.792152, 38.2491],
      [-86.679511, 38.263086],
      [-86.570136, 38.266328],
      [-86.571677, 38.207531],
      [-86.460425, 38.206825],
      [-86.426508, 38.081784],
      [-86.430091, 38.078638],
      [-86.432789, 38.067171],
      [-86.438236, 38.060426],
      [-86.452192, 38.05049],
      [-86.466876, 38.046597],
      [-86.490853, 38.045796],
      [-86.490858, 38.045796],
      [-86.51176, 38.044448],
      [-86.517289, 38.042634],
      [-86.521825, 38.038327],
      [-86.524969, 38.027879],
      [-86.525174, 37.968228],
      [-86.604624, 37.858272],
      [-86.634271, 37.843845],
      [-86.648028, 37.841425],
      [-86.655285, 37.842506],
      [-86.655296, 37.842508]]]},
   'id': '18123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18125',
    'STATE': '18',
    'COUNTY': '125',
    'NAME': 'Pike',
    'LSAD': 'County',
    'CENSUSAREA': 334.238},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.316893, 38.246077],
      [-87.31596, 38.375293],
      [-87.407583, 38.375501],
      [-87.462892, 38.533519],
      [-87.242097, 38.54493],
      [-87.072369, 38.5147],
      [-87.073067, 38.232596],
      [-87.316893, 38.246077]]]},
   'id': '18125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18127',
    'STATE': '18',
    'COUNTY': '127',
    'NAME': 'Porter',
    'LSAD': 'County',
    'CENSUSAREA': 418.153},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.932747, 41.71104],
      [-86.929364, 41.463209],
      [-86.930056, 41.449692],
      [-86.930079, 41.236798],
      [-86.968125, 41.219658],
      [-87.131653, 41.286155],
      [-87.218862, 41.242027],
      [-87.222644, 41.624161],
      [-87.22066, 41.624356],
      [-87.187651, 41.629653],
      [-87.160625, 41.637266],
      [-87.160784, 41.645385],
      [-87.125835, 41.650302],
      [-87.120322, 41.645701],
      [-87.066033, 41.661845],
      [-87.027888, 41.674661],
      [-87.00964, 41.68152],
      [-86.93483, 41.709638],
      [-86.932747, 41.71104]]]},
   'id': '18127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18129',
    'STATE': '18',
    'COUNTY': '129',
    'NAME': 'Posey',
    'LSAD': 'County',
    'CENSUSAREA': 409.571},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.700421, 37.900858],
      [-87.76226, 37.890906],
      [-87.783643, 37.877759],
      [-87.7909, 37.875714],
      [-87.830578, 37.876516],
      [-87.841193, 37.882325],
      [-87.857243, 37.900649],
      [-87.865558, 37.915056],
      [-87.87254, 37.920999],
      [-87.883321, 37.926238],
      [-87.898062, 37.927514],
      [-87.904789, 37.924892],
      [-87.927424, 37.902038],
      [-87.936784, 37.892587],
      [-87.940069, 37.88767],
      [-87.940839, 37.883338],
      [-87.940005, 37.875044],
      [-87.936228, 37.867937],
      [-87.927303, 37.858709],
      [-87.914892, 37.849618],
      [-87.910276, 37.843416],
      [-87.907773, 37.837611],
      [-87.903804, 37.817762],
      [-87.90681, 37.807624],
      [-87.943756, 37.776843],
      [-87.970869, 37.783456],
      [-87.976389, 37.788004],
      [-88.004706, 37.800145],
      [-88.017314, 37.801911],
      [-88.02803, 37.799224],
      [-88.027789, 37.828298],
      [-88.049453, 37.845187],
      [-88.071449, 37.895813],
      [-88.055373, 37.891238],
      [-88.021117, 37.888057],
      [-88.017073, 37.889222],
      [-88.013451, 37.893951],
      [-88.012574, 37.977062],
      [-88.041532, 38.037345],
      [-88.042132, 38.046345],
      [-88.013118, 38.103527],
      [-87.974272, 38.121981],
      [-87.942176, 38.131759],
      [-87.92783, 38.141545],
      [-87.911034, 38.162194],
      [-87.910792, 38.167666],
      [-87.915666, 38.173322],
      [-87.928856, 38.176771],
      [-87.940694, 38.181261],
      [-87.951307, 38.193099],
      [-87.959062, 38.203712],
      [-87.961103, 38.214733],
      [-87.955344, 38.230008],
      [-87.799169, 38.22858],
      [-87.688374, 38.168419],
      [-87.700421, 37.900858]]]},
   'id': '18129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18131',
    'STATE': '18',
    'COUNTY': '131',
    'NAME': 'Pulaski',
    'LSAD': 'County',
    'CENSUSAREA': 433.649},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.77585, 40.91246],
      [-86.930759, 40.912418],
      [-86.930314, 41.170899],
      [-86.93017, 41.172318],
      [-86.467046, 41.171442],
      [-86.468509, 40.909889],
      [-86.581532, 40.910925],
      [-86.77585, 40.91246]]]},
   'id': '18131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18133',
    'STATE': '18',
    'COUNTY': '133',
    'NAME': 'Putnam',
    'LSAD': 'County',
    'CENSUSAREA': 480.528},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.013062, 39.604787],
      [-87.009477, 39.866705],
      [-86.695127, 39.864845],
      [-86.687406, 39.630437],
      [-86.65665, 39.601395],
      [-86.68571, 39.470063],
      [-86.939981, 39.473345],
      [-87.014533, 39.473572],
      [-87.013062, 39.604787]]]},
   'id': '18133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18135',
    'STATE': '18',
    'COUNTY': '135',
    'NAME': 'Randolph',
    'LSAD': 'County',
    'CENSUSAREA': 452.379},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.803918, 40.310094],
      [-84.804098, 40.302498],
      [-84.805627, 40.223659],
      [-84.806175, 40.197995],
      [-84.80634, 40.192327],
      [-84.806347, 40.192252],
      [-84.806766, 40.180128],
      [-84.808291, 40.129027],
      [-84.808305, 40.127018],
      [-84.808706, 40.107216],
      [-84.809737, 40.048929],
      [-84.810099, 40.034214],
      [-84.81067, 40.005074],
      [-85.201473, 40.004521],
      [-85.213496, 40.00438],
      [-85.214386, 40.076889],
      [-85.218758, 40.306706],
      [-84.803918, 40.310094]]]},
   'id': '18135'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18137',
    'STATE': '18',
    'COUNTY': '137',
    'NAME': 'Ripley',
    'LSAD': 'County',
    'CENSUSAREA': 446.426},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.29654, 39.268291],
      [-85.217883, 39.308474],
      [-85.065574, 39.307232],
      [-85.132508, 38.948055],
      [-85.135832, 38.929578],
      [-85.202849, 38.928523],
      [-85.203166, 38.913803],
      [-85.444897, 38.912998],
      [-85.440054, 39.195617],
      [-85.43791, 39.197132],
      [-85.29654, 39.268291]]]},
   'id': '18137'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18139',
    'STATE': '18',
    'COUNTY': '139',
    'NAME': 'Rush',
    'LSAD': 'County',
    'CENSUSAREA': 408.124},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.29811, 39.525476],
      [-85.298623, 39.520258],
      [-85.297575, 39.453275],
      [-85.629327, 39.45275],
      [-85.632525, 39.697504],
      [-85.633228, 39.698462],
      [-85.633491, 39.786177],
      [-85.596916, 39.786519],
      [-85.301584, 39.787579],
      [-85.29811, 39.525476]]]},
   'id': '18139'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18141',
    'STATE': '18',
    'COUNTY': '141',
    'NAME': 'St. Joseph',
    'LSAD': 'County',
    'CENSUSAREA': 457.85},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.524223, 41.759456],
      [-86.519318, 41.759447],
      [-86.501773, 41.759553],
      [-86.265496, 41.760207],
      [-86.226097, 41.760016],
      [-86.22607, 41.760016],
      [-86.21759, 41.760016],
      [-86.127844, 41.760592],
      [-86.12546, 41.76056],
      [-86.12506, 41.760576],
      [-86.062572, 41.760283],
      [-86.060516, 41.608959],
      [-86.060652, 41.6084],
      [-86.059451, 41.479154],
      [-86.467108, 41.476459],
      [-86.466603, 41.432968],
      [-86.488895, 41.43302],
      [-86.490753, 41.43291],
      [-86.519007, 41.432872],
      [-86.519751, 41.432792],
      [-86.524711, 41.432886],
      [-86.486433, 41.570545],
      [-86.526682, 41.65044],
      [-86.524223, 41.759456]]]},
   'id': '18141'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18143',
    'STATE': '18',
    'COUNTY': '143',
    'NAME': 'Scott',
    'LSAD': 'County',
    'CENSUSAREA': 190.397},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.56998, 38.606155],
      [-85.793584, 38.604814],
      [-85.847893, 38.561269],
      [-85.885643, 38.575412],
      [-85.888334, 38.734443],
      [-85.795357, 38.807508],
      [-85.683839, 38.815406],
      [-85.683338, 38.736731],
      [-85.57093, 38.678706],
      [-85.56998, 38.606155]]]},
   'id': '18143'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18145',
    'STATE': '18',
    'COUNTY': '145',
    'NAME': 'Shelby',
    'LSAD': 'County',
    'CENSUSAREA': 411.147},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.684515, 39.350049],
      [-85.854064, 39.349498],
      [-85.85746, 39.349312],
      [-85.952005, 39.347373],
      [-85.95322, 39.38352],
      [-85.952545, 39.435921],
      [-85.95122, 39.436053],
      [-85.9508, 39.49522],
      [-85.952523, 39.60915],
      [-85.95208, 39.638345],
      [-85.951721, 39.697136],
      [-85.633228, 39.698462],
      [-85.632525, 39.697504],
      [-85.629327, 39.45275],
      [-85.63063, 39.350205],
      [-85.684515, 39.350049]]]},
   'id': '18145'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18147',
    'STATE': '18',
    'COUNTY': '147',
    'NAME': 'Spencer',
    'LSAD': 'County',
    'CENSUSAREA': 396.744},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.814776, 37.998638],
      [-86.815267, 37.998877],
      [-86.823491, 37.998939],
      [-86.85595, 37.987292],
      [-86.884961, 37.964373],
      [-86.902413, 37.946161],
      [-86.919329, 37.936664],
      [-86.97883, 37.930214],
      [-86.978957, 37.9302],
      [-87.010315, 37.919668],
      [-87.033444, 37.906593],
      [-87.042249, 37.898291],
      [-87.046237, 37.889866],
      [-87.043407, 37.87994],
      [-87.043854, 37.870796],
      [-87.057836, 37.827457],
      [-87.067836, 37.806065],
      [-87.077404, 37.796209],
      [-87.090636, 37.787808],
      [-87.111133, 37.782512],
      [-87.119229, 37.782848],
      [-87.128749, 37.785728],
      [-87.132621, 37.791008],
      [-87.20224, 37.843791],
      [-87.26293, 37.872846],
      [-87.269561, 37.877155],
      [-87.268003, 37.924766],
      [-87.072332, 38.11828],
      [-87.017453, 38.118301],
      [-87.01749, 38.20358],
      [-86.791497, 38.20513],
      [-86.772367, 37.998165],
      [-86.814776, 37.998638]]]},
   'id': '18147'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18149',
    'STATE': '18',
    'COUNTY': '149',
    'NAME': 'Starke',
    'LSAD': 'County',
    'CENSUSAREA': 309.134},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.93017, 41.172318],
      [-86.929646, 41.229711],
      [-86.930079, 41.236798],
      [-86.783473, 41.285465],
      [-86.70063, 41.401982],
      [-86.524711, 41.432886],
      [-86.519751, 41.432792],
      [-86.519007, 41.432872],
      [-86.490753, 41.43291],
      [-86.488895, 41.43302],
      [-86.466603, 41.432968],
      [-86.467046, 41.171442],
      [-86.93017, 41.172318]]]},
   'id': '18149'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18151',
    'STATE': '18',
    'COUNTY': '151',
    'NAME': 'Steuben',
    'LSAD': 'County',
    'CENSUSAREA': 308.939},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.82513, 41.759991],
      [-84.818873, 41.760059],
      [-84.806134, 41.743115],
      [-84.806074, 41.737603],
      [-84.806065, 41.732909],
      [-84.806042, 41.720544],
      [-84.806018, 41.707485],
      [-84.806082, 41.696089],
      [-84.80621, 41.67455],
      [-84.805673, 41.632342],
      [-84.805696, 41.631398],
      [-84.805812, 41.61304],
      [-84.804729, 41.530231],
      [-84.804729, 41.530135],
      [-85.194084, 41.526437],
      [-85.196774, 41.759735],
      [-85.196637, 41.759735],
      [-85.17223, 41.759618],
      [-85.123102, 41.759743],
      [-85.117267, 41.7597],
      [-85.039436, 41.759985],
      [-85.037817, 41.759801],
      [-84.972803, 41.759366],
      [-84.971551, 41.759527],
      [-84.961562, 41.759552],
      [-84.96086, 41.759438],
      [-84.932484, 41.759691],
      [-84.825196, 41.75999],
      [-84.82513, 41.759991]]]},
   'id': '18151'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18153',
    'STATE': '18',
    'COUNTY': '153',
    'NAME': 'Sullivan',
    'LSAD': 'County',
    'CENSUSAREA': 447.142},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.52791, 38.908209],
      [-87.518826, 38.923205],
      [-87.512187, 38.954417],
      [-87.572588, 39.057286],
      [-87.614881, 39.102655],
      [-87.658746, 39.135997],
      [-87.651719, 39.150602],
      [-87.642174, 39.157097],
      [-87.628727, 39.157427],
      [-87.605173, 39.185897],
      [-87.587507, 39.249282],
      [-87.593486, 39.247452],
      [-87.604076, 39.259459],
      [-87.240379, 39.259064],
      [-87.240737, 39.171773],
      [-87.241027, 38.907874],
      [-87.528108, 38.908027],
      [-87.52791, 38.908209]]]},
   'id': '18153'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18155',
    'STATE': '18',
    'COUNTY': '155',
    'NAME': 'Switzerland',
    'LSAD': 'County',
    'CENSUSAREA': 220.633},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.813182, 38.930583],
      [-84.789521, 38.884687],
      [-84.785111, 38.879988],
      [-84.785799, 38.869496],
      [-84.791078, 38.855859],
      [-84.81335, 38.79833],
      [-84.844412, 38.787078],
      [-84.944296, 38.775184],
      [-84.973432, 38.778847],
      [-84.984627, 38.779072],
      [-84.995939, 38.776756],
      [-85.024205, 38.763311],
      [-85.100963, 38.7268],
      [-85.106902, 38.720789],
      [-85.13868, 38.699168],
      [-85.156158, 38.692251],
      [-85.172528, 38.688082],
      [-85.189362, 38.687579],
      [-85.201498, 38.691575],
      [-85.203166, 38.913803],
      [-85.202849, 38.928523],
      [-85.135832, 38.929578],
      [-85.140312, 38.903194],
      [-84.870749, 38.900905],
      [-84.813182, 38.930583]]]},
   'id': '18155'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18157',
    'STATE': '18',
    'COUNTY': '157',
    'NAME': 'Tippecanoe',
    'LSAD': 'County',
    'CENSUSAREA': 499.806},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.093676, 40.475745],
      [-87.095357, 40.562895],
      [-86.771293, 40.562082],
      [-86.695353, 40.561874],
      [-86.694665, 40.432156],
      [-86.695637, 40.214367],
      [-87.092563, 40.214806],
      [-87.092148, 40.366612],
      [-87.09278, 40.475075],
      [-87.093676, 40.475745]]]},
   'id': '18157'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18159',
    'STATE': '18',
    'COUNTY': '159',
    'NAME': 'Tipton',
    'LSAD': 'County',
    'CENSUSAREA': 260.541},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.862117, 40.406889],
      [-85.862296, 40.378367],
      [-85.86116, 40.22531],
      [-85.861903, 40.218936],
      [-86.242743, 40.215834],
      [-86.242992, 40.373661],
      [-86.242812, 40.402914],
      [-85.862117, 40.406889]]]},
   'id': '18159'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18161',
    'STATE': '18',
    'COUNTY': '161',
    'NAME': 'Union',
    'LSAD': 'County',
    'CENSUSAREA': 161.224},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.814129, 39.72662],
      [-84.814129, 39.726556],
      [-84.81453, 39.680429],
      [-84.814619, 39.669174],
      [-84.814705, 39.628854],
      [-84.815156, 39.568351],
      [-84.815036, 39.567695],
      [-84.814955, 39.567251],
      [-84.814955, 39.566251],
      [-84.815155, 39.548051],
      [-84.815355, 39.521951],
      [-84.815355, 39.52195],
      [-85.036087, 39.526213],
      [-85.034575, 39.714764],
      [-84.814129, 39.72662]]]},
   'id': '18161'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18163',
    'STATE': '18',
    'COUNTY': '163',
    'NAME': 'Vanderburgh',
    'LSAD': 'County',
    'CENSUSAREA': 233.475},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.451185, 37.941034],
      [-87.511499, 37.906426],
      [-87.550333, 37.92489],
      [-87.559342, 37.931146],
      [-87.57203, 37.947466],
      [-87.574287, 37.954842],
      [-87.573415, 37.962642],
      [-87.574715, 37.967742],
      [-87.581115, 37.973442],
      [-87.585916, 37.975442],
      [-87.592916, 37.975842],
      [-87.601416, 37.972542],
      [-87.62896, 37.926714],
      [-87.626256, 37.916138],
      [-87.620272, 37.906922],
      [-87.597118, 37.892394],
      [-87.591582, 37.887194],
      [-87.588426, 37.868791],
      [-87.588729, 37.860984],
      [-87.591504, 37.856642],
      [-87.606599, 37.838669],
      [-87.615399, 37.831974],
      [-87.645858, 37.825899],
      [-87.670889, 37.828429],
      [-87.679188, 37.836321],
      [-87.6819, 37.84641],
      [-87.681633, 37.855917],
      [-87.662865, 37.885578],
      [-87.666481, 37.895786],
      [-87.67573, 37.90193],
      [-87.684018, 37.903498],
      [-87.700421, 37.900858],
      [-87.688374, 38.168419],
      [-87.467284, 38.165403],
      [-87.451185, 37.941034]]]},
   'id': '18163'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18165',
    'STATE': '18',
    'COUNTY': '165',
    'NAME': 'Vermillion',
    'LSAD': 'County',
    'CENSUSAREA': 256.878},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.382418, 39.607937],
      [-87.532196, 39.607306],
      [-87.532365, 39.646126],
      [-87.532444, 39.646102],
      [-87.532703, 39.664868],
      [-87.533066, 39.781743],
      [-87.533058, 39.796243],
      [-87.533056, 39.803922],
      [-87.533142, 39.810947],
      [-87.533227, 39.883],
      [-87.533227, 39.883127],
      [-87.532776, 39.971077],
      [-87.53279, 39.97501],
      [-87.532683, 39.977691],
      [-87.532542, 39.987462],
      [-87.532331, 39.997776],
      [-87.532287, 40.000037],
      [-87.532308, 40.011492],
      [-87.532308, 40.011587],
      [-87.531561, 40.133005],
      [-87.531759, 40.144273],
      [-87.531439, 40.148027],
      [-87.531438, 40.148123],
      [-87.406667, 40.127508],
      [-87.420221, 39.952452],
      [-87.353863, 39.862077],
      [-87.395625, 39.65295],
      [-87.382418, 39.607937]]]},
   'id': '18165'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18167',
    'STATE': '18',
    'COUNTY': '167',
    'NAME': 'Vigo',
    'LSAD': 'County',
    'CENSUSAREA': 403.313},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.240379, 39.259064],
      [-87.604076, 39.259459],
      [-87.605543, 39.261122],
      [-87.61005, 39.282232],
      [-87.604043, 39.313526],
      [-87.589084, 39.333831],
      [-87.584852, 39.337329],
      [-87.544013, 39.352907],
      [-87.537271, 39.352089],
      [-87.531646, 39.347888],
      [-87.531355, 39.436656],
      [-87.531355, 39.437732],
      [-87.531489, 39.449474],
      [-87.531608, 39.466225],
      [-87.531624, 39.469378],
      [-87.531663, 39.47711],
      [-87.531663, 39.47712],
      [-87.531627, 39.491698],
      [-87.531692, 39.495516],
      [-87.531965, 39.526937],
      [-87.531939, 39.545853],
      [-87.532008, 39.564013],
      [-87.532196, 39.607306],
      [-87.382418, 39.607937],
      [-87.199012, 39.607137],
      [-87.238964, 39.52062],
      [-87.240379, 39.259064]]]},
   'id': '18167'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18169',
    'STATE': '18',
    'COUNTY': '169',
    'NAME': 'Wabash',
    'LSAD': 'County',
    'CENSUSAREA': 412.434},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.945561, 41.042876],
      [-85.927265, 41.042574],
      [-85.684181, 41.046716],
      [-85.683198, 41.001909],
      [-85.643841, 41.002305],
      [-85.638587, 40.653129],
      [-85.857147, 40.651364],
      [-85.864791, 40.651693],
      [-85.939525, 40.650991],
      [-85.946436, 40.999195],
      [-85.9454, 41.000149],
      [-85.945561, 41.042876]]]},
   'id': '18169'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18171',
    'STATE': '18',
    'COUNTY': '171',
    'NAME': 'Warren',
    'LSAD': 'County',
    'CENSUSAREA': 364.681},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.294191, 40.257966],
      [-87.311889, 40.250036],
      [-87.339273, 40.223173],
      [-87.438755, 40.165694],
      [-87.406667, 40.127508],
      [-87.531438, 40.148123],
      [-87.531133, 40.17003],
      [-87.530828, 40.191812],
      [-87.529992, 40.250036],
      [-87.530054, 40.250671],
      [-87.526809, 40.46217],
      [-87.526549, 40.475659],
      [-87.526511, 40.476879],
      [-87.093676, 40.475745],
      [-87.09278, 40.475075],
      [-87.092148, 40.366612],
      [-87.244898, 40.309252],
      [-87.294191, 40.257966]]]},
   'id': '18171'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18173',
    'STATE': '18',
    'COUNTY': '173',
    'NAME': 'Warrick',
    'LSAD': 'County',
    'CENSUSAREA': 384.815},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-87.269561, 37.877155],
      [-87.302324, 37.898445],
      [-87.380247, 37.935596],
      [-87.402632, 37.942267],
      [-87.418585, 37.944763],
      [-87.436859, 37.944192],
      [-87.450458, 37.941451],
      [-87.451185, 37.941034],
      [-87.467284, 38.165403],
      [-87.466744, 38.201286],
      [-87.31703, 38.201753],
      [-87.316893, 38.246077],
      [-87.073067, 38.232596],
      [-87.073141, 38.203821],
      [-87.01749, 38.20358],
      [-87.017453, 38.118301],
      [-87.072332, 38.11828],
      [-87.268003, 37.924766],
      [-87.269561, 37.877155]]]},
   'id': '18173'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18175',
    'STATE': '18',
    'COUNTY': '175',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 513.725},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.99462, 38.418345],
      [-86.014139, 38.419079],
      [-86.014446, 38.418683],
      [-86.032817, 38.417898],
      [-86.255045, 38.422685],
      [-86.308674, 38.422875],
      [-86.307894, 38.672977],
      [-86.308701, 38.688101],
      [-86.275281, 38.763795],
      [-86.091705, 38.783399],
      [-85.888334, 38.734443],
      [-85.885643, 38.575412],
      [-85.847893, 38.561269],
      [-85.884776, 38.503469],
      [-85.993317, 38.48854],
      [-85.99462, 38.418345]]]},
   'id': '18175'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18177',
    'STATE': '18',
    'COUNTY': '177',
    'NAME': 'Wayne',
    'LSAD': 'County',
    'CENSUSAREA': 401.74},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-84.814189, 39.785569],
      [-84.814129, 39.72662],
      [-85.034575, 39.714764],
      [-85.185089, 39.715515],
      [-85.221118, 39.788449],
      [-85.201473, 40.004521],
      [-84.81067, 40.005074],
      [-84.812193, 39.92734],
      [-84.812357, 39.921764],
      [-84.812411, 39.916916],
      [-84.812411, 39.916915],
      [-84.812698, 39.891585],
      [-84.812787, 39.89083],
      [-84.81305, 39.872958],
      [-84.813464, 39.853261],
      [-84.813549, 39.850773],
      [-84.813674, 39.843173],
      [-84.813703, 39.843059],
      [-84.813793, 39.826771],
      [-84.813852, 39.824621],
      [-84.814179, 39.814212],
      [-84.81412, 39.811398],
      [-84.814209, 39.799755],
      [-84.814179, 39.786853],
      [-84.814189, 39.785569]]]},
   'id': '18177'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18179',
    'STATE': '18',
    'COUNTY': '179',
    'NAME': 'Wells',
    'LSAD': 'County',
    'CENSUSAREA': 368.087},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.33603, 40.917082],
      [-85.167063, 40.916585],
      [-85.073861, 40.917823],
      [-85.068479, 40.56824],
      [-85.201146, 40.567242],
      [-85.447014, 40.566929],
      [-85.448993, 40.651271],
      [-85.448825, 40.653607],
      [-85.334667, 40.654413],
      [-85.33603, 40.917082]]]},
   'id': '18179'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18181',
    'STATE': '18',
    'COUNTY': '181',
    'NAME': 'White',
    'LSAD': 'County',
    'CENSUSAREA': 505.125},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.697099, 40.737102],
      [-86.747764, 40.73754],
      [-86.771293, 40.562082],
      [-87.095357, 40.562895],
      [-87.09682, 40.736491],
      [-87.09839, 40.736541],
      [-87.099793, 40.837607],
      [-86.986438, 40.837921],
      [-86.930759, 40.912418],
      [-86.77585, 40.91246],
      [-86.581532, 40.910925],
      [-86.581739, 40.735765],
      [-86.677986, 40.736752],
      [-86.678148, 40.736897],
      [-86.697099, 40.737102]]]},
   'id': '18181'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US18183',
    'STATE': '18',
    'COUNTY': '183',
    'NAME': 'Whitley',
    'LSAD': 'County',
    'CENSUSAREA': 335.569},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.651928, 41.294776],
      [-85.53718, 41.266157],
      [-85.307781, 41.264158],
      [-85.338552, 41.17912],
      [-85.335643, 41.00525],
      [-85.643841, 41.002305],
      [-85.683198, 41.001909],
      [-85.684181, 41.046716],
      [-85.686574, 41.178376],
      [-85.651928, 41.294776]]]},
   'id': '18183'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19001',
    'STATE': '19',
    'COUNTY': '001',
    'NAME': 'Adair',
    'LSAD': 'County',
    'CENSUSAREA': 569.271},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.241637, 41.157134],
      [-94.470603, 41.157566],
      [-94.700589, 41.158085],
      [-94.700629, 41.504148],
      [-94.241593, 41.503679],
      [-94.241637, 41.157134]]]},
   'id': '19001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19003',
    'STATE': '19',
    'COUNTY': '003',
    'NAME': 'Adams',
    'LSAD': 'County',
    'CENSUSAREA': 423.439},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.927587, 41.158508],
      [-94.704975, 41.157903],
      [-94.700589, 41.158085],
      [-94.470603, 41.157566],
      [-94.470779, 40.899502],
      [-94.928459, 40.900653],
      [-94.927587, 41.158508]]]},
   'id': '19003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19005',
    'STATE': '19',
    'COUNTY': '005',
    'NAME': 'Allamakee',
    'LSAD': 'County',
    'CENSUSAREA': 639.082},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.217706, 43.50055],
      [-91.20555, 43.422949],
      [-91.210233, 43.372064],
      [-91.107237, 43.313645],
      [-91.085652, 43.29187],
      [-91.057918, 43.255366],
      [-91.062562, 43.243165],
      [-91.1462, 43.152405],
      [-91.1562, 43.142945],
      [-91.175253, 43.134665],
      [-91.178251, 43.124982],
      [-91.177222, 43.080247],
      [-91.605307, 43.081653],
      [-91.610832, 43.50053],
      [-91.591073, 43.500536],
      [-91.551021, 43.500539],
      [-91.54122, 43.500515],
      [-91.533806, 43.50056],
      [-91.491042, 43.50069],
      [-91.465063, 43.500608],
      [-91.461403, 43.500642],
      [-91.445932, 43.500588],
      [-91.441786, 43.500438],
      [-91.37695, 43.500482],
      [-91.371608, 43.500945],
      [-91.369325, 43.500827],
      [-91.217706, 43.50055]]]},
   'id': '19005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19007',
    'STATE': '19',
    'COUNTY': '007',
    'NAME': 'Appanoose',
    'LSAD': 'County',
    'CENSUSAREA': 497.292},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.637898, 40.590853],
      [-92.639223, 40.590825],
      [-92.686693, 40.589809],
      [-92.689854, 40.589884],
      [-92.714598, 40.589564],
      [-92.742232, 40.589207],
      [-92.757407, 40.588908],
      [-92.828061, 40.588593],
      [-92.827992, 40.588515],
      [-92.835074, 40.588484],
      [-92.857391, 40.58836],
      [-92.863034, 40.588175],
      [-92.879178, 40.588341],
      [-92.889796, 40.588039],
      [-92.903544, 40.58786],
      [-92.941595, 40.587743],
      [-92.957747, 40.58743],
      [-93.085517, 40.584403],
      [-93.097296, 40.584014],
      [-93.097595, 40.898451],
      [-92.639091, 40.898886],
      [-92.637898, 40.590853]]]},
   'id': '19007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19009',
    'STATE': '19',
    'COUNTY': '009',
    'NAME': 'Audubon',
    'LSAD': 'County',
    'CENSUSAREA': 442.961},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.700629, 41.504148],
      [-95.04077, 41.50469],
      [-95.040748, 41.602152],
      [-95.09252, 41.602055],
      [-95.092861, 41.863374],
      [-94.744876, 41.862394],
      [-94.744204, 41.602185],
      [-94.700629, 41.504148]]]},
   'id': '19009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19011',
    'STATE': '19',
    'COUNTY': '011',
    'NAME': 'Benton',
    'LSAD': 'County',
    'CENSUSAREA': 716.265},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.831089, 42.299063],
      [-91.831379, 41.861851],
      [-92.298164, 41.862779],
      [-92.298792, 42.297527],
      [-92.064766, 42.297259],
      [-91.831089, 42.299063]]]},
   'id': '19011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19013',
    'STATE': '19',
    'COUNTY': '013',
    'NAME': 'Black Hawk',
    'LSAD': 'County',
    'CENSUSAREA': 565.769},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.064766, 42.297259],
      [-92.298792, 42.297527],
      [-92.53351, 42.297001],
      [-92.5543, 42.555854],
      [-92.554561, 42.55935],
      [-92.554492, 42.642314],
      [-92.081661, 42.642056],
      [-92.064766, 42.297259]]]},
   'id': '19013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19015',
    'STATE': '19',
    'COUNTY': '015',
    'NAME': 'Boone',
    'LSAD': 'County',
    'CENSUSAREA': 571.569},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.69839, 42.209339],
      [-93.698032, 41.86337],
      [-93.815527, 41.863419],
      [-94.164138, 41.863244],
      [-94.164704, 42.20992],
      [-93.931581, 42.210095],
      [-93.69839, 42.209339]]]},
   'id': '19015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19017',
    'STATE': '19',
    'COUNTY': '017',
    'NAME': 'Bremer',
    'LSAD': 'County',
    'CENSUSAREA': 435.477},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.554211, 42.907112],
      [-92.081568, 42.907013],
      [-92.081661, 42.642056],
      [-92.554492, 42.642314],
      [-92.554211, 42.907112]]]},
   'id': '19017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19019',
    'STATE': '19',
    'COUNTY': '019',
    'NAME': 'Buchanan',
    'LSAD': 'County',
    'CENSUSAREA': 571.02},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.596981, 42.296408],
      [-91.831089, 42.299063],
      [-92.064766, 42.297259],
      [-92.081661, 42.642056],
      [-91.607059, 42.643973],
      [-91.596981, 42.296408]]]},
   'id': '19019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19021',
    'STATE': '19',
    'COUNTY': '021',
    'NAME': 'Buena Vista',
    'LSAD': 'County',
    'CENSUSAREA': 574.915},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.91389, 42.9097],
      [-94.914485, 42.560309],
      [-95.38801, 42.561742],
      [-95.388182, 42.909897],
      [-94.91389, 42.9097]]]},
   'id': '19021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19023',
    'STATE': '19',
    'COUNTY': '023',
    'NAME': 'Butler',
    'LSAD': 'County',
    'CENSUSAREA': 580.131},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.025144, 42.907549],
      [-92.554211, 42.907112],
      [-92.554492, 42.642314],
      [-92.554561, 42.55935],
      [-92.5543, 42.555854],
      [-93.027, 42.55681],
      [-93.025144, 42.907549]]]},
   'id': '19023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19025',
    'STATE': '19',
    'COUNTY': '025',
    'NAME': 'Calhoun',
    'LSAD': 'County',
    'CENSUSAREA': 569.968},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.914485, 42.560309],
      [-94.443024, 42.558843],
      [-94.397671, 42.4733],
      [-94.397526, 42.209161],
      [-94.628806, 42.209396],
      [-94.858412, 42.209692],
      [-94.856702, 42.473967],
      [-94.914487, 42.47419],
      [-94.914485, 42.560309]]]},
   'id': '19025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19027',
    'STATE': '19',
    'COUNTY': '027',
    'NAME': 'Carroll',
    'LSAD': 'County',
    'CENSUSAREA': 569.437},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.858412, 42.209692],
      [-94.628806, 42.209396],
      [-94.628724, 41.862763],
      [-94.667977, 41.862682],
      [-94.671695, 41.862828],
      [-94.672368, 41.86289],
      [-94.673119, 41.86265],
      [-94.674259, 41.862657],
      [-94.67542, 41.862895],
      [-94.676942, 41.862994],
      [-94.744876, 41.862394],
      [-95.092861, 41.863374],
      [-95.090851, 42.210405],
      [-94.858412, 42.209692]]]},
   'id': '19027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19029',
    'STATE': '19',
    'COUNTY': '029',
    'NAME': 'Cass',
    'LSAD': 'County',
    'CENSUSAREA': 564.269},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.154722, 41.505211],
      [-95.04077, 41.50469],
      [-94.700629, 41.504148],
      [-94.700589, 41.158085],
      [-94.704975, 41.157903],
      [-94.927587, 41.158508],
      [-95.154115, 41.159145],
      [-95.155851, 41.159236],
      [-95.154722, 41.505211]]]},
   'id': '19029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19031',
    'STATE': '19',
    'COUNTY': '031',
    'NAME': 'Cedar',
    'LSAD': 'County',
    'CENSUSAREA': 579.436},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.366079, 41.860068],
      [-91.365789, 41.94741],
      [-90.898484, 41.946245],
      [-90.898373, 41.771392],
      [-90.899853, 41.597133],
      [-91.366448, 41.598373],
      [-91.366079, 41.860068]]]},
   'id': '19031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19033',
    'STATE': '19',
    'COUNTY': '033',
    'NAME': 'Cerro Gordo',
    'LSAD': 'County',
    'CENSUSAREA': 568.313},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.024143, 43.255538],
      [-93.024092, 43.212812],
      [-93.025144, 42.907549],
      [-93.498617, 42.908512],
      [-93.497635, 43.255468],
      [-93.024143, 43.255538]]]},
   'id': '19033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19035',
    'STATE': '19',
    'COUNTY': '035',
    'NAME': 'Cherokee',
    'LSAD': 'County',
    'CENSUSAREA': 576.906},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.859377, 42.909097],
      [-95.388182, 42.909897],
      [-95.38801, 42.561742],
      [-95.741611, 42.561285],
      [-95.750287, 42.561106],
      [-95.859949, 42.56062],
      [-95.859377, 42.909097]]]},
   'id': '19035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19037',
    'STATE': '19',
    'COUNTY': '037',
    'NAME': 'Chickasaw',
    'LSAD': 'County',
    'CENSUSAREA': 504.38},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.081568, 42.907013],
      [-92.554211, 42.907112],
      [-92.554381, 43.212813],
      [-92.080976, 43.212947],
      [-92.081146, 43.082794],
      [-92.081568, 42.907013]]]},
   'id': '19037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19039',
    'STATE': '19',
    'COUNTY': '039',
    'NAME': 'Clarke',
    'LSAD': 'County',
    'CENSUSAREA': 431.167},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.014189, 41.156762],
      [-93.898813, 41.15661],
      [-93.789196, 41.162035],
      [-93.557556, 41.161271],
      [-93.55654, 40.898295],
      [-94.014803, 40.897031],
      [-94.014189, 41.156762]]]},
   'id': '19039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19041',
    'STATE': '19',
    'COUNTY': '041',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 567.238},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.388078, 43.255221],
      [-94.913723, 43.255054],
      [-94.91389, 42.9097],
      [-95.388182, 42.909897],
      [-95.388078, 43.255221]]]},
   'id': '19041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19043',
    'STATE': '19',
    'COUNTY': '043',
    'NAME': 'Clayton',
    'LSAD': 'County',
    'CENSUSAREA': 778.539},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.163064, 42.986781],
      [-91.14556, 42.90798],
      [-91.143375, 42.90467],
      [-91.117411, 42.895837],
      [-91.100565, 42.883078],
      [-91.077643, 42.803798],
      [-91.069549, 42.769628],
      [-91.064896, 42.757272],
      [-91.053733, 42.738238],
      [-90.976314, 42.695996],
      [-90.949213, 42.685573],
      [-90.896961, 42.674407],
      [-90.897415, 42.645714],
      [-91.132766, 42.645844],
      [-91.607059, 42.643973],
      [-91.605307, 43.081653],
      [-91.177222, 43.080247],
      [-91.178087, 43.062044],
      [-91.175167, 43.041267],
      [-91.163064, 42.986781]]]},
   'id': '19043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19045',
    'STATE': '19',
    'COUNTY': '045',
    'NAME': 'Clinton',
    'LSAD': 'County',
    'CENSUSAREA': 694.915},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.152104, 41.928947],
      [-90.181973, 41.80707],
      [-90.187969, 41.803163],
      [-90.20844, 41.797176],
      [-90.222263, 41.793133],
      [-90.242747, 41.783767],
      [-90.278633, 41.767358],
      [-90.302782, 41.750031],
      [-90.309826, 41.743321],
      [-90.31522, 41.734264],
      [-90.317041, 41.729104],
      [-90.473617, 41.773465],
      [-90.898373, 41.771392],
      [-90.898484, 41.946245],
      [-90.898373, 42.033548],
      [-90.154221, 42.033073],
      [-90.150916, 42.02944],
      [-90.141167, 42.008931],
      [-90.140613, 41.995999],
      [-90.1516, 41.931002],
      [-90.152104, 41.928947]]]},
   'id': '19045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19047',
    'STATE': '19',
    'COUNTY': '047',
    'NAME': 'Crawford',
    'LSAD': 'County',
    'CENSUSAREA': 714.19},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.092861, 41.863374],
      [-95.557277, 41.863449],
      [-95.672771, 41.863147],
      [-95.670822, 42.211408],
      [-95.323497, 42.210932],
      [-95.090851, 42.210405],
      [-95.092861, 41.863374]]]},
   'id': '19047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19049',
    'STATE': '19',
    'COUNTY': '049',
    'NAME': 'Dallas',
    'LSAD': 'County',
    'CENSUSAREA': 588.447},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.28034, 41.862999],
      [-94.164138, 41.863244],
      [-93.815527, 41.863419],
      [-93.814282, 41.600448],
      [-93.790612, 41.511916],
      [-93.896807, 41.503098],
      [-94.241593, 41.503679],
      [-94.280057, 41.601312],
      [-94.28034, 41.862999]]]},
   'id': '19049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19051',
    'STATE': '19',
    'COUNTY': '051',
    'NAME': 'Davis',
    'LSAD': 'County',
    'CENSUSAREA': 502.188},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.17978, 40.600529],
      [-92.196162, 40.600069],
      [-92.201669, 40.59998],
      [-92.217603, 40.599832],
      [-92.236484, 40.599531],
      [-92.298754, 40.598469],
      [-92.331205, 40.597805],
      [-92.331445, 40.597714],
      [-92.350776, 40.597274],
      [-92.350807, 40.597273],
      [-92.379691, 40.596509],
      [-92.453745, 40.595288],
      [-92.461609, 40.595355],
      [-92.481692, 40.594941],
      [-92.482394, 40.594894],
      [-92.484588, 40.594924],
      [-92.580278, 40.592151],
      [-92.637898, 40.590853],
      [-92.639091, 40.898886],
      [-92.179072, 40.89972],
      [-92.17899, 40.898343],
      [-92.17978, 40.600529]]]},
   'id': '19051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19053',
    'STATE': '19',
    'COUNTY': '053',
    'NAME': 'Decatur',
    'LSAD': 'County',
    'CENSUSAREA': 531.881},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.556899, 40.580235],
      [-93.558938, 40.580189],
      [-93.560798, 40.580304],
      [-93.56524, 40.580143],
      [-93.56581, 40.580075],
      [-93.566189, 40.580117],
      [-93.597352, 40.579496],
      [-93.656211, 40.578352],
      [-93.659272, 40.57833],
      [-93.661913, 40.578354],
      [-93.668845, 40.578241],
      [-93.677099, 40.578127],
      [-93.690333, 40.577875],
      [-93.722443, 40.577641],
      [-93.728355, 40.577547],
      [-93.737259, 40.577542],
      [-93.742759, 40.577518],
      [-93.750223, 40.57772],
      [-93.770231, 40.577615],
      [-93.774344, 40.577584],
      [-93.815485, 40.577278],
      [-93.818725, 40.577086],
      [-93.84093, 40.576791],
      [-93.853656, 40.576606],
      [-93.898327, 40.576011],
      [-93.899317, 40.575942],
      [-93.900877, 40.575874],
      [-93.913961, 40.575672],
      [-93.935687, 40.57533],
      [-93.936317, 40.575284],
      [-93.937097, 40.575421],
      [-93.938627, 40.575284],
      [-93.939857, 40.575192],
      [-93.963863, 40.574754],
      [-93.976766, 40.574635],
      [-94.015492, 40.573914],
      [-94.014803, 40.897031],
      [-93.55654, 40.898295],
      [-93.556899, 40.580235]]]},
   'id': '19053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19055',
    'STATE': '19',
    'COUNTY': '055',
    'NAME': 'Delaware',
    'LSAD': 'County',
    'CENSUSAREA': 577.756},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.363263, 42.296445],
      [-91.596981, 42.296408],
      [-91.607059, 42.643973],
      [-91.132766, 42.645844],
      [-91.130079, 42.295761],
      [-91.363263, 42.296445]]]},
   'id': '19055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19057',
    'STATE': '19',
    'COUNTY': '057',
    'NAME': 'Des Moines',
    'LSAD': 'County',
    'CENSUSAREA': 416.123},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.37071, 41.074112],
      [-90.949383, 41.07271],
      [-90.948523, 41.070248],
      [-90.945549, 41.06173],
      [-90.942253, 41.034702],
      [-90.952233, 40.954047],
      [-90.962916, 40.924957],
      [-90.968995, 40.919127],
      [-90.9985, 40.90812],
      [-91.009536, 40.900565],
      [-91.092993, 40.821079],
      [-91.097553, 40.808433],
      [-91.097031, 40.802471],
      [-91.094728, 40.797833],
      [-91.11194, 40.697018],
      [-91.112258, 40.696218],
      [-91.182551, 40.7081],
      [-91.409324, 40.812682],
      [-91.372095, 40.812631],
      [-91.37071, 41.074112]]]},
   'id': '19057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19059',
    'STATE': '19',
    'COUNTY': '059',
    'NAME': 'Dickinson',
    'LSAD': 'County',
    'CENSUSAREA': 380.606},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.387787, 43.50024],
      [-95.375269, 43.500322],
      [-95.374737, 43.500314],
      [-95.250969, 43.500464],
      [-95.250762, 43.500406],
      [-95.214938, 43.500885],
      [-95.180423, 43.500774],
      [-95.167891, 43.500885],
      [-95.167294, 43.500771],
      [-95.122633, 43.500755],
      [-95.114874, 43.500667],
      [-95.054289, 43.50086],
      [-95.053504, 43.500769],
      [-95.034, 43.500811],
      [-95.014245, 43.500872],
      [-94.99446, 43.500523],
      [-94.974359, 43.500508],
      [-94.954477, 43.500467],
      [-94.934625, 43.50049],
      [-94.914955, 43.50045],
      [-94.914905, 43.50045],
      [-94.914634, 43.50045],
      [-94.914843, 43.499103],
      [-94.913723, 43.255054],
      [-95.388078, 43.255221],
      [-95.387787, 43.50024]]]},
   'id': '19059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19061',
    'STATE': '19',
    'COUNTY': '061',
    'NAME': 'Dubuque',
    'LSAD': 'County',
    'CENSUSAREA': 608.305},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.896961, 42.674407],
      [-90.84391, 42.663071],
      [-90.769495, 42.651443],
      [-90.720209, 42.640758],
      [-90.709204, 42.636078],
      [-90.702671, 42.630756],
      [-90.645627, 42.5441],
      [-90.636727, 42.518702],
      [-90.636927, 42.513202],
      [-90.640927, 42.508302],
      [-90.655927, 42.491703],
      [-90.656527, 42.489203],
      [-90.656327, 42.483603],
      [-90.654027, 42.478503],
      [-90.646727, 42.471904],
      [-90.624328, 42.458904],
      [-90.559451, 42.430695],
      [-90.477279, 42.383794],
      [-90.474834, 42.381473],
      [-90.665029, 42.382155],
      [-90.665551, 42.294699],
      [-90.89802, 42.295236],
      [-91.130079, 42.295761],
      [-91.132766, 42.645844],
      [-90.897415, 42.645714],
      [-90.896961, 42.674407]]]},
   'id': '19061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19063',
    'STATE': '19',
    'COUNTY': '063',
    'NAME': 'Emmet',
    'LSAD': 'County',
    'CENSUSAREA': 395.883},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.854555, 43.500614],
      [-94.615916, 43.500544],
      [-94.565665, 43.50033],
      [-94.560838, 43.500377],
      [-94.47042, 43.50034],
      [-94.447048, 43.500639],
      [-94.442848, 43.500583],
      [-94.443137, 43.255014],
      [-94.913723, 43.255054],
      [-94.914843, 43.499103],
      [-94.914634, 43.50045],
      [-94.914523, 43.50045],
      [-94.887291, 43.500502],
      [-94.874235, 43.500557],
      [-94.872725, 43.500564],
      [-94.860192, 43.500546],
      [-94.857867, 43.500615],
      [-94.854555, 43.500614]]]},
   'id': '19063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19065',
    'STATE': '19',
    'COUNTY': '065',
    'NAME': 'Fayette',
    'LSAD': 'County',
    'CENSUSAREA': 730.811},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.607059, 42.643973],
      [-92.081661, 42.642056],
      [-92.081568, 42.907013],
      [-92.081146, 43.082794],
      [-91.605307, 43.081653],
      [-91.607059, 42.643973]]]},
   'id': '19065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19067',
    'STATE': '19',
    'COUNTY': '067',
    'NAME': 'Floyd',
    'LSAD': 'County',
    'CENSUSAREA': 500.632},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.025144, 42.907549],
      [-93.024092, 43.212812],
      [-92.554381, 43.212813],
      [-92.554211, 42.907112],
      [-93.025144, 42.907549]]]},
   'id': '19067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19069',
    'STATE': '19',
    'COUNTY': '069',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 581.972},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.498617, 42.908512],
      [-93.025144, 42.907549],
      [-93.027, 42.55681],
      [-93.499485, 42.5577],
      [-93.498617, 42.908512]]]},
   'id': '19069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19071',
    'STATE': '19',
    'COUNTY': '071',
    'NAME': 'Fremont',
    'LSAD': 'County',
    'CENSUSAREA': 511.15},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.765645, 40.585208],
      [-95.753148, 40.59284],
      [-95.750053, 40.597052],
      [-95.748626, 40.603355],
      [-95.776251, 40.647463],
      [-95.786568, 40.657253],
      [-95.795489, 40.662384],
      [-95.822913, 40.66724],
      [-95.842801, 40.677496],
      [-95.883178, 40.717579],
      [-95.888907, 40.731855],
      [-95.88669, 40.742101],
      [-95.881529, 40.750611],
      [-95.872281, 40.758349],
      [-95.861695, 40.762871],
      [-95.854172, 40.784012],
      [-95.821193, 40.876682],
      [-95.823123, 40.900924],
      [-95.813465, 40.901693],
      [-95.384964, 40.90155],
      [-95.373923, 40.580501],
      [-95.415406, 40.581014],
      [-95.469319, 40.58154],
      [-95.525392, 40.58209],
      [-95.526682, 40.582136],
      [-95.533182, 40.582249],
      [-95.554959, 40.582629],
      [-95.574046, 40.582963],
      [-95.611069, 40.583495],
      [-95.64184, 40.584234],
      [-95.687442, 40.58438],
      [-95.6875, 40.584381],
      [-95.746443, 40.584935],
      [-95.765645, 40.585208]]]},
   'id': '19071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19073',
    'STATE': '19',
    'COUNTY': '073',
    'NAME': 'Greene',
    'LSAD': 'County',
    'CENSUSAREA': 569.574},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.397526, 42.209161],
      [-94.164704, 42.20992],
      [-94.164138, 41.863244],
      [-94.28034, 41.862999],
      [-94.628724, 41.862763],
      [-94.628806, 42.209396],
      [-94.397526, 42.209161]]]},
   'id': '19073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19075',
    'STATE': '19',
    'COUNTY': '075',
    'NAME': 'Grundy',
    'LSAD': 'County',
    'CENSUSAREA': 501.858},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.53351, 42.297001],
      [-92.76809, 42.29668],
      [-92.767463, 42.21014],
      [-93.001674, 42.209267],
      [-93.002902, 42.470638],
      [-93.027, 42.55681],
      [-92.5543, 42.555854],
      [-92.53351, 42.297001]]]},
   'id': '19075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19077',
    'STATE': '19',
    'COUNTY': '077',
    'NAME': 'Guthrie',
    'LSAD': 'County',
    'CENSUSAREA': 590.62},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.700629, 41.504148],
      [-94.744204, 41.602185],
      [-94.744876, 41.862394],
      [-94.676942, 41.862994],
      [-94.67542, 41.862895],
      [-94.674259, 41.862657],
      [-94.673119, 41.86265],
      [-94.672368, 41.86289],
      [-94.671695, 41.862828],
      [-94.667977, 41.862682],
      [-94.628724, 41.862763],
      [-94.28034, 41.862999],
      [-94.280057, 41.601312],
      [-94.241593, 41.503679],
      [-94.700629, 41.504148]]]},
   'id': '19077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19079',
    'STATE': '19',
    'COUNTY': '079',
    'NAME': 'Hamilton',
    'LSAD': 'County',
    'CENSUSAREA': 576.751},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.69839, 42.209339],
      [-93.931581, 42.210095],
      [-93.931684, 42.472011],
      [-93.971583, 42.558139],
      [-93.500212, 42.557836],
      [-93.499485, 42.5577],
      [-93.462635, 42.470802],
      [-93.463043, 42.209302],
      [-93.69839, 42.209339]]]},
   'id': '19079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19081',
    'STATE': '19',
    'COUNTY': '081',
    'NAME': 'Hancock',
    'LSAD': 'County',
    'CENSUSAREA': 571.005},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.971238, 42.907762],
      [-93.970415, 43.255358],
      [-93.497635, 43.255468],
      [-93.498617, 42.908512],
      [-93.971238, 42.907762]]]},
   'id': '19081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19083',
    'STATE': '19',
    'COUNTY': '083',
    'NAME': 'Hardin',
    'LSAD': 'County',
    'CENSUSAREA': 569.307},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.463043, 42.209302],
      [-93.462635, 42.470802],
      [-93.499485, 42.5577],
      [-93.027, 42.55681],
      [-93.002902, 42.470638],
      [-93.001674, 42.209267],
      [-93.231722, 42.208886],
      [-93.463043, 42.209302]]]},
   'id': '19083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19085',
    'STATE': '19',
    'COUNTY': '085',
    'NAME': 'Harrison',
    'LSAD': 'County',
    'CENSUSAREA': 696.848},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.981319, 41.506837],
      [-95.994784, 41.526242],
      [-96.030593, 41.527292],
      [-96.036603, 41.509047],
      [-96.040701, 41.507076],
      [-96.046707, 41.507085],
      [-96.055096, 41.509577],
      [-96.089714, 41.531778],
      [-96.09409, 41.539265],
      [-96.118105, 41.613495],
      [-96.116233, 41.621574],
      [-96.097728, 41.639633],
      [-96.095046, 41.647365],
      [-96.095415, 41.652736],
      [-96.099837, 41.66103],
      [-96.121726, 41.68274],
      [-96.096795, 41.698681],
      [-96.077088, 41.715403],
      [-96.064537, 41.793002],
      [-96.06577, 41.798174],
      [-96.071007, 41.804639],
      [-96.077646, 41.808804],
      [-96.086407, 41.81138],
      [-96.110907, 41.830818],
      [-96.139554, 41.86583],
      [-96.137698, 41.866307],
      [-95.672771, 41.863147],
      [-95.557277, 41.863449],
      [-95.558143, 41.602383],
      [-95.497793, 41.602333],
      [-95.497997, 41.506074],
      [-95.981319, 41.506837]]]},
   'id': '19085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19087',
    'STATE': '19',
    'COUNTY': '087',
    'NAME': 'Henry',
    'LSAD': 'County',
    'CENSUSAREA': 434.328},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.37071, 41.074112],
      [-91.372095, 40.812631],
      [-91.409324, 40.812682],
      [-91.718787, 40.813544],
      [-91.718268, 40.900805],
      [-91.715893, 41.162822],
      [-91.485717, 41.162405],
      [-91.370298, 41.161247],
      [-91.37071, 41.074112]]]},
   'id': '19087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19089',
    'STATE': '19',
    'COUNTY': '089',
    'NAME': 'Howard',
    'LSAD': 'County',
    'CENSUSAREA': 473.248},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.553128, 43.5003],
      [-92.464505, 43.500345],
      [-92.448948, 43.50042],
      [-92.408832, 43.500614],
      [-92.40613, 43.500476],
      [-92.388298, 43.500483],
      [-92.368908, 43.500454],
      [-92.279084, 43.500436],
      [-92.277425, 43.500466],
      [-92.198788, 43.500527],
      [-92.178863, 43.500713],
      [-92.103886, 43.500735],
      [-92.08997, 43.500684],
      [-92.079954, 43.500647],
      [-92.079802, 43.500647],
      [-92.080976, 43.212947],
      [-92.554381, 43.212813],
      [-92.553128, 43.5003]]]},
   'id': '19089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19091',
    'STATE': '19',
    'COUNTY': '091',
    'NAME': 'Humboldt',
    'LSAD': 'County',
    'CENSUSAREA': 434.352},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.443083, 42.645164],
      [-94.442954, 42.908073],
      [-93.971238, 42.907762],
      [-93.971714, 42.644707],
      [-94.443083, 42.645164]]]},
   'id': '19091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19093',
    'STATE': '19',
    'COUNTY': '093',
    'NAME': 'Ida',
    'LSAD': 'County',
    'CENSUSAREA': 431.508},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.323497, 42.210932],
      [-95.670822, 42.211408],
      [-95.669265, 42.474645],
      [-95.741821, 42.474865],
      [-95.741611, 42.561285],
      [-95.38801, 42.561742],
      [-95.387445, 42.474796],
      [-95.322357, 42.474737],
      [-95.323497, 42.210932]]]},
   'id': '19093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19095',
    'STATE': '19',
    'COUNTY': '095',
    'NAME': 'Iowa',
    'LSAD': 'County',
    'CENSUSAREA': 586.457},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.297494, 41.50979],
      [-92.298164, 41.862779],
      [-91.831379, 41.861851],
      [-91.829231, 41.511457],
      [-91.946043, 41.510749],
      [-92.297494, 41.50979]]]},
   'id': '19095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19097',
    'STATE': '19',
    'COUNTY': '097',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 636.039},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.898373, 42.033548],
      [-90.89802, 42.295236],
      [-90.665551, 42.294699],
      [-90.665029, 42.382155],
      [-90.474834, 42.381473],
      [-90.419027, 42.328505],
      [-90.416535, 42.325109],
      [-90.4162, 42.321314],
      [-90.424326, 42.293326],
      [-90.430735, 42.284211],
      [-90.430884, 42.27823],
      [-90.419326, 42.254467],
      [-90.391108, 42.225473],
      [-90.375129, 42.214811],
      [-90.356964, 42.205445],
      [-90.349162, 42.204277],
      [-90.316269, 42.1936],
      [-90.306531, 42.190439],
      [-90.234919, 42.165431],
      [-90.211328, 42.15401],
      [-90.167533, 42.122475],
      [-90.162225, 42.11488],
      [-90.161119, 42.104404],
      [-90.163405, 42.087613],
      [-90.168358, 42.075779],
      [-90.166495, 42.054543],
      [-90.164537, 42.045007],
      [-90.154221, 42.033073],
      [-90.898373, 42.033548]]]},
   'id': '19097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19099',
    'STATE': '19',
    'COUNTY': '099',
    'NAME': 'Jasper',
    'LSAD': 'County',
    'CENSUSAREA': 730.42},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.231858, 41.862711],
      [-92.765999, 41.862373],
      [-92.756508, 41.508794],
      [-92.871421, 41.508522],
      [-93.328614, 41.507824],
      [-93.348681, 41.600999],
      [-93.347933, 41.863104],
      [-93.231858, 41.862711]]]},
   'id': '19099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19101',
    'STATE': '19',
    'COUNTY': '101',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 435.51},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.945571, 41.163578],
      [-91.83906, 41.161515],
      [-91.715893, 41.162822],
      [-91.718268, 40.900805],
      [-92.179072, 40.89972],
      [-92.179974, 41.162662],
      [-91.945571, 41.163578]]]},
   'id': '19101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19103',
    'STATE': '19',
    'COUNTY': '103',
    'NAME': 'Johnson',
    'LSAD': 'County',
    'CENSUSAREA': 614.04},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.829231, 41.511457],
      [-91.831379, 41.861851],
      [-91.366079, 41.860068],
      [-91.366448, 41.598373],
      [-91.368521, 41.423178],
      [-91.483995, 41.423848],
      [-91.52248, 41.511035],
      [-91.829231, 41.511457]]]},
   'id': '19103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19105',
    'STATE': '19',
    'COUNTY': '105',
    'NAME': 'Jones',
    'LSAD': 'County',
    'CENSUSAREA': 575.621},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.365789, 41.94741],
      [-91.363263, 42.296445],
      [-91.130079, 42.295761],
      [-90.89802, 42.295236],
      [-90.898373, 42.033548],
      [-90.898484, 41.946245],
      [-91.365789, 41.94741]]]},
   'id': '19105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19107',
    'STATE': '19',
    'COUNTY': '107',
    'NAME': 'Keokuk',
    'LSAD': 'County',
    'CENSUSAREA': 579.179},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.411995, 41.509548],
      [-92.297494, 41.50979],
      [-91.946043, 41.510749],
      [-91.945571, 41.163578],
      [-92.179974, 41.162662],
      [-92.410233, 41.161942],
      [-92.411995, 41.509548]]]},
   'id': '19107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19109',
    'STATE': '19',
    'COUNTY': '109',
    'NAME': 'Kossuth',
    'LSAD': 'County',
    'CENSUSAREA': 972.72},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.442848, 43.500583],
      [-94.442835, 43.500583],
      [-94.390597, 43.500469],
      [-94.377466, 43.500379],
      [-94.247965, 43.500333],
      [-94.10988, 43.500283],
      [-94.108068, 43.5003],
      [-94.094339, 43.500302],
      [-94.092894, 43.500302],
      [-93.970762, 43.499605],
      [-93.970415, 43.255358],
      [-93.971238, 42.907762],
      [-94.442954, 42.908073],
      [-94.443136, 42.909498],
      [-94.443137, 43.255014],
      [-94.442848, 43.500583]]]},
   'id': '19109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19111',
    'STATE': '19',
    'COUNTY': '111',
    'NAME': 'Lee',
    'LSAD': 'County',
    'CENSUSAREA': 517.518},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.409324, 40.812682],
      [-91.182551, 40.7081],
      [-91.112258, 40.696218],
      [-91.122421, 40.670675],
      [-91.138055, 40.660893],
      [-91.185415, 40.638052],
      [-91.18698, 40.637297],
      [-91.197906, 40.636107],
      [-91.218437, 40.638437],
      [-91.253074, 40.637962],
      [-91.306524, 40.626231],
      [-91.339719, 40.613488],
      [-91.348733, 40.609695],
      [-91.359873, 40.601805],
      [-91.405241, 40.554641],
      [-91.406851, 40.547557],
      [-91.404125, 40.539127],
      [-91.384531, 40.530948],
      [-91.369059, 40.512532],
      [-91.364211, 40.500043],
      [-91.36391, 40.490122],
      [-91.372554, 40.4012],
      [-91.375746, 40.391879],
      [-91.38836, 40.384929],
      [-91.419422, 40.378264],
      [-91.484507, 40.3839],
      [-91.490977, 40.393484],
      [-91.524612, 40.410765],
      [-91.619486, 40.507134],
      [-91.622362, 40.514362],
      [-91.618028, 40.53403],
      [-91.620071, 40.540817],
      [-91.696359, 40.588148],
      [-91.716769, 40.59853],
      [-91.718787, 40.813544],
      [-91.409324, 40.812682]]]},
   'id': '19111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19113',
    'STATE': '19',
    'COUNTY': '113',
    'NAME': 'Linn',
    'LSAD': 'County',
    'CENSUSAREA': 716.88},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.365789, 41.94741],
      [-91.366079, 41.860068],
      [-91.831379, 41.861851],
      [-91.831089, 42.299063],
      [-91.596981, 42.296408],
      [-91.363263, 42.296445],
      [-91.365789, 41.94741]]]},
   'id': '19113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19115',
    'STATE': '19',
    'COUNTY': '115',
    'NAME': 'Louisa',
    'LSAD': 'County',
    'CENSUSAREA': 401.766},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.37071, 41.074112],
      [-91.370298, 41.161247],
      [-91.485717, 41.162405],
      [-91.483995, 41.423848],
      [-91.368521, 41.423178],
      [-91.369332, 41.336063],
      [-91.079657, 41.333727],
      [-91.114186, 41.250029],
      [-91.113648, 41.241401],
      [-91.049808, 41.178033],
      [-91.019036, 41.16491],
      [-91.005503, 41.165622],
      [-90.997906, 41.162564],
      [-90.989663, 41.155716],
      [-90.946627, 41.096632],
      [-90.949383, 41.072711],
      [-90.949383, 41.07271],
      [-91.37071, 41.074112]]]},
   'id': '19115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19117',
    'STATE': '19',
    'COUNTY': '117',
    'NAME': 'Lucas',
    'LSAD': 'County',
    'CENSUSAREA': 430.593},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.557556, 41.161271],
      [-93.327886, 41.160659],
      [-93.099217, 41.160867],
      [-93.097724, 40.899738],
      [-93.097595, 40.898451],
      [-93.55654, 40.898295],
      [-93.557556, 41.161271]]]},
   'id': '19117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19119',
    'STATE': '19',
    'COUNTY': '119',
    'NAME': 'Lyon',
    'LSAD': 'County',
    'CENSUSAREA': 587.65},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.572489, 43.249178],
      [-96.584124, 43.268101],
      [-96.586317, 43.274319],
      [-96.56911, 43.295535],
      [-96.551929, 43.292974],
      [-96.530392, 43.300034],
      [-96.525564, 43.312467],
      [-96.521264, 43.374978],
      [-96.521697, 43.386897],
      [-96.524044, 43.394762],
      [-96.529152, 43.397735],
      [-96.531159, 43.39561],
      [-96.53746, 43.395246],
      [-96.557586, 43.406792],
      [-96.594254, 43.434153],
      [-96.60286, 43.450907],
      [-96.600039, 43.45708],
      [-96.58407, 43.468856],
      [-96.587151, 43.484697],
      [-96.598928, 43.500457],
      [-96.591213, 43.500514],
      [-96.453049, 43.500415],
      [-96.351059, 43.500333],
      [-96.332062, 43.500415],
      [-96.208814, 43.500391],
      [-96.198766, 43.500312],
      [-96.198484, 43.500335],
      [-96.053163, 43.500176],
      [-95.861152, 43.499966],
      [-95.860946, 43.499966],
      [-95.861914, 43.257566],
      [-96.554969, 43.259951],
      [-96.572489, 43.249178]]]},
   'id': '19119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19121',
    'STATE': '19',
    'COUNTY': '121',
    'NAME': 'Madison',
    'LSAD': 'County',
    'CENSUSAREA': 561.006},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.241637, 41.157134],
      [-94.241593, 41.503679],
      [-93.896807, 41.503098],
      [-93.790612, 41.511916],
      [-93.789196, 41.162035],
      [-93.898813, 41.15661],
      [-94.014189, 41.156762],
      [-94.241637, 41.157134]]]},
   'id': '19121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19123',
    'STATE': '19',
    'COUNTY': '123',
    'NAME': 'Mahaska',
    'LSAD': 'County',
    'CENSUSAREA': 570.863},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.871421, 41.508522],
      [-92.756508, 41.508794],
      [-92.411995, 41.509548],
      [-92.410233, 41.161942],
      [-92.640361, 41.161298],
      [-92.869771, 41.161066],
      [-92.871421, 41.508522]]]},
   'id': '19123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19125',
    'STATE': '19',
    'COUNTY': '125',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 554.534},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.327886, 41.160659],
      [-93.328407, 41.490921],
      [-93.328486, 41.49134],
      [-93.328614, 41.507824],
      [-92.871421, 41.508522],
      [-92.869771, 41.161066],
      [-93.099217, 41.160867],
      [-93.327886, 41.160659]]]},
   'id': '19125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19127',
    'STATE': '19',
    'COUNTY': '127',
    'NAME': 'Marshall',
    'LSAD': 'County',
    'CENSUSAREA': 572.501},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.765999, 41.862373],
      [-93.231858, 41.862711],
      [-93.231722, 42.208886],
      [-93.001674, 42.209267],
      [-92.767463, 42.21014],
      [-92.765999, 41.862373]]]},
   'id': '19127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19129',
    'STATE': '19',
    'COUNTY': '129',
    'NAME': 'Mills',
    'LSAD': 'County',
    'CENSUSAREA': 437.437},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.823123, 40.900924],
      [-95.829074, 40.975688],
      [-95.835434, 40.984184],
      [-95.867286, 41.001599],
      [-95.867246, 41.043671],
      [-95.866289, 41.051731],
      [-95.853396, 41.16028],
      [-95.384349, 41.160011],
      [-95.384964, 40.90155],
      [-95.813465, 40.901693],
      [-95.823123, 40.900924]]]},
   'id': '19129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19131',
    'STATE': '19',
    'COUNTY': '131',
    'NAME': 'Mitchell',
    'LSAD': 'County',
    'CENSUSAREA': 469.133},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.024348, 43.499572],
      [-93.007871, 43.499604],
      [-92.870277, 43.499548],
      [-92.790317, 43.499567],
      [-92.752088, 43.500084],
      [-92.707312, 43.500069],
      [-92.692786, 43.500063],
      [-92.689033, 43.500062],
      [-92.67258, 43.500055],
      [-92.653318, 43.50005],
      [-92.649194, 43.500049],
      [-92.553161, 43.5003],
      [-92.553128, 43.5003],
      [-92.554381, 43.212813],
      [-93.024092, 43.212812],
      [-93.024143, 43.255538],
      [-93.024348, 43.499572]]]},
   'id': '19131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19133',
    'STATE': '19',
    'COUNTY': '133',
    'NAME': 'Monona',
    'LSAD': 'County',
    'CENSUSAREA': 694.072},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.139554, 41.86583],
      [-96.144483, 41.871854],
      [-96.161756, 41.90182],
      [-96.161988, 41.905553],
      [-96.159098, 41.910057],
      [-96.142265, 41.915379],
      [-96.136743, 41.920826],
      [-96.129186, 41.965136],
      [-96.129505, 41.971673],
      [-96.22173, 42.026205],
      [-96.251714, 42.040472],
      [-96.272877, 42.047238],
      [-96.279079, 42.074026],
      [-96.307421, 42.130707],
      [-96.344121, 42.162091],
      [-96.349688, 42.172043],
      [-96.35987, 42.210545],
      [-96.356666, 42.215077],
      [-95.670822, 42.211408],
      [-95.672771, 41.863147],
      [-96.137698, 41.866307],
      [-96.139554, 41.86583]]]},
   'id': '19133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19135',
    'STATE': '19',
    'COUNTY': '135',
    'NAME': 'Monroe',
    'LSAD': 'County',
    'CENSUSAREA': 433.715},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.869771, 41.161066],
      [-92.640361, 41.161298],
      [-92.639091, 40.898886],
      [-93.097595, 40.898451],
      [-93.097724, 40.899738],
      [-93.099217, 41.160867],
      [-92.869771, 41.161066]]]},
   'id': '19135'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19137',
    'STATE': '19',
    'COUNTY': '137',
    'NAME': 'Montgomery',
    'LSAD': 'County',
    'CENSUSAREA': 424.097},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.927587, 41.158508],
      [-94.928459, 40.900653],
      [-95.384964, 40.90155],
      [-95.384349, 41.160011],
      [-95.155851, 41.159236],
      [-95.154115, 41.159145],
      [-94.927587, 41.158508]]]},
   'id': '19137'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19139',
    'STATE': '19',
    'COUNTY': '139',
    'NAME': 'Muscatine',
    'LSAD': 'County',
    'CENSUSAREA': 437.469},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.366448, 41.598373],
      [-90.899853, 41.597133],
      [-90.783812, 41.596531],
      [-90.786282, 41.452888],
      [-90.847458, 41.455019],
      [-90.989976, 41.431962],
      [-91.027787, 41.423603],
      [-91.039872, 41.418523],
      [-91.047819, 41.4109],
      [-91.078682, 41.336089],
      [-91.079657, 41.333727],
      [-91.369332, 41.336063],
      [-91.368521, 41.423178],
      [-91.366448, 41.598373]]]},
   'id': '19139'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19141',
    'STATE': '19',
    'COUNTY': '141',
    'NAME': "O'Brien",
    'LSAD': 'County',
    'CENSUSAREA': 573.035},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.388078, 43.255221],
      [-95.388182, 42.909897],
      [-95.859377, 42.909097],
      [-95.861914, 43.257566],
      [-95.388078, 43.255221]]]},
   'id': '19141'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19143',
    'STATE': '19',
    'COUNTY': '143',
    'NAME': 'Osceola',
    'LSAD': 'County',
    'CENSUSAREA': 398.684},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.454433, 43.500644],
      [-95.434293, 43.50036],
      [-95.434199, 43.500314],
      [-95.387851, 43.50024],
      [-95.387812, 43.50024],
      [-95.387787, 43.50024],
      [-95.388078, 43.255221],
      [-95.861914, 43.257566],
      [-95.860946, 43.499966],
      [-95.834421, 43.499966],
      [-95.821277, 43.499965],
      [-95.741569, 43.499891],
      [-95.740813, 43.499894],
      [-95.514774, 43.499865],
      [-95.486803, 43.500246],
      [-95.486737, 43.500274],
      [-95.475065, 43.500335],
      [-95.454706, 43.500563],
      [-95.454706, 43.500648],
      [-95.454433, 43.500644]]]},
   'id': '19143'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19145',
    'STATE': '19',
    'COUNTY': '145',
    'NAME': 'Page',
    'LSAD': 'County',
    'CENSUSAREA': 534.942},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.914896, 40.575068],
      [-94.955134, 40.575669],
      [-94.966491, 40.575839],
      [-95.068921, 40.57688],
      [-95.079742, 40.577007],
      [-95.097607, 40.577168],
      [-95.107213, 40.577116],
      [-95.110303, 40.57716],
      [-95.110663, 40.577206],
      [-95.112222, 40.577228],
      [-95.120829, 40.577413],
      [-95.154499, 40.57786],
      [-95.164058, 40.578017],
      [-95.202264, 40.578528],
      [-95.211408, 40.57865],
      [-95.21159, 40.578654],
      [-95.212715, 40.578679],
      [-95.213327, 40.578689],
      [-95.217455, 40.578759],
      [-95.218783, 40.578781],
      [-95.221525, 40.578827],
      [-95.335588, 40.579871],
      [-95.357802, 40.5801],
      [-95.373893, 40.580501],
      [-95.373923, 40.580501],
      [-95.384964, 40.90155],
      [-94.928459, 40.900653],
      [-94.914896, 40.575068]]]},
   'id': '19145'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19147',
    'STATE': '19',
    'COUNTY': '147',
    'NAME': 'Palo Alto',
    'LSAD': 'County',
    'CENSUSAREA': 563.844},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.443137, 43.255014],
      [-94.443136, 42.909498],
      [-94.442954, 42.908073],
      [-94.91389, 42.9097],
      [-94.913723, 43.255054],
      [-94.443137, 43.255014]]]},
   'id': '19147'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19149',
    'STATE': '19',
    'COUNTY': '149',
    'NAME': 'Plymouth',
    'LSAD': 'County',
    'CENSUSAREA': 862.893},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.523264, 42.909059],
      [-95.859377, 42.909097],
      [-95.859949, 42.56062],
      [-96.479685, 42.561238],
      [-96.516338, 42.630435],
      [-96.542366, 42.660736],
      [-96.575299, 42.682665],
      [-96.601989, 42.697429],
      [-96.60614, 42.694661],
      [-96.610975, 42.694751],
      [-96.630617, 42.70588],
      [-96.639704, 42.737071],
      [-96.633168, 42.768325],
      [-96.632142, 42.770863],
      [-96.577813, 42.828102],
      [-96.563058, 42.831051],
      [-96.552092, 42.836057],
      [-96.549513, 42.839143],
      [-96.54146, 42.857682],
      [-96.523264, 42.909059]]]},
   'id': '19149'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19151',
    'STATE': '19',
    'COUNTY': '151',
    'NAME': 'Pocahontas',
    'LSAD': 'County',
    'CENSUSAREA': 577.241},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.443083, 42.645164],
      [-94.443024, 42.558843],
      [-94.914485, 42.560309],
      [-94.91389, 42.9097],
      [-94.442954, 42.908073],
      [-94.443083, 42.645164]]]},
   'id': '19151'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19153',
    'STATE': '19',
    'COUNTY': '153',
    'NAME': 'Polk',
    'LSAD': 'County',
    'CENSUSAREA': 573.795},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.328614, 41.507824],
      [-93.328486, 41.49134],
      [-93.328407, 41.490921],
      [-93.41226, 41.505549],
      [-93.790612, 41.511916],
      [-93.814282, 41.600448],
      [-93.815527, 41.863419],
      [-93.698032, 41.86337],
      [-93.347933, 41.863104],
      [-93.348681, 41.600999],
      [-93.328614, 41.507824]]]},
   'id': '19153'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19155',
    'STATE': '19',
    'COUNTY': '155',
    'NAME': 'Pottawattamie',
    'LSAD': 'County',
    'CENSUSAREA': 950.28},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.853396, 41.16028],
      [-95.852788, 41.165398],
      [-95.91459, 41.185098],
      [-95.92319, 41.190998],
      [-95.923219, 41.191046],
      [-95.92599, 41.195698],
      [-95.927491, 41.202198],
      [-95.924891, 41.211198],
      [-95.90249, 41.273398],
      [-95.91379, 41.320197],
      [-95.92569, 41.322197],
      [-95.939291, 41.328897],
      [-95.953091, 41.339896],
      [-95.956691, 41.345496],
      [-95.956791, 41.349196],
      [-95.93831, 41.392162],
      [-95.937346, 41.394403],
      [-95.930705, 41.433894],
      [-95.981319, 41.506837],
      [-95.497997, 41.506074],
      [-95.154722, 41.505211],
      [-95.155851, 41.159236],
      [-95.384349, 41.160011],
      [-95.853396, 41.16028]]]},
   'id': '19155'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19157',
    'STATE': '19',
    'COUNTY': '157',
    'NAME': 'Poweshiek',
    'LSAD': 'County',
    'CENSUSAREA': 584.932},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.297494, 41.50979],
      [-92.411995, 41.509548],
      [-92.756508, 41.508794],
      [-92.765999, 41.862373],
      [-92.298164, 41.862779],
      [-92.297494, 41.50979]]]},
   'id': '19157'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19159',
    'STATE': '19',
    'COUNTY': '159',
    'NAME': 'Ringgold',
    'LSAD': 'County',
    'CENSUSAREA': 535.498},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.015492, 40.573914],
      [-94.034134, 40.573585],
      [-94.080223, 40.572899],
      [-94.080463, 40.572899],
      [-94.089194, 40.572806],
      [-94.091085, 40.572897],
      [-94.23224, 40.571907],
      [-94.28735, 40.571521],
      [-94.294813, 40.571341],
      [-94.310724, 40.571524],
      [-94.324765, 40.571477],
      [-94.336556, 40.571475],
      [-94.336706, 40.571452],
      [-94.358307, 40.571363],
      [-94.429725, 40.571041],
      [-94.460088, 40.570947],
      [-94.470648, 40.57083],
      [-94.471213, 40.570825],
      [-94.470779, 40.899502],
      [-94.014803, 40.897031],
      [-94.015492, 40.573914]]]},
   'id': '19159'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19161',
    'STATE': '19',
    'COUNTY': '161',
    'NAME': 'Sac',
    'LSAD': 'County',
    'CENSUSAREA': 575.012},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.914485, 42.560309],
      [-94.914487, 42.47419],
      [-94.856702, 42.473967],
      [-94.858412, 42.209692],
      [-95.090851, 42.210405],
      [-95.323497, 42.210932],
      [-95.322357, 42.474737],
      [-95.387445, 42.474796],
      [-95.38801, 42.561742],
      [-94.914485, 42.560309]]]},
   'id': '19161'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19163',
    'STATE': '19',
    'COUNTY': '163',
    'NAME': 'Scott',
    'LSAD': 'County',
    'CENSUSAREA': 458.089},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-90.898373, 41.771392],
      [-90.473617, 41.773465],
      [-90.317041, 41.729104],
      [-90.334525, 41.679559],
      [-90.343162, 41.648141],
      [-90.34165, 41.621484],
      [-90.39793, 41.572233],
      [-90.461432, 41.523533],
      [-90.474332, 41.519733],
      [-90.499475, 41.518055],
      [-90.605937, 41.494232],
      [-90.655839, 41.462132],
      [-90.737537, 41.450127],
      [-90.771672, 41.450761],
      [-90.786282, 41.452888],
      [-90.783812, 41.596531],
      [-90.899853, 41.597133],
      [-90.898373, 41.771392]]]},
   'id': '19163'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19165',
    'STATE': '19',
    'COUNTY': '165',
    'NAME': 'Shelby',
    'LSAD': 'County',
    'CENSUSAREA': 590.779},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.04077, 41.50469],
      [-95.154722, 41.505211],
      [-95.497997, 41.506074],
      [-95.497793, 41.602333],
      [-95.558143, 41.602383],
      [-95.557277, 41.863449],
      [-95.092861, 41.863374],
      [-95.09252, 41.602055],
      [-95.040748, 41.602152],
      [-95.04077, 41.50469]]]},
   'id': '19165'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19167',
    'STATE': '19',
    'COUNTY': '167',
    'NAME': 'Sioux',
    'LSAD': 'County',
    'CENSUSAREA': 768.332},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.455107, 43.083366],
      [-96.439335, 43.113916],
      [-96.436589, 43.120842],
      [-96.475571, 43.221054],
      [-96.485264, 43.224183],
      [-96.557126, 43.224192],
      [-96.572489, 43.249178],
      [-96.554969, 43.259951],
      [-95.861914, 43.257566],
      [-95.859377, 42.909097],
      [-96.523264, 42.909059],
      [-96.510749, 42.944397],
      [-96.509479, 42.971122],
      [-96.513111, 43.02788],
      [-96.466017, 43.062235],
      [-96.455107, 43.083366]]]},
   'id': '19167'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19169',
    'STATE': '19',
    'COUNTY': '169',
    'NAME': 'Story',
    'LSAD': 'County',
    'CENSUSAREA': 572.818},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.231858, 41.862711],
      [-93.347933, 41.863104],
      [-93.698032, 41.86337],
      [-93.69839, 42.209339],
      [-93.463043, 42.209302],
      [-93.231722, 42.208886],
      [-93.231858, 41.862711]]]},
   'id': '19169'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19171',
    'STATE': '19',
    'COUNTY': '171',
    'NAME': 'Tama',
    'LSAD': 'County',
    'CENSUSAREA': 721.011},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.298164, 41.862779],
      [-92.765999, 41.862373],
      [-92.767463, 42.21014],
      [-92.76809, 42.29668],
      [-92.53351, 42.297001],
      [-92.298792, 42.297527],
      [-92.298164, 41.862779]]]},
   'id': '19171'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19173',
    'STATE': '19',
    'COUNTY': '173',
    'NAME': 'Taylor',
    'LSAD': 'County',
    'CENSUSAREA': 531.902},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.632032, 40.571186],
      [-94.632035, 40.571186],
      [-94.682601, 40.571787],
      [-94.714925, 40.572201],
      [-94.716665, 40.572201],
      [-94.773988, 40.572977],
      [-94.811188, 40.573532],
      [-94.819978, 40.573714],
      [-94.823758, 40.573942],
      [-94.896801, 40.574738],
      [-94.901451, 40.574877],
      [-94.914896, 40.575068],
      [-94.928459, 40.900653],
      [-94.470779, 40.899502],
      [-94.471213, 40.570825],
      [-94.48928, 40.570707],
      [-94.533878, 40.570739],
      [-94.537058, 40.570763],
      [-94.538318, 40.570763],
      [-94.541828, 40.570809],
      [-94.542154, 40.570809],
      [-94.594001, 40.570966],
      [-94.632032, 40.571186]]]},
   'id': '19173'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19175',
    'STATE': '19',
    'COUNTY': '175',
    'NAME': 'Union',
    'LSAD': 'County',
    'CENSUSAREA': 423.645},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.241637, 41.157134],
      [-94.014189, 41.156762],
      [-94.014803, 40.897031],
      [-94.470779, 40.899502],
      [-94.470603, 41.157566],
      [-94.241637, 41.157134]]]},
   'id': '19175'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19177',
    'STATE': '19',
    'COUNTY': '177',
    'NAME': 'Van Buren',
    'LSAD': 'County',
    'CENSUSAREA': 484.789},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.716769, 40.59853],
      [-91.729115, 40.61364],
      [-91.785916, 40.611488],
      [-91.795374, 40.611101],
      [-91.800133, 40.610953],
      [-91.813968, 40.610526],
      [-91.824826, 40.610191],
      [-91.832481, 40.609797],
      [-91.868401, 40.608059],
      [-91.943114, 40.605913],
      [-91.970988, 40.605112],
      [-91.998683, 40.604433],
      [-92.029649, 40.603713],
      [-92.067904, 40.602648],
      [-92.069521, 40.602772],
      [-92.082339, 40.602176],
      [-92.0832, 40.602244],
      [-92.092875, 40.602082],
      [-92.096387, 40.60183],
      [-92.17978, 40.600529],
      [-92.17899, 40.898343],
      [-92.179072, 40.89972],
      [-91.718268, 40.900805],
      [-91.718787, 40.813544],
      [-91.716769, 40.59853]]]},
   'id': '19177'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19179',
    'STATE': '19',
    'COUNTY': '179',
    'NAME': 'Wapello',
    'LSAD': 'County',
    'CENSUSAREA': 431.833},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-92.410233, 41.161942],
      [-92.179974, 41.162662],
      [-92.179072, 40.89972],
      [-92.639091, 40.898886],
      [-92.640361, 41.161298],
      [-92.410233, 41.161942]]]},
   'id': '19179'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19181',
    'STATE': '19',
    'COUNTY': '181',
    'NAME': 'Warren',
    'LSAD': 'County',
    'CENSUSAREA': 569.827},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.327886, 41.160659],
      [-93.557556, 41.161271],
      [-93.789196, 41.162035],
      [-93.790612, 41.511916],
      [-93.41226, 41.505549],
      [-93.328407, 41.490921],
      [-93.327886, 41.160659]]]},
   'id': '19181'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19183',
    'STATE': '19',
    'COUNTY': '183',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 568.835},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.485717, 41.162405],
      [-91.715893, 41.162822],
      [-91.83906, 41.161515],
      [-91.945571, 41.163578],
      [-91.946043, 41.510749],
      [-91.829231, 41.511457],
      [-91.52248, 41.511035],
      [-91.483995, 41.423848],
      [-91.485717, 41.162405]]]},
   'id': '19183'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19185',
    'STATE': '19',
    'COUNTY': '185',
    'NAME': 'Wayne',
    'LSAD': 'County',
    'CENSUSAREA': 525.437},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.345442, 40.580514],
      [-93.374386, 40.580334],
      [-93.441767, 40.579916],
      [-93.465297, 40.580164],
      [-93.466887, 40.580072],
      [-93.524124, 40.580481],
      [-93.527607, 40.580436],
      [-93.528177, 40.580367],
      [-93.548284, 40.580417],
      [-93.553986, 40.580303],
      [-93.556899, 40.580235],
      [-93.55654, 40.898295],
      [-93.097595, 40.898451],
      [-93.097296, 40.584014],
      [-93.098507, 40.583973],
      [-93.260612, 40.580797],
      [-93.317605, 40.580671],
      [-93.345442, 40.580514]]]},
   'id': '19185'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19187',
    'STATE': '19',
    'COUNTY': '187',
    'NAME': 'Webster',
    'LSAD': 'County',
    'CENSUSAREA': 715.619},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.443024, 42.558843],
      [-94.443083, 42.645164],
      [-93.971714, 42.644707],
      [-93.971583, 42.558139],
      [-93.931684, 42.472011],
      [-93.931581, 42.210095],
      [-94.164704, 42.20992],
      [-94.397526, 42.209161],
      [-94.397671, 42.4733],
      [-94.443024, 42.558843]]]},
   'id': '19187'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19189',
    'STATE': '19',
    'COUNTY': '189',
    'NAME': 'Winnebago',
    'LSAD': 'County',
    'CENSUSAREA': 400.489},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.970762, 43.499605],
      [-93.97076, 43.499605],
      [-93.795793, 43.49952],
      [-93.794285, 43.499542],
      [-93.716217, 43.499563],
      [-93.708771, 43.499564],
      [-93.704916, 43.499568],
      [-93.699345, 43.499576],
      [-93.648533, 43.499559],
      [-93.617131, 43.499548],
      [-93.576728, 43.49952],
      [-93.558631, 43.499521],
      [-93.532178, 43.499472],
      [-93.528482, 43.499471],
      [-93.497405, 43.499456],
      [-93.49735, 43.499456],
      [-93.497635, 43.255468],
      [-93.970415, 43.255358],
      [-93.970762, 43.499605]]]},
   'id': '19189'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19191',
    'STATE': '19',
    'COUNTY': '191',
    'NAME': 'Winneshiek',
    'LSAD': 'County',
    'CENSUSAREA': 689.868},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-91.730217, 43.50068],
      [-91.700749, 43.500581],
      [-91.670872, 43.500513],
      [-91.658401, 43.500533],
      [-91.651396, 43.500454],
      [-91.644924, 43.500529],
      [-91.639772, 43.500573],
      [-91.635626, 43.500463],
      [-91.634495, 43.500439],
      [-91.634244, 43.500479],
      [-91.625611, 43.500727],
      [-91.620785, 43.500677],
      [-91.617407, 43.500687],
      [-91.616895, 43.500663],
      [-91.615293, 43.50055],
      [-91.610895, 43.50053],
      [-91.610832, 43.50053],
      [-91.605307, 43.081653],
      [-92.081146, 43.082794],
      [-92.080976, 43.212947],
      [-92.079802, 43.500647],
      [-91.949879, 43.500485],
      [-91.941837, 43.500554],
      [-91.824848, 43.500684],
      [-91.807156, 43.500648],
      [-91.804925, 43.500716],
      [-91.77929, 43.500803],
      [-91.777688, 43.500711],
      [-91.761414, 43.500637],
      [-91.738446, 43.500525],
      [-91.736558, 43.500561],
      [-91.73333, 43.500623],
      [-91.730359, 43.50068],
      [-91.730217, 43.50068]]]},
   'id': '19191'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19193',
    'STATE': '19',
    'COUNTY': '193',
    'NAME': 'Woodbury',
    'LSAD': 'County',
    'CENSUSAREA': 872.834},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.356666, 42.215077],
      [-96.356591, 42.215182],
      [-96.336323, 42.218922],
      [-96.323723, 42.229887],
      [-96.322868, 42.233637],
      [-96.328905, 42.254734],
      [-96.348814, 42.282024],
      [-96.375307, 42.318339],
      [-96.384169, 42.325874],
      [-96.407998, 42.337408],
      [-96.413895, 42.343393],
      [-96.417786, 42.351449],
      [-96.415509, 42.400294],
      [-96.413609, 42.407894],
      [-96.387608, 42.432494],
      [-96.380707, 42.446394],
      [-96.381307, 42.461694],
      [-96.385407, 42.473094],
      [-96.396107, 42.484095],
      [-96.409408, 42.487595],
      [-96.443408, 42.489495],
      [-96.466253, 42.497702],
      [-96.476947, 42.508677],
      [-96.481308, 42.516556],
      [-96.479909, 42.524195],
      [-96.477709, 42.535595],
      [-96.476952, 42.556079],
      [-96.479685, 42.561238],
      [-95.859949, 42.56062],
      [-95.750287, 42.561106],
      [-95.741611, 42.561285],
      [-95.741821, 42.474865],
      [-95.669265, 42.474645],
      [-95.670822, 42.211408],
      [-96.356666, 42.215077]]]},
   'id': '19193'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19195',
    'STATE': '19',
    'COUNTY': '195',
    'NAME': 'Worth',
    'LSAD': 'County',
    'CENSUSAREA': 400.123},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.049192, 43.499571],
      [-93.024429, 43.499572],
      [-93.024348, 43.499572],
      [-93.024143, 43.255538],
      [-93.497635, 43.255468],
      [-93.49735, 43.499456],
      [-93.488261, 43.499417],
      [-93.482009, 43.499482],
      [-93.472804, 43.4994],
      [-93.468563, 43.499473],
      [-93.428509, 43.499478],
      [-93.399035, 43.499485],
      [-93.2718, 43.499356],
      [-93.228861, 43.499567],
      [-93.049192, 43.499571]]]},
   'id': '19195'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US19197',
    'STATE': '19',
    'COUNTY': '197',
    'NAME': 'Wright',
    'LSAD': 'County',
    'CENSUSAREA': 580.422},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-93.971238, 42.907762],
      [-93.498617, 42.908512],
      [-93.499485, 42.5577],
      [-93.500212, 42.557836],
      [-93.971583, 42.558139],
      [-93.971714, 42.644707],
      [-93.971238, 42.907762]]]},
   'id': '19197'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20001',
    'STATE': '20',
    'COUNTY': '001',
    'NAME': 'Allen',
    'LSAD': 'County',
    'CENSUSAREA': 500.303},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.088082, 37.732476],
      [-95.525499, 37.732759],
      [-95.51897, 38.03823],
      [-95.077876, 38.037706],
      [-95.088082, 37.732476]]]},
   'id': '20001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20003',
    'STATE': '20',
    'COUNTY': '003',
    'NAME': 'Anderson',
    'LSAD': 'County',
    'CENSUSAREA': 579.646},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.51897, 38.03823],
      [-95.508328, 38.390278],
      [-95.065831, 38.389945],
      [-95.077876, 38.037706],
      [-95.51897, 38.03823]]]},
   'id': '20003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20005',
    'STATE': '20',
    'COUNTY': '005',
    'NAME': 'Atchison',
    'LSAD': 'County',
    'CENSUSAREA': 431.172},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.069592, 39.615106],
      [-95.107454, 39.573843],
      [-95.113077, 39.559133],
      [-95.113557, 39.553941],
      [-95.109304, 39.542285],
      [-95.102888, 39.533347],
      [-94.969061, 39.418876],
      [-95.180891, 39.419218],
      [-95.570351, 39.41905],
      [-95.564126, 39.652872],
      [-95.33974, 39.65298],
      [-95.115189, 39.652549],
      [-95.069592, 39.615106]]]},
   'id': '20005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20007',
    'STATE': '20',
    'COUNTY': '007',
    'NAME': 'Barber',
    'LSAD': 'County',
    'CENSUSAREA': 1134.073},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.347149, 36.997962],
      [-98.354073, 36.997961],
      [-98.408991, 36.998513],
      [-98.418268, 36.998538],
      [-98.420209, 36.998516],
      [-98.54466, 36.998996],
      [-98.544872, 36.998997],
      [-98.714512, 36.99906],
      [-98.718465, 36.99918],
      [-98.761597, 36.999425],
      [-98.791936, 36.999255],
      [-98.793711, 36.999227],
      [-98.797452, 36.999229],
      [-98.869449, 36.999286],
      [-98.880009, 36.999263],
      [-98.88058, 36.999309],
      [-98.994371, 36.999493],
      [-99.000303, 36.99951],
      [-99.001294, 37.384296],
      [-99.011499, 37.384263],
      [-99.011755, 37.431042],
      [-99.012186, 37.436186],
      [-99.012598, 37.470421],
      [-98.464663, 37.471013],
      [-98.464951, 37.384086],
      [-98.349804, 37.384056],
      [-98.347149, 36.997962]]]},
   'id': '20007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20009',
    'STATE': '20',
    'COUNTY': '009',
    'NAME': 'Barton',
    'LSAD': 'County',
    'CENSUSAREA': 895.4},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.486108, 38.696878],
      [-98.479958, 38.696916],
      [-98.480377, 38.521841],
      [-98.479841, 38.26079],
      [-98.912583, 38.261088],
      [-99.032309, 38.261227],
      [-99.032408, 38.348334],
      [-99.032971, 38.696759],
      [-98.486108, 38.696878]]]},
   'id': '20009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20011',
    'STATE': '20',
    'COUNTY': '011',
    'NAME': 'Bourbon',
    'LSAD': 'County',
    'CENSUSAREA': 635.471},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.613981, 38.037057],
      [-94.613981, 38.036949],
      [-94.614212, 37.992462],
      [-94.614465, 37.987799],
      [-94.614557, 37.971037],
      [-94.614562, 37.951517],
      [-94.614594, 37.949978],
      [-94.614612, 37.944362],
      [-94.614754, 37.940769],
      [-94.614835, 37.9367],
      [-94.614778, 37.9342],
      [-94.615181, 37.915944],
      [-94.615393, 37.906392],
      [-94.615469, 37.901775],
      [-94.615706, 37.886843],
      [-94.615921, 37.878331],
      [-94.615834, 37.87251],
      [-94.616, 37.863126],
      [-94.616426, 37.845282],
      [-94.61645, 37.83756],
      [-94.616862, 37.819456],
      [-94.617808, 37.729707],
      [-94.617975, 37.722176],
      [-94.617805, 37.690178],
      [-94.617651, 37.687671],
      [-94.617687, 37.686653],
      [-94.617885, 37.682214],
      [-94.617734, 37.673127],
      [-94.617734, 37.673105],
      [-95.088012, 37.674519],
      [-95.088082, 37.732476],
      [-95.077876, 38.037706],
      [-94.613981, 38.037057]]]},
   'id': '20011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20013',
    'STATE': '20',
    'COUNTY': '013',
    'NAME': 'Brown',
    'LSAD': 'County',
    'CENSUSAREA': 570.872},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.788941, 39.653001],
      [-95.788315, 39.883502],
      [-95.788111, 40.000452],
      [-95.788024, 40.000452],
      [-95.784575, 40.000463],
      [-95.375257, 40.0],
      [-95.339896, 39.999999],
      [-95.33974, 39.65298],
      [-95.564126, 39.652872],
      [-95.788941, 39.653001]]]},
   'id': '20013'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20015',
    'STATE': '20',
    'COUNTY': '015',
    'NAME': 'Butler',
    'LSAD': 'County',
    'CENSUSAREA': 1429.863},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.522782, 38.08637],
      [-96.523755, 37.955899],
      [-96.5253, 37.607015],
      [-96.52569, 37.476405],
      [-97.153331, 37.475544],
      [-97.152476, 37.912733],
      [-97.152913, 38.087704],
      [-96.840772, 38.085622],
      [-96.522782, 38.08637]]]},
   'id': '20015'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20017',
    'STATE': '20',
    'COUNTY': '017',
    'NAME': 'Chase',
    'LSAD': 'County',
    'CENSUSAREA': 773.06},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.35378, 38.521657],
      [-96.357277, 38.17266],
      [-96.358099, 38.085817],
      [-96.522782, 38.08637],
      [-96.840772, 38.085622],
      [-96.819723, 38.522464],
      [-96.81783, 38.522396],
      [-96.35378, 38.521657]]]},
   'id': '20017'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20019',
    'STATE': '20',
    'COUNTY': '019',
    'NAME': 'Chautauqua',
    'LSAD': 'County',
    'CENSUSAREA': 638.881},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.96427, 36.999094],
      [-96.00081, 36.99886],
      [-96.14121, 36.998973],
      [-96.143207, 36.999134],
      [-96.147143, 36.999022],
      [-96.149709, 36.99904],
      [-96.152384, 36.999051],
      [-96.154017, 36.999161],
      [-96.184768, 36.999211],
      [-96.200028, 36.999028],
      [-96.217571, 36.99907],
      [-96.276368, 36.999271],
      [-96.279079, 36.999272],
      [-96.394272, 36.999221],
      [-96.415412, 36.999113],
      [-96.525493, 36.999147],
      [-96.524873, 37.30273],
      [-95.964399, 37.299232],
      [-95.96427, 36.999094]]]},
   'id': '20019'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20021',
    'STATE': '20',
    'COUNTY': '021',
    'NAME': 'Cherokee',
    'LSAD': 'County',
    'CENSUSAREA': 587.568},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.61808, 36.998135],
      [-94.699735, 36.998805],
      [-94.701797, 36.998814],
      [-94.71277, 36.998794],
      [-94.737183, 36.998665],
      [-94.739324, 36.998687],
      [-94.777257, 36.998764],
      [-94.83128, 36.998812],
      [-94.840926, 36.998833],
      [-94.849801, 36.998876],
      [-94.853197, 36.998874],
      [-94.995293, 36.999529],
      [-95.00762, 36.999514],
      [-95.011433, 36.999535],
      [-95.030324, 36.999517],
      [-95.037857, 36.999497],
      [-95.049499, 36.99958],
      [-95.073504, 36.999509],
      [-95.075166, 37.339937],
      [-94.619202, 37.33836],
      [-94.617636, 37.338415],
      [-94.617695, 37.336842],
      [-94.617648, 37.323589],
      [-94.618075, 37.240436],
      [-94.618158, 37.237597],
      [-94.618123, 37.229334],
      [-94.61815, 37.228121],
      [-94.618219, 37.207772],
      [-94.618305, 37.207337],
      [-94.618319, 37.188774],
      [-94.618505, 37.181184],
      [-94.618473, 37.174782],
      [-94.618351, 37.160211],
      [-94.618072, 37.132345],
      [-94.618075, 37.129755],
      [-94.618212, 37.113169],
      [-94.618151, 37.103968],
      [-94.618059, 37.096676],
      [-94.618088, 37.093671],
      [-94.61809, 37.093494],
      [-94.618082, 37.086432],
      [-94.61812, 37.085934],
      [-94.617982, 37.075077],
      [-94.617875, 37.056798],
      [-94.617875, 37.056797],
      [-94.617965, 37.040537],
      [-94.617995, 37.009016],
      [-94.61808, 36.998135]]]},
   'id': '20021'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20023',
    'STATE': '20',
    'COUNTY': '023',
    'NAME': 'Cheyenne',
    'LSAD': 'County',
    'CENSUSAREA': 1019.887},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.411043, 40.002365],
      [-101.41124, 39.999997],
      [-101.413913, 39.568361],
      [-102.049764, 39.56818],
      [-102.049806, 39.574058],
      [-102.049954, 39.592331],
      [-102.050594, 39.675594],
      [-102.051254, 39.818992],
      [-102.051318, 39.833311],
      [-102.051363, 39.843471],
      [-102.051569, 39.849805],
      [-102.051744, 40.003078],
      [-101.916696, 40.003142],
      [-101.904176, 40.003162],
      [-101.841025, 40.002784],
      [-101.832161, 40.002933],
      [-101.807687, 40.002798],
      [-101.804862, 40.002752],
      [-101.627071, 40.00262],
      [-101.625809, 40.002711],
      [-101.542273, 40.002609],
      [-101.417209, 40.002424],
      [-101.411043, 40.002365]]]},
   'id': '20023'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20025',
    'STATE': '20',
    'COUNTY': '025',
    'NAME': 'Clark',
    'LSAD': 'County',
    'CENSUSAREA': 974.632},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.558068, 36.999528],
      [-99.625399, 36.999671],
      [-99.657658, 37.000197],
      [-99.774255, 37.000837],
      [-99.774816, 37.000841],
      [-99.786016, 37.000931],
      [-99.995201, 37.001631],
      [-100.001286, 37.001699],
      [-100.002563, 37.001706],
      [-100.005706, 37.001726],
      [-100.089484, 37.002092],
      [-100.091529, 37.386892],
      [-100.107248, 37.474836],
      [-99.774512, 37.467404],
      [-99.556119, 37.467722],
      [-99.555774, 37.381112],
      [-99.543189, 37.381124],
      [-99.541116, 36.999573],
      [-99.558068, 36.999528]]]},
   'id': '20025'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20027',
    'STATE': '20',
    'COUNTY': '027',
    'NAME': 'Clay',
    'LSAD': 'County',
    'CENSUSAREA': 645.301},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.368574, 39.567018],
      [-96.958859, 39.5664],
      [-96.961387, 39.220073],
      [-96.96138, 39.132325],
      [-96.963177, 39.1323],
      [-97.371154, 39.131961],
      [-97.369839, 39.306011],
      [-97.368574, 39.567018]]]},
   'id': '20027'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20029',
    'STATE': '20',
    'COUNTY': '029',
    'NAME': 'Cloud',
    'LSAD': 'County',
    'CENSUSAREA': 715.342},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.368574, 39.567018],
      [-97.369839, 39.306011],
      [-97.926096, 39.306517],
      [-97.929097, 39.306397],
      [-97.928462, 39.566915],
      [-97.931844, 39.566921],
      [-97.931482, 39.653767],
      [-97.36867, 39.654043],
      [-97.368653, 39.583833],
      [-97.368374, 39.577145],
      [-97.368635, 39.575926],
      [-97.368574, 39.567018]]]},
   'id': '20029'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20031',
    'STATE': '20',
    'COUNTY': '031',
    'NAME': 'Coffey',
    'LSAD': 'County',
    'CENSUSAREA': 626.947},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.508267, 38.433933],
      [-95.508328, 38.390278],
      [-95.51897, 38.03823],
      [-95.959046, 38.040195],
      [-95.958862, 38.170939],
      [-95.950282, 38.434105],
      [-95.508267, 38.433933]]]},
   'id': '20031'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20033',
    'STATE': '20',
    'COUNTY': '033',
    'NAME': 'Comanche',
    'LSAD': 'County',
    'CENSUSAREA': 788.298},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.000303, 36.99951],
      [-99.029337, 36.999595],
      [-99.124883, 36.99942],
      [-99.129449, 36.999422],
      [-99.24812, 36.999565],
      [-99.277506, 36.999579],
      [-99.456203, 36.999471],
      [-99.484333, 36.999626],
      [-99.500395, 36.999576],
      [-99.500395, 36.999637],
      [-99.502665, 36.999645],
      [-99.504093, 36.999648],
      [-99.508574, 36.999658],
      [-99.541116, 36.999573],
      [-99.543189, 37.381124],
      [-99.011499, 37.384263],
      [-99.001294, 37.384296],
      [-99.000303, 36.99951]]]},
   'id': '20033'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20035',
    'STATE': '20',
    'COUNTY': '035',
    'NAME': 'Cowley',
    'LSAD': 'County',
    'CENSUSAREA': 1125.75},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.525493, 36.999147],
      [-96.705431, 36.999203],
      [-96.710482, 36.999271],
      [-96.73659, 36.999286],
      [-96.74127, 36.999239],
      [-96.749838, 36.998988],
      [-96.79206, 36.99918],
      [-96.795199, 36.99886],
      [-96.822791, 36.999182],
      [-96.867517, 36.999217],
      [-96.87629, 36.999233],
      [-96.902083, 36.999155],
      [-96.90351, 36.999132],
      [-96.917093, 36.999182],
      [-96.921915, 36.999151],
      [-96.934642, 36.99907],
      [-96.967371, 36.999067],
      [-96.975562, 36.999019],
      [-97.030082, 36.998929],
      [-97.039784, 36.999],
      [-97.100652, 36.998998],
      [-97.104276, 36.99902],
      [-97.120285, 36.999014],
      [-97.122597, 36.999036],
      [-97.147721, 36.999111],
      [-97.153331, 37.475544],
      [-96.52569, 37.476405],
      [-96.524873, 37.30273],
      [-96.525493, 36.999147]]]},
   'id': '20035'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20037',
    'STATE': '20',
    'COUNTY': '037',
    'NAME': 'Crawford',
    'LSAD': 'County',
    'CENSUSAREA': 589.756},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.617575, 37.653577],
      [-94.617477, 37.63717],
      [-94.6173, 37.610495],
      [-94.617428, 37.609522],
      [-94.617283, 37.571896],
      [-94.617315, 37.571499],
      [-94.617081, 37.567013],
      [-94.61716, 37.557308],
      [-94.617186, 37.553485],
      [-94.616908, 37.527804],
      [-94.616789, 37.52151],
      [-94.617023, 37.483765],
      [-94.617183, 37.469665],
      [-94.61718, 37.465203],
      [-94.617222, 37.460476],
      [-94.617205, 37.460373],
      [-94.617201, 37.454788],
      [-94.617132, 37.439818],
      [-94.617265, 37.425536],
      [-94.617511, 37.410909],
      [-94.617557, 37.396375],
      [-94.617625, 37.367576],
      [-94.617626, 37.367445],
      [-94.617537, 37.364355],
      [-94.617538, 37.364167],
      [-94.617636, 37.338417],
      [-94.617636, 37.338415],
      [-94.619202, 37.33836],
      [-95.075166, 37.339937],
      [-95.074972, 37.383823],
      [-95.088189, 37.383837],
      [-95.088012, 37.674519],
      [-94.617734, 37.673105],
      [-94.617576, 37.653671],
      [-94.617575, 37.653577]]]},
   'id': '20037'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20039',
    'STATE': '20',
    'COUNTY': '039',
    'NAME': 'Decatur',
    'LSAD': 'County',
    'CENSUSAREA': 893.517},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.738826, 40.002228],
      [-100.733296, 40.00227],
      [-100.729904, 40.002111],
      [-100.721128, 40.002069],
      [-100.683435, 40.002234],
      [-100.66023, 40.002162],
      [-100.645445, 40.001883],
      [-100.600945, 40.001906],
      [-100.594757, 40.001977],
      [-100.567238, 40.001889],
      [-100.551886, 40.001889],
      [-100.511065, 40.00184],
      [-100.487159, 40.001767],
      [-100.477018, 40.001752],
      [-100.475854, 40.001768],
      [-100.468773, 40.001724],
      [-100.447072, 40.001795],
      [-100.439081, 40.001774],
      [-100.39008, 40.001809],
      [-100.231652, 40.001623],
      [-100.229479, 40.001693],
      [-100.215406, 40.001629],
      [-100.196959, 40.001494],
      [-100.193597, 40.001573],
      [-100.19359, 40.001573],
      [-100.190323, 40.001586],
      [-100.188181, 40.001541],
      [-100.177823, 40.001593],
      [-100.177795, 40.001593],
      [-100.178276, 39.998801],
      [-100.180351, 39.56689],
      [-100.720213, 39.568034],
      [-100.740873, 39.568043],
      [-100.738826, 40.002228]]]},
   'id': '20039'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20041',
    'STATE': '20',
    'COUNTY': '041',
    'NAME': 'Dickinson',
    'LSAD': 'County',
    'CENSUSAREA': 847.072},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.963177, 39.1323],
      [-96.96347, 38.964901],
      [-96.926209, 38.978941],
      [-96.890245, 38.870067],
      [-96.927234, 38.81216],
      [-96.930286, 38.609362],
      [-97.364088, 38.609146],
      [-97.371911, 38.609353],
      [-97.371614, 38.957852],
      [-97.371154, 39.131961],
      [-96.963177, 39.1323]]]},
   'id': '20041'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20043',
    'STATE': '20',
    'COUNTY': '043',
    'NAME': 'Doniphan',
    'LSAD': 'County',
    'CENSUSAREA': 393.405},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.339896, 39.999999],
      [-95.30829, 39.999998],
      [-95.30778, 39.990618],
      [-95.301549, 39.983603],
      [-95.181222, 39.899996],
      [-95.132695, 39.875925],
      [-95.107745, 39.868579],
      [-95.085003, 39.861883],
      [-95.042142, 39.864805],
      [-95.035047, 39.866807],
      [-95.027931, 39.871522],
      [-95.02525, 39.877688],
      [-95.02524, 39.8897],
      [-95.01632, 39.898766],
      [-95.00844, 39.900596],
      [-94.993348, 39.900747],
      [-94.954155, 39.901138],
      [-94.935963, 39.894355],
      [-94.927897, 39.886112],
      [-94.908267, 39.812172],
      [-94.895268, 39.76321],
      [-94.916932, 39.728186],
      [-94.937924, 39.725471],
      [-95.011103, 39.677572],
      [-95.01531, 39.674262],
      [-95.069592, 39.615106],
      [-95.115189, 39.652549],
      [-95.33974, 39.65298],
      [-95.339896, 39.999999]]]},
   'id': '20043'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20045',
    'STATE': '20',
    'COUNTY': '045',
    'NAME': 'Douglas',
    'LSAD': 'County',
    'CENSUSAREA': 455.871},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.056207, 38.811432],
      [-95.056412, 38.738587],
      [-95.500738, 38.738808],
      [-95.501038, 38.739721],
      [-95.500724, 38.869815],
      [-95.500254, 39.056656],
      [-95.285425, 39.032162],
      [-95.187103, 39.044109],
      [-95.164123, 38.98163],
      [-95.056258, 38.98212],
      [-95.056207, 38.811432]]]},
   'id': '20045'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20047',
    'STATE': '20',
    'COUNTY': '047',
    'NAME': 'Edwards',
    'LSAD': 'County',
    'CENSUSAREA': 621.894},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.022136, 38.000236],
      [-99.022627, 37.825358],
      [-99.013318, 37.825336],
      [-99.01355, 37.73297],
      [-99.557681, 37.734925],
      [-99.55958, 37.734888],
      [-99.569879, 37.913016],
      [-99.569533, 38.087372],
      [-99.350359, 38.087594],
      [-99.350289, 38.000745],
      [-99.022136, 38.000236]]]},
   'id': '20047'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20049',
    'STATE': '20',
    'COUNTY': '049',
    'NAME': 'Elk',
    'LSAD': 'County',
    'CENSUSAREA': 644.265},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.52569, 37.476405],
      [-96.5253, 37.607015],
      [-95.961002, 37.603761],
      [-95.961605, 37.386636],
      [-95.964666, 37.386656],
      [-95.964399, 37.299232],
      [-96.524873, 37.30273],
      [-96.52569, 37.476405]]]},
   'id': '20049'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20051',
    'STATE': '20',
    'COUNTY': '051',
    'NAME': 'Ellis',
    'LSAD': 'County',
    'CENSUSAREA': 899.912},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.598323, 38.696514],
      [-99.591776, 39.132357],
      [-99.047687, 39.133014],
      [-99.0375, 39.133121],
      [-99.042626, 38.696807],
      [-99.585087, 38.696537],
      [-99.598323, 38.696514]]]},
   'id': '20051'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20053',
    'STATE': '20',
    'COUNTY': '053',
    'NAME': 'Ellsworth',
    'LSAD': 'County',
    'CENSUSAREA': 715.847},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.480377, 38.521841],
      [-98.479958, 38.696916],
      [-98.486108, 38.696878],
      [-98.484861, 38.870791],
      [-97.928595, 38.871102],
      [-97.924795, 38.60988],
      [-97.924269, 38.522755],
      [-98.480377, 38.521841]]]},
   'id': '20053'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20055',
    'STATE': '20',
    'COUNTY': '055',
    'NAME': 'Finney',
    'LSAD': 'County',
    'CENSUSAREA': 1301.967},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.227137, 38.262237],
      [-100.22661, 38.001015],
      [-100.664166, 38.00253],
      [-100.652251, 37.736275],
      [-101.089667, 37.736337],
      [-101.103778, 37.829035],
      [-101.103268, 38.264557],
      [-100.687836, 38.26415],
      [-100.244393, 38.26229],
      [-100.227137, 38.262237]]]},
   'id': '20055'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20057',
    'STATE': '20',
    'COUNTY': '057',
    'NAME': 'Ford',
    'LSAD': 'County',
    'CENSUSAREA': 1098.271},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.216229, 37.47519],
      [-100.214637, 37.826808],
      [-100.22709, 37.914018],
      [-99.569879, 37.913016],
      [-99.55958, 37.734888],
      [-99.556119, 37.467722],
      [-99.774512, 37.467404],
      [-100.107248, 37.474836],
      [-100.155812, 37.475016],
      [-100.15822, 37.474854],
      [-100.161075, 37.475021],
      [-100.216229, 37.47519]]]},
   'id': '20057'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20059',
    'STATE': '20',
    'COUNTY': '059',
    'NAME': 'Franklin',
    'LSAD': 'County',
    'CENSUSAREA': 571.756},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.508267, 38.433933],
      [-95.500738, 38.738808],
      [-95.056412, 38.738587],
      [-95.065831, 38.389945],
      [-95.508328, 38.390278],
      [-95.508267, 38.433933]]]},
   'id': '20059'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20061',
    'STATE': '20',
    'COUNTY': '061',
    'NAME': 'Geary',
    'LSAD': 'County',
    'CENSUSAREA': 384.618},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.755786, 39.088006],
      [-96.501181, 39.072782],
      [-96.501174, 39.043666],
      [-96.501556, 38.869704],
      [-96.890245, 38.870067],
      [-96.926209, 38.978941],
      [-96.96347, 38.964901],
      [-96.963177, 39.1323],
      [-96.96138, 39.132325],
      [-96.961387, 39.220073],
      [-96.849879, 39.219012],
      [-96.850991, 39.101307],
      [-96.851111, 39.088386],
      [-96.755786, 39.088006]]]},
   'id': '20061'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20063',
    'STATE': '20',
    'COUNTY': '063',
    'NAME': 'Gove',
    'LSAD': 'County',
    'CENSUSAREA': 1071.665},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.1642, 39.132071],
      [-100.162393, 39.131926],
      [-100.14794, 39.132179],
      [-100.153823, 38.697341],
      [-100.2472, 38.698165],
      [-100.688006, 38.700021],
      [-100.818698, 38.699861],
      [-100.811858, 39.13336],
      [-100.775311, 39.133375],
      [-100.775177, 39.133265],
      [-100.721296, 39.133381],
      [-100.1642, 39.132071]]]},
   'id': '20063'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20065',
    'STATE': '20',
    'COUNTY': '065',
    'NAME': 'Graham',
    'LSAD': 'County',
    'CENSUSAREA': 898.522},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.605187, 39.132481],
      [-100.14794, 39.132179],
      [-100.162393, 39.131926],
      [-100.1642, 39.132071],
      [-100.161667, 39.567277],
      [-99.627953, 39.567437],
      [-99.602255, 39.567328],
      [-99.605187, 39.132481]]]},
   'id': '20065'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20067',
    'STATE': '20',
    'COUNTY': '067',
    'NAME': 'Grant',
    'LSAD': 'County',
    'CENSUSAREA': 574.8},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.52581, 37.388392],
      [-101.527063, 37.736314],
      [-101.089667, 37.736337],
      [-101.089653, 37.387721],
      [-101.52581, 37.388392]]]},
   'id': '20067'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20069',
    'STATE': '20',
    'COUNTY': '069',
    'NAME': 'Gray',
    'LSAD': 'County',
    'CENSUSAREA': 868.867},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.22661, 38.001015],
      [-100.22709, 37.914018],
      [-100.214637, 37.826808],
      [-100.216229, 37.47519],
      [-100.652642, 37.474848],
      [-100.652251, 37.736275],
      [-100.664166, 38.00253],
      [-100.22661, 38.001015]]]},
   'id': '20069'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20071',
    'STATE': '20',
    'COUNTY': '071',
    'NAME': 'Greeley',
    'LSAD': 'County',
    'CENSUSAREA': 778.45},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.567094, 38.699669],
      [-101.567482, 38.263145],
      [-102.04451, 38.262412],
      [-102.044567, 38.268749],
      [-102.044568, 38.268819],
      [-102.044613, 38.312324],
      [-102.044944, 38.384419],
      [-102.045263, 38.505395],
      [-102.045262, 38.505532],
      [-102.045112, 38.523784],
      [-102.045223, 38.543797],
      [-102.045189, 38.558732],
      [-102.045211, 38.581609],
      [-102.045288, 38.615168],
      [-102.045288, 38.615249],
      [-102.045074, 38.669617],
      [-102.045102, 38.674946],
      [-102.04516, 38.675221],
      [-102.045127, 38.686725],
      [-102.045156, 38.688555],
      [-102.045212, 38.697567],
      [-101.567094, 38.699669]]]},
   'id': '20071'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20073',
    'STATE': '20',
    'COUNTY': '073',
    'NAME': 'Greenwood',
    'LSAD': 'County',
    'CENSUSAREA': 1143.3},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.523755, 37.955899],
      [-96.522782, 38.08637],
      [-96.358099, 38.085817],
      [-96.357277, 38.17266],
      [-95.958862, 38.170939],
      [-95.959046, 38.040195],
      [-95.958554, 37.909245],
      [-95.960876, 37.734304],
      [-95.961002, 37.603761],
      [-96.5253, 37.607015],
      [-96.523755, 37.955899]]]},
   'id': '20073'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20075',
    'STATE': '20',
    'COUNTY': '075',
    'NAME': 'Hamilton',
    'LSAD': 'County',
    'CENSUSAREA': 996.508},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.567482, 38.263145],
      [-101.561294, 38.263179],
      [-101.560373, 38.263122],
      [-101.542312, 38.263207],
      [-101.542757, 37.827594],
      [-101.527063, 37.736314],
      [-102.04199, 37.738541],
      [-102.042158, 37.760164],
      [-102.042668, 37.788758],
      [-102.042953, 37.803535],
      [-102.043033, 37.824146],
      [-102.043219, 37.867929],
      [-102.043845, 37.926135],
      [-102.043844, 37.928102],
      [-102.044398, 38.250015],
      [-102.04451, 38.262412],
      [-101.567482, 38.263145]]]},
   'id': '20075'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20077',
    'STATE': '20',
    'COUNTY': '077',
    'NAME': 'Harper',
    'LSAD': 'County',
    'CENSUSAREA': 801.269},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.802313, 36.998713],
      [-98.033955, 36.998366],
      [-98.03989, 36.998349],
      [-98.045342, 36.998327],
      [-98.111985, 36.998133],
      [-98.147452, 36.998162],
      [-98.177596, 36.998009],
      [-98.208218, 36.997997],
      [-98.219499, 36.997824],
      [-98.237712, 36.997972],
      [-98.346188, 36.997962],
      [-98.347149, 36.997962],
      [-98.349804, 37.384056],
      [-97.807057, 37.386293],
      [-97.804566, 37.386298],
      [-97.802313, 36.998713]]]},
   'id': '20077'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20079',
    'STATE': '20',
    'COUNTY': '079',
    'NAME': 'Harvey',
    'LSAD': 'County',
    'CENSUSAREA': 539.754},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.701969, 37.911325],
      [-97.701841, 38.173814],
      [-97.37175, 38.173673],
      [-97.153093, 38.174634],
      [-97.152913, 38.087704],
      [-97.152476, 37.912733],
      [-97.701969, 37.911325]]]},
   'id': '20079'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20081',
    'STATE': '20',
    'COUNTY': '081',
    'NAME': 'Haskell',
    'LSAD': 'County',
    'CENSUSAREA': 577.521},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.652251, 37.736275],
      [-100.652642, 37.474848],
      [-100.652728, 37.387627],
      [-101.067904, 37.387779],
      [-101.089653, 37.387721],
      [-101.089667, 37.736337],
      [-100.652251, 37.736275]]]},
   'id': '20081'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20083',
    'STATE': '20',
    'COUNTY': '083',
    'NAME': 'Hodgeman',
    'LSAD': 'County',
    'CENSUSAREA': 859.992},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.227137, 38.262237],
      [-99.584207, 38.262179],
      [-99.570543, 38.261957],
      [-99.569533, 38.087372],
      [-99.569879, 37.913016],
      [-100.22709, 37.914018],
      [-100.22661, 38.001015],
      [-100.227137, 38.262237]]]},
   'id': '20083'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20085',
    'STATE': '20',
    'COUNTY': '085',
    'NAME': 'Jackson',
    'LSAD': 'County',
    'CENSUSAREA': 656.217},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.788941, 39.653001],
      [-95.564126, 39.652872],
      [-95.570351, 39.41905],
      [-95.589295, 39.419086],
      [-95.589472, 39.216081],
      [-96.035573, 39.21652],
      [-96.035952, 39.5661],
      [-95.789101, 39.565916],
      [-95.788941, 39.653001]]]},
   'id': '20085'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20087',
    'STATE': '20',
    'COUNTY': '087',
    'NAME': 'Jefferson',
    'LSAD': 'County',
    'CENSUSAREA': 532.574},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.285425, 39.032162],
      [-95.500254, 39.056656],
      [-95.596759, 39.064672],
      [-95.589472, 39.216081],
      [-95.589295, 39.419086],
      [-95.570351, 39.41905],
      [-95.180891, 39.419218],
      [-95.187103, 39.044109],
      [-95.285425, 39.032162]]]},
   'id': '20087'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20089',
    'STATE': '20',
    'COUNTY': '089',
    'NAME': 'Jewell',
    'LSAD': 'County',
    'CENSUSAREA': 909.781},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.504455, 40.002329],
      [-98.490533, 40.002323],
      [-98.274017, 40.002516],
      [-98.274015, 40.002516],
      [-98.268218, 40.00249],
      [-98.250008, 40.002307],
      [-98.193483, 40.002614],
      [-98.179315, 40.002483],
      [-98.172269, 40.002438],
      [-98.142031, 40.002452],
      [-98.099659, 40.002227],
      [-98.076034, 40.002301],
      [-98.068701, 40.002355],
      [-98.050057, 40.002278],
      [-98.047469, 40.002186],
      [-98.014412, 40.002223],
      [-98.010157, 40.002153],
      [-97.972186, 40.002114],
      [-97.931826, 40.00205],
      [-97.931482, 39.653767],
      [-97.931844, 39.566921],
      [-98.487384, 39.567492],
      [-98.503592, 39.567515],
      [-98.505266, 39.567603],
      [-98.505152, 39.569754],
      [-98.504455, 40.002329]]]},
   'id': '20089'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20091',
    'STATE': '20',
    'COUNTY': '091',
    'NAME': 'Johnson',
    'LSAD': 'County',
    'CENSUSAREA': 473.375},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.608033, 38.847207],
      [-94.608041, 38.811064],
      [-94.609039, 38.760611],
      [-94.609399, 38.74244],
      [-94.609456, 38.7407],
      [-94.609509, 38.738102],
      [-95.056412, 38.738587],
      [-95.056207, 38.811432],
      [-95.056258, 38.98212],
      [-94.908765, 38.991401],
      [-94.872442, 39.059088],
      [-94.607391, 39.044086],
      [-94.608134, 38.942006],
      [-94.608134, 38.940006],
      [-94.607866, 38.937398],
      [-94.607978, 38.93687],
      [-94.608033, 38.883807],
      [-94.608033, 38.869207],
      [-94.608033, 38.868107],
      [-94.607993, 38.867271],
      [-94.608033, 38.861207],
      [-94.608033, 38.855007],
      [-94.608033, 38.847207]]]},
   'id': '20091'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20093',
    'STATE': '20',
    'COUNTY': '093',
    'NAME': 'Kearny',
    'LSAD': 'County',
    'CENSUSAREA': 870.543},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.542312, 38.263207],
      [-101.125438, 38.264509],
      [-101.103268, 38.264557],
      [-101.103778, 37.829035],
      [-101.089667, 37.736337],
      [-101.527063, 37.736314],
      [-101.542757, 37.827594],
      [-101.542312, 38.263207]]]},
   'id': '20093'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20095',
    'STATE': '20',
    'COUNTY': '095',
    'NAME': 'Kingman',
    'LSAD': 'County',
    'CENSUSAREA': 863.363},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.8076, 37.474184],
      [-97.807576, 37.473888],
      [-97.807057, 37.386293],
      [-98.349804, 37.384056],
      [-98.464951, 37.384086],
      [-98.464663, 37.471013],
      [-98.464804, 37.732675],
      [-97.807823, 37.733855],
      [-97.8076, 37.474184]]]},
   'id': '20095'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20097',
    'STATE': '20',
    'COUNTY': '097',
    'NAME': 'Kiowa',
    'LSAD': 'County',
    'CENSUSAREA': 722.639},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.543189, 37.381124],
      [-99.555774, 37.381112],
      [-99.556119, 37.467722],
      [-99.55958, 37.734888],
      [-99.557681, 37.734925],
      [-99.01355, 37.73297],
      [-99.012598, 37.470421],
      [-99.012186, 37.436186],
      [-99.011755, 37.431042],
      [-99.011499, 37.384263],
      [-99.543189, 37.381124]]]},
   'id': '20097'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20099',
    'STATE': '20',
    'COUNTY': '099',
    'NAME': 'Labette',
    'LSAD': 'County',
    'CENSUSAREA': 645.295},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.407572, 36.999241],
      [-95.407683, 36.999241],
      [-95.511578, 36.999235],
      [-95.522415, 36.999281],
      [-95.517976, 37.266376],
      [-95.52113, 37.38399],
      [-95.088189, 37.383837],
      [-95.074972, 37.383823],
      [-95.075166, 37.339937],
      [-95.073504, 36.999509],
      [-95.073509, 36.999509],
      [-95.155187, 36.999539],
      [-95.155372, 36.99954],
      [-95.177301, 36.99952],
      [-95.195307, 36.999565],
      [-95.322565, 36.999358],
      [-95.328058, 36.999365],
      [-95.328327, 36.999366],
      [-95.33121, 36.99938],
      [-95.407572, 36.999241]]]},
   'id': '20099'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20101',
    'STATE': '20',
    'COUNTY': '101',
    'NAME': 'Lane',
    'LSAD': 'County',
    'CENSUSAREA': 717.455},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.244393, 38.26229],
      [-100.687836, 38.26415],
      [-100.684637, 38.271122],
      [-100.688006, 38.700021],
      [-100.2472, 38.698165],
      [-100.244393, 38.26229]]]},
   'id': '20101'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20103',
    'STATE': '20',
    'COUNTY': '103',
    'NAME': 'Leavenworth',
    'LSAD': 'County',
    'CENSUSAREA': 462.831},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.969061, 39.418876],
      [-94.946662, 39.399717],
      [-94.909954, 39.367459],
      [-94.908337, 39.355647],
      [-94.910641, 39.348335],
      [-94.907569, 39.320623],
      [-94.901009, 39.30168],
      [-94.832399, 39.227218],
      [-94.793948, 39.201276],
      [-94.900191, 39.202911],
      [-94.908765, 38.991401],
      [-95.056258, 38.98212],
      [-95.164123, 38.98163],
      [-95.187103, 39.044109],
      [-95.180891, 39.419218],
      [-94.969061, 39.418876]]]},
   'id': '20103'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20105',
    'STATE': '20',
    'COUNTY': '105',
    'NAME': 'Lincoln',
    'LSAD': 'County',
    'CENSUSAREA': 719.396},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.92856, 38.958395],
      [-97.928702, 38.886208],
      [-97.928967, 38.882176],
      [-97.928595, 38.871102],
      [-98.484861, 38.870791],
      [-98.483748, 39.132671],
      [-98.489997, 39.132697],
      [-98.490011, 39.213048],
      [-98.489893, 39.213515],
      [-98.489864, 39.21465],
      [-98.490063, 39.215379],
      [-98.490161, 39.218033],
      [-98.490149, 39.21978],
      [-97.929746, 39.219273],
      [-97.92856, 38.958395]]]},
   'id': '20105'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20107',
    'STATE': '20',
    'COUNTY': '107',
    'NAME': 'Linn',
    'LSAD': 'County',
    'CENSUSAREA': 594.059},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.613275, 38.388718],
      [-94.613329, 38.369618],
      [-94.613312, 38.364407],
      [-94.613, 38.335801],
      [-94.612825, 38.324387],
      [-94.612788, 38.320142],
      [-94.612673, 38.314832],
      [-94.612673, 38.302527],
      [-94.612844, 38.291423],
      [-94.612849, 38.289914],
      [-94.612692, 38.270394],
      [-94.612614, 38.237766],
      [-94.612635, 38.226987],
      [-94.612659, 38.219251],
      [-94.612658, 38.217649],
      [-94.612822, 38.203918],
      [-94.612848, 38.200714],
      [-94.613073, 38.190552],
      [-94.613422, 38.167908],
      [-94.613748, 38.160633],
      [-94.613856, 38.149769],
      [-94.614061, 38.067343],
      [-94.614089, 38.065901],
      [-94.614055, 38.060088],
      [-94.614055, 38.060056],
      [-94.613981, 38.037057],
      [-95.077876, 38.037706],
      [-95.065831, 38.389945],
      [-94.613275, 38.388718]]]},
   'id': '20107'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20109',
    'STATE': '20',
    'COUNTY': '109',
    'NAME': 'Logan',
    'LSAD': 'County',
    'CENSUSAREA': 1072.994},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.811858, 39.13336],
      [-100.818698, 38.699861],
      [-101.128379, 38.700603],
      [-101.484383, 38.700166],
      [-101.478195, 39.134761],
      [-101.391717, 39.135117],
      [-100.811858, 39.13336]]]},
   'id': '20109'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20111',
    'STATE': '20',
    'COUNTY': '111',
    'NAME': 'Lyon',
    'LSAD': 'County',
    'CENSUSAREA': 847.474},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.357277, 38.17266],
      [-96.35378, 38.521657],
      [-96.352613, 38.739021],
      [-95.945924, 38.739112],
      [-95.950282, 38.434105],
      [-95.958862, 38.170939],
      [-96.357277, 38.17266]]]},
   'id': '20111'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20113',
    'STATE': '20',
    'COUNTY': '113',
    'NAME': 'McPherson',
    'LSAD': 'County',
    'CENSUSAREA': 898.274},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.922136, 38.173713],
      [-97.924269, 38.522755],
      [-97.924795, 38.60988],
      [-97.371911, 38.609353],
      [-97.37175, 38.173673],
      [-97.701841, 38.173814],
      [-97.922136, 38.173713]]]},
   'id': '20113'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20115',
    'STATE': '20',
    'COUNTY': '115',
    'NAME': 'Marion',
    'LSAD': 'County',
    'CENSUSAREA': 944.29},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.819723, 38.522464],
      [-96.840772, 38.085622],
      [-97.152913, 38.087704],
      [-97.153093, 38.174634],
      [-97.37175, 38.173673],
      [-97.371911, 38.609353],
      [-97.364088, 38.609146],
      [-96.930286, 38.609362],
      [-96.929969, 38.522412],
      [-96.819723, 38.522464]]]},
   'id': '20115'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20117',
    'STATE': '20',
    'COUNTY': '117',
    'NAME': 'Marshall',
    'LSAD': 'County',
    'CENSUSAREA': 900.183},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.463713, 40.000968],
      [-96.46364, 40.000967],
      [-96.304555, 40.000629],
      [-96.301066, 40.000632],
      [-96.239208, 40.000691],
      [-96.239583, 39.827119],
      [-96.238969, 39.56622],
      [-96.581764, 39.566333],
      [-96.806544, 39.566423],
      [-96.805768, 40.001371],
      [-96.622401, 40.001158],
      [-96.610349, 40.000881],
      [-96.604884, 40.000891],
      [-96.580852, 40.000966],
      [-96.570854, 40.001091],
      [-96.557863, 40.000968],
      [-96.538977, 40.000851],
      [-96.527111, 40.001031],
      [-96.469945, 40.000966],
      [-96.467536, 40.001035],
      [-96.463713, 40.000968]]]},
   'id': '20117'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20119',
    'STATE': '20',
    'COUNTY': '119',
    'NAME': 'Meade',
    'LSAD': 'County',
    'CENSUSAREA': 978.088},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.089484, 37.002092],
      [-100.115722, 37.002206],
      [-100.187547, 37.002082],
      [-100.192371, 37.002036],
      [-100.193754, 37.002133],
      [-100.201676, 37.002081],
      [-100.551598, 37.00062],
      [-100.552683, 37.000735],
      [-100.591328, 37.000376],
      [-100.591413, 37.000399],
      [-100.62977, 37.000025],
      [-100.633323, 36.999936],
      [-100.633831, 37.387577],
      [-100.652728, 37.387627],
      [-100.652642, 37.474848],
      [-100.216229, 37.47519],
      [-100.161075, 37.475021],
      [-100.15822, 37.474854],
      [-100.155812, 37.475016],
      [-100.107248, 37.474836],
      [-100.091529, 37.386892],
      [-100.089484, 37.002092]]]},
   'id': '20119'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20121',
    'STATE': '20',
    'COUNTY': '121',
    'NAME': 'Miami',
    'LSAD': 'County',
    'CENSUSAREA': 575.661},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.609509, 38.738102],
      [-94.611602, 38.635384],
      [-94.611858, 38.620485],
      [-94.611908, 38.609272],
      [-94.611887, 38.580139],
      [-94.611902, 38.58011],
      [-94.612176, 38.576546],
      [-94.612157, 38.549817],
      [-94.612272, 38.547917],
      [-94.612644, 38.491644],
      [-94.612726, 38.484367],
      [-94.612696, 38.483154],
      [-94.612865, 38.477602],
      [-94.612866, 38.477571],
      [-94.613365, 38.403422],
      [-94.613265, 38.392426],
      [-94.613275, 38.388718],
      [-95.065831, 38.389945],
      [-95.056412, 38.738587],
      [-94.609509, 38.738102]]]},
   'id': '20121'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20123',
    'STATE': '20',
    'COUNTY': '123',
    'NAME': 'Mitchell',
    'LSAD': 'County',
    'CENSUSAREA': 701.792},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.929097, 39.306397],
      [-97.931614, 39.277094],
      [-97.929746, 39.219273],
      [-98.490149, 39.21978],
      [-98.487384, 39.567492],
      [-97.931844, 39.566921],
      [-97.928462, 39.566915],
      [-97.929097, 39.306397]]]},
   'id': '20123'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20125',
    'STATE': '20',
    'COUNTY': '125',
    'NAME': 'Montgomery',
    'LSAD': 'County',
    'CENSUSAREA': 643.527},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.522415, 36.999281],
      [-95.534401, 36.999332],
      [-95.573598, 36.99931],
      [-95.61214, 36.999321],
      [-95.615934, 36.999365],
      [-95.62435, 36.99936],
      [-95.630079, 36.99932],
      [-95.664301, 36.999322],
      [-95.686452, 36.999349],
      [-95.696659, 36.999215],
      [-95.71038, 36.999371],
      [-95.714887, 36.999279],
      [-95.718054, 36.999255],
      [-95.741908, 36.999244],
      [-95.759905, 36.999271],
      [-95.768719, 36.999205],
      [-95.786762, 36.99931],
      [-95.80798, 36.999124],
      [-95.866899, 36.999261],
      [-95.873944, 36.9993],
      [-95.875257, 36.999302],
      [-95.877151, 36.999304],
      [-95.91018, 36.999336],
      [-95.928122, 36.999245],
      [-95.936992, 36.999268],
      [-95.96427, 36.999094],
      [-95.964399, 37.299232],
      [-95.964666, 37.386656],
      [-95.961605, 37.386636],
      [-95.52556, 37.383979],
      [-95.52113, 37.38399],
      [-95.517976, 37.266376],
      [-95.522415, 36.999281]]]},
   'id': '20125'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20127',
    'STATE': '20',
    'COUNTY': '127',
    'NAME': 'Morris',
    'LSAD': 'County',
    'CENSUSAREA': 695.279},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.501556, 38.869704],
      [-96.501397, 38.826188],
      [-96.390398, 38.825858],
      [-96.352613, 38.739021],
      [-96.35378, 38.521657],
      [-96.81783, 38.522396],
      [-96.819723, 38.522464],
      [-96.929969, 38.522412],
      [-96.930286, 38.609362],
      [-96.927234, 38.81216],
      [-96.890245, 38.870067],
      [-96.501556, 38.869704]]]},
   'id': '20127'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20129',
    'STATE': '20',
    'COUNTY': '129',
    'NAME': 'Morton',
    'LSAD': 'County',
    'CENSUSAREA': 729.731},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.55526, 36.995414],
      [-101.600396, 36.995153],
      [-101.601593, 36.995095],
      [-101.90244, 36.993702],
      [-102.000447, 36.993249],
      [-102.000447, 36.993272],
      [-102.028204, 36.993125],
      [-102.028207, 36.993125],
      [-102.04224, 36.993083],
      [-102.041952, 37.024742],
      [-102.04195, 37.030805],
      [-102.041921, 37.032178],
      [-102.041749, 37.034397],
      [-102.04192, 37.035083],
      [-102.041983, 37.106551],
      [-102.041809, 37.111973],
      [-102.042092, 37.125021],
      [-102.042135, 37.125021],
      [-102.042002, 37.141744],
      [-102.041963, 37.258164],
      [-102.041664, 37.29765],
      [-102.041817, 37.30949],
      [-102.041974, 37.352613],
      [-102.042089, 37.352819],
      [-102.041826, 37.389191],
      [-101.556606, 37.388485],
      [-101.55526, 36.995414]]]},
   'id': '20129'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20131',
    'STATE': '20',
    'COUNTY': '131',
    'NAME': 'Nemaha',
    'LSAD': 'County',
    'CENSUSAREA': 717.427},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.239208, 40.000691],
      [-96.239172, 40.000691],
      [-96.223839, 40.000729],
      [-96.220171, 40.00072],
      [-96.154365, 40.000495],
      [-96.154246, 40.00045],
      [-96.147167, 40.000479],
      [-96.125937, 40.000432],
      [-96.125788, 40.000467],
      [-96.089781, 40.000519],
      [-96.081395, 40.000603],
      [-96.051691, 40.000727],
      [-96.02409, 40.000719],
      [-96.01068, 40.000638],
      [-96.010678, 40.000638],
      [-95.958139, 40.000521],
      [-95.882524, 40.00047],
      [-95.788111, 40.000452],
      [-95.788315, 39.883502],
      [-95.788941, 39.653001],
      [-95.789101, 39.565916],
      [-96.035952, 39.5661],
      [-96.037537, 39.566159],
      [-96.238969, 39.56622],
      [-96.239583, 39.827119],
      [-96.239208, 40.000691]]]},
   'id': '20131'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20133',
    'STATE': '20',
    'COUNTY': '133',
    'NAME': 'Neosho',
    'LSAD': 'County',
    'CENSUSAREA': 571.472},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.088012, 37.674519],
      [-95.088189, 37.383837],
      [-95.52113, 37.38399],
      [-95.52556, 37.383979],
      [-95.525499, 37.732759],
      [-95.088082, 37.732476],
      [-95.088012, 37.674519]]]},
   'id': '20133'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20135',
    'STATE': '20',
    'COUNTY': '135',
    'NAME': 'Ness',
    'LSAD': 'County',
    'CENSUSAREA': 1074.75},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.584207, 38.262179],
      [-100.227137, 38.262237],
      [-100.244393, 38.26229],
      [-100.2472, 38.698165],
      [-100.153823, 38.697341],
      [-99.598323, 38.696514],
      [-99.585087, 38.696537],
      [-99.584794, 38.349386],
      [-99.584207, 38.262179]]]},
   'id': '20135'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20137',
    'STATE': '20',
    'COUNTY': '137',
    'NAME': 'Norton',
    'LSAD': 'County',
    'CENSUSAREA': 878.134},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.177795, 40.001593],
      [-99.990926, 40.001503],
      [-99.986611, 40.00155],
      [-99.948167, 40.001813],
      [-99.944417, 40.001584],
      [-99.930433, 40.001516],
      [-99.906658, 40.001512],
      [-99.813401, 40.0014],
      [-99.77564, 40.001647],
      [-99.772121, 40.001804],
      [-99.764214, 40.001551],
      [-99.756835, 40.001342],
      [-99.746628, 40.00182],
      [-99.731959, 40.001827],
      [-99.719639, 40.001808],
      [-99.628346, 40.001866],
      [-99.628255, 40.001866],
      [-99.62598, 40.001865],
      [-99.625324, 40.001866],
      [-99.627953, 39.567437],
      [-100.161667, 39.567277],
      [-100.180351, 39.56689],
      [-100.178276, 39.998801],
      [-100.177795, 40.001593]]]},
   'id': '20137'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20139',
    'STATE': '20',
    'COUNTY': '139',
    'NAME': 'Osage',
    'LSAD': 'County',
    'CENSUSAREA': 705.518},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.508267, 38.433933],
      [-95.950282, 38.434105],
      [-95.945924, 38.739112],
      [-95.946587, 38.869973],
      [-95.500724, 38.869815],
      [-95.501038, 38.739721],
      [-95.500738, 38.738808],
      [-95.508267, 38.433933]]]},
   'id': '20139'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20141',
    'STATE': '20',
    'COUNTY': '141',
    'NAME': 'Osborne',
    'LSAD': 'County',
    'CENSUSAREA': 892.504},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.0375, 39.133121],
      [-99.047687, 39.133014],
      [-99.044398, 39.568035],
      [-98.505266, 39.567603],
      [-98.503592, 39.567515],
      [-98.487384, 39.567492],
      [-98.490149, 39.21978],
      [-98.490161, 39.218033],
      [-98.490063, 39.215379],
      [-98.489864, 39.21465],
      [-98.489893, 39.213515],
      [-98.490011, 39.213048],
      [-98.489997, 39.132697],
      [-99.0375, 39.133121]]]},
   'id': '20141'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20143',
    'STATE': '20',
    'COUNTY': '143',
    'NAME': 'Ottawa',
    'LSAD': 'County',
    'CENSUSAREA': 720.733},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.929097, 39.306397],
      [-97.926096, 39.306517],
      [-97.369839, 39.306011],
      [-97.371154, 39.131961],
      [-97.371614, 38.957852],
      [-97.92856, 38.958395],
      [-97.929746, 39.219273],
      [-97.931614, 39.277094],
      [-97.929097, 39.306397]]]},
   'id': '20143'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20145',
    'STATE': '20',
    'COUNTY': '145',
    'NAME': 'Pawnee',
    'LSAD': 'County',
    'CENSUSAREA': 754.263},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.912583, 38.261088],
      [-98.913136, 38.000451],
      [-99.022136, 38.000236],
      [-99.350289, 38.000745],
      [-99.350359, 38.087594],
      [-99.569533, 38.087372],
      [-99.570543, 38.261957],
      [-99.584207, 38.262179],
      [-99.584794, 38.349386],
      [-99.032408, 38.348334],
      [-99.032309, 38.261227],
      [-98.912583, 38.261088]]]},
   'id': '20145'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20147',
    'STATE': '20',
    'COUNTY': '147',
    'NAME': 'Phillips',
    'LSAD': 'County',
    'CENSUSAREA': 885.877},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.625324, 40.001866],
      [-99.501792, 40.002026],
      [-99.498999, 40.001957],
      [-99.49766, 40.001912],
      [-99.493465, 40.001937],
      [-99.480728, 40.001942],
      [-99.412645, 40.001868],
      [-99.403389, 40.001969],
      [-99.290703, 40.001949],
      [-99.286656, 40.002017],
      [-99.282967, 40.001879],
      [-99.254012, 40.002074],
      [-99.25037, 40.001957],
      [-99.216376, 40.002016],
      [-99.197592, 40.002033],
      [-99.188905, 40.002023],
      [-99.186962, 40.001977],
      [-99.179133, 40.001977],
      [-99.178965, 40.001977],
      [-99.169816, 40.001925],
      [-99.123033, 40.002165],
      [-99.11351, 40.002193],
      [-99.085597, 40.002133],
      [-99.067022, 40.00217],
      [-99.066203, 39.568093],
      [-99.602255, 39.567328],
      [-99.627953, 39.567437],
      [-99.625324, 40.001866]]]},
   'id': '20147'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20149',
    'STATE': '20',
    'COUNTY': '149',
    'NAME': 'Pottawatomie',
    'LSAD': 'County',
    'CENSUSAREA': 841.022},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.238969, 39.56622],
      [-96.037537, 39.566159],
      [-96.035952, 39.5661],
      [-96.035573, 39.21652],
      [-96.03906, 39.126527],
      [-96.083557, 39.193504],
      [-96.233671, 39.212279],
      [-96.331405, 39.158884],
      [-96.388884, 39.172724],
      [-96.554012, 39.178532],
      [-96.518329, 39.203877],
      [-96.638605, 39.292827],
      [-96.726865, 39.404012],
      [-96.581764, 39.566333],
      [-96.238969, 39.56622]]]},
   'id': '20149'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20151',
    'STATE': '20',
    'COUNTY': '151',
    'NAME': 'Pratt',
    'LSAD': 'County',
    'CENSUSAREA': 735.045},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.472257, 37.824497],
      [-98.464899, 37.824512],
      [-98.464804, 37.732675],
      [-98.464663, 37.471013],
      [-99.012598, 37.470421],
      [-99.01355, 37.73297],
      [-99.013318, 37.825336],
      [-98.472257, 37.824497]]]},
   'id': '20151'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20153',
    'STATE': '20',
    'COUNTY': '153',
    'NAME': 'Rawlins',
    'LSAD': 'County',
    'CENSUSAREA': 1069.416},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.75883, 40.002302],
      [-100.752183, 40.002128],
      [-100.738826, 40.002228],
      [-100.740873, 39.568043],
      [-101.389068, 39.568369],
      [-101.413913, 39.568361],
      [-101.41124, 39.999997],
      [-101.411043, 40.002365],
      [-101.409953, 40.002354],
      [-101.374326, 40.002521],
      [-101.342859, 40.00258],
      [-101.325514, 40.002687],
      [-101.324036, 40.002696],
      [-101.293991, 40.002559],
      [-101.286555, 40.002559],
      [-101.248673, 40.002543],
      [-101.215033, 40.002555],
      [-101.192219, 40.002491],
      [-101.178805, 40.002468],
      [-101.168704, 40.002547],
      [-101.130907, 40.002427],
      [-101.060317, 40.002307],
      [-101.027686, 40.002256],
      [-100.937427, 40.002145],
      [-100.75883, 40.002302]]]},
   'id': '20153'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20155',
    'STATE': '20',
    'COUNTY': '155',
    'NAME': 'Reno',
    'LSAD': 'County',
    'CENSUSAREA': 1255.346},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.472257, 37.824497],
      [-98.472794, 38.172757],
      [-97.922136, 38.173713],
      [-97.701841, 38.173814],
      [-97.701969, 37.911325],
      [-97.698692, 37.735056],
      [-97.807823, 37.733855],
      [-98.464804, 37.732675],
      [-98.464899, 37.824512],
      [-98.472257, 37.824497]]]},
   'id': '20155'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20157',
    'STATE': '20',
    'COUNTY': '157',
    'NAME': 'Republic',
    'LSAD': 'County',
    'CENSUSAREA': 717.371},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.821496, 40.002002],
      [-97.819426, 40.001958],
      [-97.777155, 40.002167],
      [-97.770776, 40.001977],
      [-97.769204, 40.001995],
      [-97.767746, 40.001994],
      [-97.515308, 40.001901],
      [-97.511381, 40.001899],
      [-97.510264, 40.001835],
      [-97.463285, 40.002047],
      [-97.444662, 40.001958],
      [-97.425443, 40.002048],
      [-97.417826, 40.002024],
      [-97.415833, 40.002001],
      [-97.369199, 40.00206],
      [-97.36867, 39.654043],
      [-97.931482, 39.653767],
      [-97.931826, 40.00205],
      [-97.931811, 40.00205],
      [-97.876261, 40.002102],
      [-97.85745, 40.002065],
      [-97.838379, 40.00191],
      [-97.821598, 40.002004],
      [-97.821496, 40.002002]]]},
   'id': '20157'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20159',
    'STATE': '20',
    'COUNTY': '159',
    'NAME': 'Rice',
    'LSAD': 'County',
    'CENSUSAREA': 726.237},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.480377, 38.521841],
      [-97.924269, 38.522755],
      [-97.922136, 38.173713],
      [-98.472794, 38.172757],
      [-98.479841, 38.26079],
      [-98.480377, 38.521841]]]},
   'id': '20159'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20161',
    'STATE': '20',
    'COUNTY': '161',
    'NAME': 'Riley',
    'LSAD': 'County',
    'CENSUSAREA': 609.771},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.755786, 39.088006],
      [-96.851111, 39.088386],
      [-96.850991, 39.101307],
      [-96.849879, 39.219012],
      [-96.961387, 39.220073],
      [-96.958859, 39.5664],
      [-96.806544, 39.566423],
      [-96.581764, 39.566333],
      [-96.726865, 39.404012],
      [-96.638605, 39.292827],
      [-96.518329, 39.203877],
      [-96.554012, 39.178532],
      [-96.388884, 39.172724],
      [-96.390796, 39.043257],
      [-96.501174, 39.043666],
      [-96.501181, 39.072782],
      [-96.755786, 39.088006]]]},
   'id': '20161'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20163',
    'STATE': '20',
    'COUNTY': '163',
    'NAME': 'Rooks',
    'LSAD': 'County',
    'CENSUSAREA': 890.533},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.591776, 39.132357],
      [-99.593688, 39.13244],
      [-99.605187, 39.132481],
      [-99.602255, 39.567328],
      [-99.066203, 39.568093],
      [-99.044398, 39.568035],
      [-99.047687, 39.133014],
      [-99.591776, 39.132357]]]},
   'id': '20163'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20165',
    'STATE': '20',
    'COUNTY': '165',
    'NAME': 'Rush',
    'LSAD': 'County',
    'CENSUSAREA': 717.763},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.585087, 38.696537],
      [-99.042626, 38.696807],
      [-99.032971, 38.696759],
      [-99.032408, 38.348334],
      [-99.584794, 38.349386],
      [-99.585087, 38.696537]]]},
   'id': '20165'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20167',
    'STATE': '20',
    'COUNTY': '167',
    'NAME': 'Russell',
    'LSAD': 'County',
    'CENSUSAREA': 886.26},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.032971, 38.696759],
      [-99.042626, 38.696807],
      [-99.0375, 39.133121],
      [-98.489997, 39.132697],
      [-98.483748, 39.132671],
      [-98.484861, 38.870791],
      [-98.486108, 38.696878],
      [-99.032971, 38.696759]]]},
   'id': '20167'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20169',
    'STATE': '20',
    'COUNTY': '169',
    'NAME': 'Saline',
    'LSAD': 'County',
    'CENSUSAREA': 720.225},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.928595, 38.871102],
      [-97.928967, 38.882176],
      [-97.928702, 38.886208],
      [-97.92856, 38.958395],
      [-97.371614, 38.957852],
      [-97.371911, 38.609353],
      [-97.924795, 38.60988],
      [-97.928595, 38.871102]]]},
   'id': '20169'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20171',
    'STATE': '20',
    'COUNTY': '171',
    'NAME': 'Scott',
    'LSAD': 'County',
    'CENSUSAREA': 717.544},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.125438, 38.264509],
      [-101.128379, 38.700603],
      [-100.818698, 38.699861],
      [-100.688006, 38.700021],
      [-100.684637, 38.271122],
      [-100.687836, 38.26415],
      [-101.103268, 38.264557],
      [-101.125438, 38.264509]]]},
   'id': '20171'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20173',
    'STATE': '20',
    'COUNTY': '173',
    'NAME': 'Sedgwick',
    'LSAD': 'County',
    'CENSUSAREA': 997.512},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.8076, 37.474184],
      [-97.807823, 37.733855],
      [-97.698692, 37.735056],
      [-97.701969, 37.911325],
      [-97.152476, 37.912733],
      [-97.153331, 37.475544],
      [-97.8076, 37.474184]]]},
   'id': '20173'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20175',
    'STATE': '20',
    'COUNTY': '175',
    'NAME': 'Seward',
    'LSAD': 'County',
    'CENSUSAREA': 639.497},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.633327, 36.999936],
      [-100.675552, 36.999688],
      [-100.756894, 36.999357],
      [-100.765484, 36.999177],
      [-100.806116, 36.999091],
      [-100.814277, 36.999085],
      [-100.855634, 36.998626],
      [-100.89166, 36.998604],
      [-100.904274, 36.998745],
      [-100.904588, 36.998561],
      [-100.945469, 36.998153],
      [-100.945566, 36.998152],
      [-100.996502, 36.998044],
      [-101.012641, 36.998176],
      [-101.053589, 36.997967],
      [-101.066742, 36.997921],
      [-101.066457, 36.998493],
      [-101.067904, 37.387779],
      [-100.652728, 37.387627],
      [-100.633831, 37.387577],
      [-100.633323, 36.999936],
      [-100.633327, 36.999936]]]},
   'id': '20175'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20177',
    'STATE': '20',
    'COUNTY': '177',
    'NAME': 'Shawnee',
    'LSAD': 'County',
    'CENSUSAREA': 544.016},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.500254, 39.056656],
      [-95.500724, 38.869815],
      [-95.946587, 38.869973],
      [-95.946754, 39.098685],
      [-96.03906, 39.126527],
      [-96.035573, 39.21652],
      [-95.589472, 39.216081],
      [-95.596759, 39.064672],
      [-95.500254, 39.056656]]]},
   'id': '20177'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20179',
    'STATE': '20',
    'COUNTY': '179',
    'NAME': 'Sheridan',
    'LSAD': 'County',
    'CENSUSAREA': 895.957},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.720213, 39.568034],
      [-100.180351, 39.56689],
      [-100.161667, 39.567277],
      [-100.1642, 39.132071],
      [-100.721296, 39.133381],
      [-100.720213, 39.568034]]]},
   'id': '20179'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20181',
    'STATE': '20',
    'COUNTY': '181',
    'NAME': 'Sherman',
    'LSAD': 'County',
    'CENSUSAREA': 1056.066},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.389068, 39.568369],
      [-101.391717, 39.135117],
      [-101.478195, 39.134761],
      [-102.047189, 39.133147],
      [-102.04725, 39.13702],
      [-102.048449, 39.303138],
      [-102.04896, 39.373712],
      [-102.049167, 39.403597],
      [-102.04937, 39.41821],
      [-102.049369, 39.423333],
      [-102.049679, 39.506183],
      [-102.049673, 39.536691],
      [-102.049554, 39.538932],
      [-102.049764, 39.56818],
      [-101.413913, 39.568361],
      [-101.389068, 39.568369]]]},
   'id': '20181'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20183',
    'STATE': '20',
    'COUNTY': '183',
    'NAME': 'Smith',
    'LSAD': 'County',
    'CENSUSAREA': 895.465},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.726373, 40.002222],
      [-98.726295, 40.002222],
      [-98.710404, 40.00218],
      [-98.693096, 40.002373],
      [-98.691443, 40.002505],
      [-98.690287, 40.002548],
      [-98.672819, 40.002364],
      [-98.669724, 40.00241],
      [-98.653833, 40.002269],
      [-98.652494, 40.002245],
      [-98.64071, 40.002493],
      [-98.613755, 40.0024],
      [-98.593342, 40.002476],
      [-98.575219, 40.00248],
      [-98.560578, 40.002274],
      [-98.543186, 40.002285],
      [-98.523053, 40.002336],
      [-98.504455, 40.002329],
      [-98.505152, 39.569754],
      [-98.505266, 39.567603],
      [-99.044398, 39.568035],
      [-99.066203, 39.568093],
      [-99.067022, 40.00217],
      [-99.020338, 40.002264],
      [-99.018701, 40.002333],
      [-98.992135, 40.002192],
      [-98.972287, 40.002245],
      [-98.971721, 40.002268],
      [-98.961009, 40.002317],
      [-98.960919, 40.002271],
      [-98.934792, 40.002205],
      [-98.834456, 40.002363],
      [-98.82059, 40.002319],
      [-98.777203, 40.002359],
      [-98.774941, 40.002336],
      [-98.726373, 40.002222]]]},
   'id': '20183'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20185',
    'STATE': '20',
    'COUNTY': '185',
    'NAME': 'Stafford',
    'LSAD': 'County',
    'CENSUSAREA': 792.046},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-98.472257, 37.824497],
      [-99.013318, 37.825336],
      [-99.022627, 37.825358],
      [-99.022136, 38.000236],
      [-98.913136, 38.000451],
      [-98.912583, 38.261088],
      [-98.479841, 38.26079],
      [-98.472794, 38.172757],
      [-98.472257, 37.824497]]]},
   'id': '20185'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20187',
    'STATE': '20',
    'COUNTY': '187',
    'NAME': 'Stanton',
    'LSAD': 'County',
    'CENSUSAREA': 680.345},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-102.04199, 37.738541],
      [-101.527063, 37.736314],
      [-101.52581, 37.388392],
      [-101.54368, 37.388384],
      [-101.543876, 37.388457],
      [-101.556606, 37.388485],
      [-102.041826, 37.389191],
      [-102.041676, 37.409898],
      [-102.041669, 37.43474],
      [-102.041755, 37.434855],
      [-102.041801, 37.469488],
      [-102.041786, 37.506066],
      [-102.042016, 37.535261],
      [-102.041899, 37.541186],
      [-102.041894, 37.557977],
      [-102.041618, 37.607868],
      [-102.041585, 37.644282],
      [-102.041582, 37.654495],
      [-102.041694, 37.665681],
      [-102.041574, 37.680436],
      [-102.041876, 37.723875],
      [-102.04199, 37.738541]]]},
   'id': '20187'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20189',
    'STATE': '20',
    'COUNTY': '189',
    'NAME': 'Stevens',
    'LSAD': 'County',
    'CENSUSAREA': 727.293},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.556606, 37.388485],
      [-101.543876, 37.388457],
      [-101.54368, 37.388384],
      [-101.52581, 37.388392],
      [-101.089653, 37.387721],
      [-101.067904, 37.387779],
      [-101.066457, 36.998493],
      [-101.066742, 36.997921],
      [-101.211486, 36.997124],
      [-101.212909, 36.997044],
      [-101.357797, 36.996271],
      [-101.359674, 36.996232],
      [-101.37818, 36.996164],
      [-101.413868, 36.996008],
      [-101.415005, 36.995966],
      [-101.485326, 36.995611],
      [-101.519066, 36.995546],
      [-101.555239, 36.995414],
      [-101.55526, 36.995414],
      [-101.556606, 37.388485]]]},
   'id': '20189'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20191',
    'STATE': '20',
    'COUNTY': '191',
    'NAME': 'Sumner',
    'LSAD': 'County',
    'CENSUSAREA': 1181.941},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.147721, 36.999111],
      [-97.372421, 36.998861],
      [-97.384925, 36.998843],
      [-97.46228, 36.998685],
      [-97.462346, 36.998685],
      [-97.472861, 36.998721],
      [-97.527292, 36.99875],
      [-97.5459, 36.998709],
      [-97.546498, 36.998747],
      [-97.564536, 36.998711],
      [-97.606549, 36.998682],
      [-97.637137, 36.99909],
      [-97.650466, 36.999004],
      [-97.697104, 36.998826],
      [-97.768704, 36.99875],
      [-97.783432, 36.998961],
      [-97.783489, 36.998847],
      [-97.802298, 36.998713],
      [-97.802313, 36.998713],
      [-97.804566, 37.386298],
      [-97.807057, 37.386293],
      [-97.807576, 37.473888],
      [-97.8076, 37.474184],
      [-97.153331, 37.475544],
      [-97.147721, 36.999111]]]},
   'id': '20191'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20193',
    'STATE': '20',
    'COUNTY': '193',
    'NAME': 'Thomas',
    'LSAD': 'County',
    'CENSUSAREA': 1074.687},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-100.720213, 39.568034],
      [-100.721296, 39.133381],
      [-100.775177, 39.133265],
      [-100.775311, 39.133375],
      [-100.811858, 39.13336],
      [-101.391717, 39.135117],
      [-101.389068, 39.568369],
      [-100.740873, 39.568043],
      [-100.720213, 39.568034]]]},
   'id': '20193'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20195',
    'STATE': '20',
    'COUNTY': '195',
    'NAME': 'Trego',
    'LSAD': 'County',
    'CENSUSAREA': 889.478},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-99.598323, 38.696514],
      [-100.153823, 38.697341],
      [-100.14794, 39.132179],
      [-99.605187, 39.132481],
      [-99.593688, 39.13244],
      [-99.591776, 39.132357],
      [-99.598323, 38.696514]]]},
   'id': '20195'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20197',
    'STATE': '20',
    'COUNTY': '197',
    'NAME': 'Wabaunsee',
    'LSAD': 'County',
    'CENSUSAREA': 794.302},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-96.352613, 38.739021],
      [-96.390398, 38.825858],
      [-96.501397, 38.826188],
      [-96.501556, 38.869704],
      [-96.501174, 39.043666],
      [-96.390796, 39.043257],
      [-96.388884, 39.172724],
      [-96.331405, 39.158884],
      [-96.233671, 39.212279],
      [-96.083557, 39.193504],
      [-96.03906, 39.126527],
      [-95.946754, 39.098685],
      [-95.946587, 38.869973],
      [-95.945924, 38.739112],
      [-96.352613, 38.739021]]]},
   'id': '20197'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20199',
    'STATE': '20',
    'COUNTY': '199',
    'NAME': 'Wallace',
    'LSAD': 'County',
    'CENSUSAREA': 913.652},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.567094, 38.699669],
      [-102.045212, 38.697567],
      [-102.045375, 38.754339],
      [-102.045287, 38.755528],
      [-102.045371, 38.770064],
      [-102.045448, 38.783453],
      [-102.045334, 38.799463],
      [-102.045388, 38.813392],
      [-102.046571, 39.047038],
      [-102.047134, 39.129701],
      [-102.047189, 39.133147],
      [-101.478195, 39.134761],
      [-101.484383, 38.700166],
      [-101.567094, 38.699669]]]},
   'id': '20199'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20201',
    'STATE': '20',
    'COUNTY': '201',
    'NAME': 'Washington',
    'LSAD': 'County',
    'CENSUSAREA': 894.756},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-97.369199, 40.00206],
      [-97.369199, 40.00206],
      [-97.369103, 40.00206],
      [-97.350896, 40.00193],
      [-97.350272, 40.001976],
      [-97.245169, 40.001513],
      [-97.24508, 40.001467],
      [-97.20231, 40.001442],
      [-97.20019, 40.001549],
      [-97.181775, 40.00155],
      [-97.142448, 40.001495],
      [-97.137866, 40.001814],
      [-97.049663, 40.001323],
      [-97.030803, 40.001342],
      [-97.009165, 40.001463],
      [-96.916407, 40.001506],
      [-96.916093, 40.001506],
      [-96.880459, 40.001448],
      [-96.878253, 40.001466],
      [-96.875057, 40.001448],
      [-96.873812, 40.00145],
      [-96.805768, 40.001371],
      [-96.806544, 39.566423],
      [-96.958859, 39.5664],
      [-97.368574, 39.567018],
      [-97.368635, 39.575926],
      [-97.368374, 39.577145],
      [-97.368653, 39.583833],
      [-97.36867, 39.654043],
      [-97.369199, 40.00206]]]},
   'id': '20201'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20203',
    'STATE': '20',
    'COUNTY': '203',
    'NAME': 'Wichita',
    'LSAD': 'County',
    'CENSUSAREA': 718.568},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-101.567094, 38.699669],
      [-101.484383, 38.700166],
      [-101.128379, 38.700603],
      [-101.125438, 38.264509],
      [-101.542312, 38.263207],
      [-101.560373, 38.263122],
      [-101.561294, 38.263179],
      [-101.567482, 38.263145],
      [-101.567094, 38.699669]]]},
   'id': '20203'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20205',
    'STATE': '20',
    'COUNTY': '205',
    'NAME': 'Wilson',
    'LSAD': 'County',
    'CENSUSAREA': 570.418},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.961605, 37.386636],
      [-95.961002, 37.603761],
      [-95.960876, 37.734304],
      [-95.525499, 37.732759],
      [-95.52556, 37.383979],
      [-95.961605, 37.386636]]]},
   'id': '20205'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20207',
    'STATE': '20',
    'COUNTY': '207',
    'NAME': 'Woodson',
    'LSAD': 'County',
    'CENSUSAREA': 497.82},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-95.960876, 37.734304],
      [-95.958554, 37.909245],
      [-95.959046, 38.040195],
      [-95.51897, 38.03823],
      [-95.525499, 37.732759],
      [-95.960876, 37.734304]]]},
   'id': '20207'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US20209',
    'STATE': '20',
    'COUNTY': '209',
    'NAME': 'Wyandotte',
    'LSAD': 'County',
    'CENSUSAREA': 151.6},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-94.607354, 39.113444],
      [-94.607234, 39.089604],
      [-94.607334, 39.081704],
      [-94.607234, 39.065704],
      [-94.607391, 39.044086],
      [-94.872442, 39.059088],
      [-94.908765, 38.991401],
      [-94.900191, 39.202911],
      [-94.793948, 39.201276],
      [-94.752338, 39.173203],
      [-94.736537, 39.169203],
      [-94.723637, 39.169003],
      [-94.714137, 39.170403],
      [-94.706723, 39.173801],
      [-94.601733, 39.159603],
      [-94.596033, 39.157703],
      [-94.591933, 39.155003],
      [-94.589933, 39.140403],
      [-94.607354, 39.113444]]]},
   'id': '20209'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US21001',
    'STATE': '21',
    'COUNTY': '001',
    'NAME': 'Adair',
    'LSAD': 'County',
    'CENSUSAREA': 405.283},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.165174, 37.310396],
      [-85.056898, 37.257041],
      [-85.043316, 37.186028],
      [-85.205831, 36.996862],
      [-85.232026, 36.925069],
      [-85.45183, 36.938138],
      [-85.526881, 37.10945],
      [-85.380258, 37.168314],
      [-85.352771, 37.192432],
      [-85.314663, 37.24074],
      [-85.165174, 37.310396]]]},
   'id': '21001'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US21003',
    'STATE': '21',
    'COUNTY': '003',
    'NAME': 'Allen',
    'LSAD': 'County',
    'CENSUSAREA': 344.338},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.976421, 36.6284],
      [-86.03277, 36.630367],
      [-86.033139, 36.630413],
      [-86.038366, 36.630804],
      [-86.080666, 36.63394],
      [-86.081944, 36.633848],
      [-86.197573, 36.639363],
      [-86.204859, 36.639741],
      [-86.205468, 36.639783],
      [-86.216183, 36.640527],
      [-86.21641, 36.640595],
      [-86.219081, 36.640824],
      [-86.222151, 36.640891],
      [-86.333051, 36.648778],
      [-86.411387, 36.65055],
      [-86.405769, 36.776187],
      [-86.16674, 36.934015],
      [-85.97691, 36.722722],
      [-85.976421, 36.6284]]]},
   'id': '21003'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US21005',
    'STATE': '21',
    'COUNTY': '005',
    'NAME': 'Anderson',
    'LSAD': 'County',
    'CENSUSAREA': 201.832},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-85.152797, 37.897661],
      [-85.167834, 37.971809],
      [-85.101646, 38.03727],
      [-85.023711, 38.129052],
      [-84.864908, 38.116926],
      [-84.796327, 37.970088],
      [-84.93778, 37.952826],
      [-85.030528, 37.891538],
      [-85.152797, 37.897661]]]},
   'id': '21005'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US21007',
    'STATE': '21',
    'COUNTY': '007',
    'NAME': 'Ballard',
    'LSAD': 'County',
    'CENSUSAREA': 246.659},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-89.100794, 36.944006],
      [-89.132685, 36.9822],
      [-89.166447, 37.003337],
      [-89.173595, 37.011409],
      [-89.178975, 37.020928],
      [-89.182509, 37.037275],
      [-89.181369, 37.046305],
      [-89.175725, 37.062069],
      [-89.171881, 37.068184],
      [-89.168087, 37.074218],
      [-89.086526, 37.165602],
      [-89.041263, 37.202881],
      [-89.000968, 37.224401],
      [-88.98326, 37.228685],
      [-88.966831, 37.229891],
      [-88.933399, 37.225007],
      [-88.815952, 36.9541],
      [-88.988811, 36.919491],
      [-89.100794, 36.944006]]]},
   'id': '21007'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US21009',
    'STATE': '21',
    'COUNTY': '009',
    'NAME': 'Barren',
    'LSAD': 'County',
    'CENSUSAREA': 487.541},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-86.113512, 37.061072],
      [-86.074267, 37.053285],
      [-86.056443, 37.167208],
      [-85.906336, 37.148377],
      [-85.744221, 37.169813],
      [-85.739255, 36.841476],
      [-85.97691, 36.722722],
      [-86.16674, 36.934015],
      [-86.113512, 37.061072]]]},
   'id': '21009'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US21011',
    'STATE': '21',
    'COUNTY': '011',
    'NAME': 'Bath',
    'LSAD': 'County',
    'CENSUSAREA': 278.792},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.709507, 38.009317],
      [-83.712187, 38.009693],
      [-83.715208, 38.004399],
      [-83.718497, 38.003397],
      [-83.722177, 38.006011],
      [-83.727146, 38.006999],
      [-83.727154, 38.008629],
      [-83.730982, 38.010524],
      [-83.733293, 38.007642],
      [-83.735911, 38.007057],
      [-83.737673, 38.009972],
      [-83.740512, 38.007149],
      [-83.744082, 38.006919],
      [-83.747451, 38.003967],
      [-83.744956, 38.001578],
      [-83.749591, 37.996733],
      [-83.751818, 37.997098],
      [-83.756983, 37.992618],
      [-83.75943, 37.998731],
      [-83.881353, 38.136517],
      [-83.977924, 38.192118],
      [-83.850355, 38.296258],
      [-83.848355, 38.296949],
      [-83.725393, 38.292584],
      [-83.646546, 38.170963],
      [-83.638854, 38.17827],
      [-83.635195, 38.187525],
      [-83.498846, 38.05062],
      [-83.58053, 38.011702],
      [-83.709507, 38.009317]]]},
   'id': '21011'},
  {'type': 'Feature',
   'properties': {'GEO_ID': '0500000US21013',
    'STATE': '21',
    'COUNTY': '013',
    'NAME': 'Bell',
    'LSAD': 'County',
    'CENSUSAREA': 359.0},
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-83.461013, 36.664916],
      [-83.498011, 36.670485],
      [-83.527212, 36.665984],
      [-83.649513, 36.616683],
      [-83.675413, 36.600814],
      [-83.677114, 36.596582],
      [-83.690714, 36.582581],
      [-83.930669, 36.588249],
      [-83.957274, 36.642204],
      [-83.877503, 36.687259],
      [-83.798248, 36.785197],
      [-83.581094, 36.904667],
      [-83.589521, 36.955786],
      [-83.530847, 36.943038],
      [-83.520687, 36.93755],
      [-83.509083, 36.938509],
      [-83.509482, 36.923375],
      [-83.494254, 36.919621],
      [-83.489423, 36.911302],
      [-83.50481, 36.903917],
      [-83.500388, 36.895504],
      [-83.489813, 36.895413],
      [-83.511729, 36.807362],
      [-83.461013, 36.664916]]]},
   'id': '21013'},
  ...]}
In [137]:
df_wide_geom.head()
Out[137]:
id GEO_ID STATE COUNTY NAME LSAD CENSUSAREA geometry County_St Total Number of Services ... Medicare Population Density Moran I score for ACS billing fraction County StateFIPS CountyFIPS_3 CountyName StateName CountyFIPS StateAbbr STATE_COUNTY
FIPS
01017 01017 0500000US01017 01 017 Chambers County 596.531 POLYGON ((-85.18413 32.87053, -85.12342 32.772... Chambers, AL 408.0 ... 14.230610 Non Significant Chambers 01 017 Chambers Alabama 01017 AL AL | CHAMBERS
01033 01033 0500000US01033 01 033 Colbert County 592.619 POLYGON ((-88.13999 34.58170, -88.13925 34.587... Colbert, AL 272.0 ... 22.681014 Non Significant Colbert 01 033 Colbert Alabama 01033 AL AL | COLBERT
01045 01045 0500000US01045 01 045 Dale County 561.150 POLYGON ((-85.41644 31.61947, -85.41743 31.314... Dale, AL 12.0 ... 17.700437 Non Significant Dale 01 045 Dale Alabama 01045 AL AL | DALE
01083 01083 0500000US01083 01 083 Limestone County 559.936 POLYGON ((-86.83631 34.99176, -86.82066 34.991... Limestone, AL 55.0 ... 29.157261 Non Significant Limestone 01 083 Limestone Alabama 01083 AL AL | LIMESTONE
05145 05145 0500000US05145 05 145 White County 1035.075 POLYGON ((-91.46511 35.08945, -91.58401 35.091... White, AR 1269.0 ... 15.224018 Non Significant White 05 145 White Arkansas 05145 AR AR | WHITE

5 rows × 87 columns

In [163]:
df_wide_geom = pd.merge(left=countiesgeo, right=df_wide, how="right", left_on='id', right_on='FIPS')
df_wide_simple_geom = pd.merge(left=countiesgeo, right=df_wide_simple, how="right", left_on='id', right_on='FIPS')
In [164]:
df_wide_geom = df_wide_geom.set_index("FIPS").sort_index()
df_wide_simple_geom = df_wide_simple_geom.set_index("FIPS").sort_index()
In [146]:
df_wide_geom.geometry.to_json()
Out[146]:
'{"type": "FeatureCollection", "features": [{"id": "01003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.598927, 30.997454], [-87.594111, 30.976335], [-87.601355, 30.936294], [-87.622203, 30.897508], [-87.634938, 30.865886], [-87.624137, 30.845713], [-87.532607, 30.743489], [-87.502926, 30.722369], [-87.497515, 30.720123], [-87.481225, 30.716508], [-87.449362, 30.698913], [-87.407118, 30.671796], [-87.396997, 30.65364], [-87.394219, 30.641699], [-87.394479, 30.625192], [-87.449921, 30.51469], [-87.449841, 30.514369], [-87.448332, 30.513063], [-87.430578, 30.491096], [-87.419177, 30.410198], [-87.427478, 30.408398], [-87.440678, 30.391498], [-87.451378, 30.367199], [-87.450962, 30.346262], [-87.450078, 30.3111], [-87.452378, 30.300201], [-87.518324, 30.280435], [-87.544533, 30.275659], [-87.558097, 30.274437], [-87.581362, 30.269257], [-87.656888, 30.249709], [-87.73553, 30.240679], [-87.80056, 30.229365], [-87.838462, 30.227185], [-87.926119, 30.230373], [-87.962253, 30.229522], [-87.999996, 30.225753], [-88.014572, 30.222366], [-88.028401, 30.221132], [-88.029272, 30.222714], [-88.023991, 30.23039], [-87.966847, 30.235618], [-87.948979, 30.256564], [-87.936041, 30.261469], [-87.918247, 30.253308], [-87.913762, 30.247837], [-87.90046, 30.241531], [-87.893201, 30.239237], [-87.879343, 30.23859], [-87.860085, 30.240289], [-87.817743, 30.254292], [-87.802087, 30.253054], [-87.78775, 30.254244], [-87.766626, 30.262353], [-87.755263, 30.277292], [-87.755516, 30.291217], [-87.772758, 30.311701], [-87.796717, 30.324198], [-87.809266, 30.332702], [-87.82988, 30.353809], [-87.837239, 30.369324], [-87.845132, 30.377446], [-87.853806, 30.378481], [-87.865017, 30.38345], [-87.906343, 30.40938], [-87.908908, 30.41424], [-87.914136, 30.446144], [-87.920031, 30.470645], [-87.924211, 30.4761], [-87.931902, 30.4811], [-87.933355, 30.487357], [-87.911141, 30.525848], [-87.905343, 30.537566], [-87.901711, 30.550879], [-87.904168, 30.565985], [-87.907891, 30.573114], [-87.911431, 30.576261], [-87.914956, 30.585893], [-87.91253, 30.615795], [-87.919346, 30.63606], [-87.93107, 30.652694], [-87.936717, 30.657432], [-87.955989, 30.658862], [-87.981196, 30.67509], [-88.008396, 30.684956], [-88.026319, 30.753358], [-87.944546, 30.827046], [-87.981261, 30.886895], [-87.941152, 31.048161], [-87.972869, 31.162694], [-87.943748, 31.161341], [-87.946588, 31.19293], [-87.913637, 31.187356], [-87.765152, 31.297346], [-87.61589, 31.244458], [-87.615431, 30.997361], [-87.598927, 30.997454]]]}, "bbox": [-88.029272, 30.221132, -87.394219, 31.297346]}, {"id": "01015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.145562, 33.679098], [-86.043993, 33.763595], [-86.066972, 33.839198], [-86.066439, 33.841094], [-86.065272, 33.842198], [-86.049072, 33.841598], [-86.048772, 33.852698], [-86.021271, 33.851498], [-86.021471, 33.866098], [-85.995169, 33.864897], [-85.99497, 33.879598], [-85.98637, 33.879198], [-85.98647, 33.893698], [-85.96917, 33.892898], [-85.96917, 33.914598], [-85.738975, 33.96846], [-85.529432, 33.95598], [-85.530094, 33.941423], [-85.532482, 33.889152], [-85.638049, 33.773339], [-85.638579, 33.648413], [-85.796054, 33.55622], [-85.794559, 33.585565], [-85.994935, 33.586475], [-86.050669, 33.67459], [-86.145562, 33.679098]]]}, "bbox": [-86.145562, 33.55622, -85.529432, 33.96846]}, {"id": "01017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.184131, 32.870525], [-85.123421, 32.772248], [-85.13204, 32.764211], [-85.136776, 32.746512], [-85.285043, 32.730731], [-85.593151, 32.72853], [-85.593177, 33.10734], [-85.232378, 33.108077], [-85.223261, 33.06258], [-85.221868, 33.055538], [-85.184131, 32.870525]]]}, "bbox": [-85.593177, 32.72853, -85.123421, 33.108077]}, {"id": "01031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.791402, 31.196349], [-86.193476, 31.192213], [-86.196365, 31.425431], [-86.193951, 31.440072], [-86.194784, 31.529949], [-86.14395, 31.537675], [-86.145895, 31.617741], [-85.789142, 31.617964], [-85.791402, 31.196349]]]}, "bbox": [-86.196365, 31.192213, -85.789142, 31.617964]}, {"id": "01033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.139988, 34.581703], [-88.139246, 34.587795], [-88.138719, 34.589215], [-88.118407, 34.724292], [-88.097888, 34.892202], [-87.973222, 34.88255], [-87.835833, 34.741239], [-87.524363, 34.832384], [-87.42651, 34.800022], [-87.416484, 34.767544], [-87.529667, 34.567081], [-88.139988, 34.581703]]]}, "bbox": [-88.139988, 34.567081, -87.416484, 34.892202]}, {"id": "01039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.388646, 30.994181], [-86.388647, 30.994181], [-86.391937, 30.994172], [-86.404912, 30.994049], [-86.454704, 30.993791], [-86.458319, 30.993998], [-86.512834, 30.9937], [-86.519938, 30.993245], [-86.563436, 30.995223], [-86.567586, 30.995109], [-86.664681, 30.994534], [-86.678383, 30.994537], [-86.688294, 30.995029], [-86.700282, 31.192217], [-86.667245, 31.369404], [-86.701554, 31.523946], [-86.690217, 31.523693], [-86.499213, 31.525331], [-86.39994, 31.527128], [-86.398536, 31.451325], [-86.280155, 31.52851], [-86.277031, 31.455602], [-86.193951, 31.440072], [-86.196365, 31.425431], [-86.193476, 31.192213], [-86.187246, 30.993992], [-86.289247, 30.993798], [-86.304596, 30.994029], [-86.364907, 30.994455], [-86.36927, 30.994477], [-86.374545, 30.994474], [-86.388646, 30.994181]]]}, "bbox": [-86.701554, 30.993245, -86.187246, 31.52851]}, {"id": "01045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.416437, 31.619466], [-85.417434, 31.314973], [-85.485854, 31.246096], [-85.659985, 31.270889], [-85.710866, 31.195179], [-85.791402, 31.196349], [-85.789142, 31.617964], [-85.749941, 31.617914], [-85.748251, 31.618048], [-85.416437, 31.619466]]]}, "bbox": [-85.791402, 31.195179, -85.416437, 31.619466]}, {"id": "01055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.843617, 34.200006], [-85.738975, 33.96846], [-85.96917, 33.914598], [-85.96917, 33.892898], [-85.98647, 33.893698], [-85.98637, 33.879198], [-85.99497, 33.879598], [-85.995169, 33.864897], [-86.021471, 33.866098], [-86.021271, 33.851498], [-86.048772, 33.852698], [-86.049072, 33.841598], [-86.065272, 33.842198], [-86.199164, 33.988918], [-86.325622, 33.940147], [-86.370152, 33.93977], [-86.332723, 33.986109], [-86.303516, 34.099073], [-86.206107, 34.17265], [-86.106086, 34.200756], [-85.843617, 34.200006]]]}, "bbox": [-86.370152, 33.841598, -85.738975, 34.200756]}, {"id": "01069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.002368, 31.000682], [-85.024108, 31.000681], [-85.027512, 31.00067], [-85.030107, 31.000653], [-85.031155, 31.000647], [-85.052088, 31.000585], [-85.054802, 31.000585], [-85.057534, 31.000585], [-85.145835, 31.000695], [-85.152085, 31.000888], [-85.152218, 31.000834], [-85.154452, 31.000835], [-85.488298, 30.997041], [-85.48576, 31.199886], [-85.710866, 31.195179], [-85.659985, 31.270889], [-85.485854, 31.246096], [-85.417434, 31.314973], [-85.179131, 31.307675], [-85.087651, 31.308677], [-85.101561, 31.283362], [-85.111871, 31.258388], [-85.107516, 31.186451], [-85.100207, 31.16549], [-85.092106, 31.160293], [-85.083582, 31.15963], [-85.076628, 31.156927], [-85.035615, 31.108192], [-85.029736, 31.096163], [-85.022121, 31.07548], [-84.999428, 31.013843], [-85.002368, 31.000682]]]}, "bbox": [-85.710866, 30.997041, -84.999428, 31.314973]}, {"id": "01071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.863935, 34.988379], [-85.828724, 34.988165], [-85.824411, 34.988142], [-85.605165, 34.984678], [-85.595191, 34.924331], [-85.595163, 34.924171], [-85.583145, 34.860371], [-85.785471, 34.624584], [-86.00384, 34.480031], [-86.057712, 34.475994], [-86.139846, 34.533296], [-86.148464, 34.599069], [-86.16753, 34.599264], [-86.172856, 34.599318], [-86.174103, 34.599336], [-86.175324, 34.599354], [-86.178649, 34.599392], [-86.179053, 34.599396], [-86.182976, 34.599438], [-86.18299, 34.599438], [-86.199778, 34.59962], [-86.218086, 34.599817], [-86.218962, 34.599827], [-86.218975, 34.599827], [-86.221192, 34.599851], [-86.224237, 34.599884], [-86.233777, 34.599987], [-86.235077, 34.600001], [-86.237028, 34.600023], [-86.245611, 34.600116], [-86.24568, 34.600116], [-86.249983, 34.6001], [-86.252434, 34.600125], [-86.254082, 34.600143], [-86.257783, 34.600122], [-86.266148, 34.600075], [-86.269123, 34.600059], [-86.275775, 34.600023], [-86.27814, 34.600009], [-86.279503, 34.600004], [-86.284617, 34.599974], [-86.300533, 34.599888], [-86.305591, 34.59986], [-86.311677, 34.599827], [-86.316026, 34.599802], [-86.316036, 34.599802], [-86.317146, 34.599796], [-86.318251, 34.59979], [-86.318265, 34.59979], [-86.326958, 34.599744], [-86.326906, 34.599573], [-86.326853, 34.599403], [-86.359034, 34.63261], [-86.311274, 34.991098], [-85.863935, 34.988379]]]}, "bbox": [-86.359034, 34.475994, -85.583145, 34.991098]}, {"id": "01073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.023586, 33.246422], [-87.026846, 33.246459], [-87.065738, 33.246907], [-87.065754, 33.275937], [-87.074634, 33.276018], [-87.074602, 33.279682], [-87.087546, 33.279666], [-87.087497, 33.290675], [-87.126756, 33.290844], [-87.127142, 33.306013], [-87.162007, 33.306587], [-87.162175, 33.321012], [-87.179638, 33.321112], [-87.179754, 33.32801], [-87.180006, 33.342979], [-87.194841, 33.343069], [-87.330816, 33.491501], [-87.266923, 33.512929], [-87.185794, 33.555882], [-87.17943, 33.613794], [-87.057757, 33.656363], [-87.005965, 33.787237], [-86.953664, 33.815297], [-86.759144, 33.840617], [-86.577799, 33.765316], [-86.542758, 33.765173], [-86.516783, 33.545896], [-86.60451, 33.467053], [-86.674418, 33.466521], [-86.830597, 33.332015], [-87.023586, 33.246422]]]}, "bbox": [-87.330816, 33.246422, -86.516783, 33.840617]}, {"id": "01077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.18245, 35.007712], [-87.984916, 35.006256], [-87.877969, 35.005468], [-87.877742, 35.005512], [-87.872626, 35.005571], [-87.853528, 35.005541], [-87.853411, 35.005576], [-87.851886, 35.005656], [-87.773586, 35.004946], [-87.767602, 35.004783], [-87.75889, 35.004711], [-87.709491, 35.004089], [-87.702321, 35.003945], [-87.700543, 35.003988], [-87.696834, 35.003852], [-87.671405, 35.003537], [-87.664123, 35.003523], [-87.606031, 35.003343], [-87.428613, 35.002795], [-87.421543, 35.002679], [-87.4174, 35.002669], [-87.391314, 35.002374], [-87.381071, 35.002118], [-87.359281, 35.001823], [-87.349251, 35.001662], [-87.299185, 35.000915], [-87.270014, 35.00039], [-87.230544, 34.999484], [-87.224053, 34.999327], [-87.216683, 34.999148], [-87.210759, 34.999024], [-87.214914, 34.816011], [-87.260676, 34.758626], [-87.42651, 34.800022], [-87.524363, 34.832384], [-87.835833, 34.741239], [-87.973222, 34.88255], [-88.097888, 34.892202], [-88.125038, 34.902227], [-88.200064, 34.995634], [-88.18245, 35.007712]]]}, "bbox": [-88.200064, 34.741239, -87.210759, 35.007712]}, {"id": "01081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.080288, 32.603577], [-85.079935, 32.602889], [-85.069583, 32.58393], [-85.044606, 32.559499], [-85.022509, 32.542923], [-85.0071, 32.523868], [-85.001324, 32.512973], [-85.001052, 32.510477], [-85.00103, 32.510157], [-85.059294, 32.472909], [-85.333843, 32.468639], [-85.330143, 32.410842], [-85.434045, 32.40984], [-85.438575, 32.49709], [-85.489348, 32.496937], [-85.695854, 32.595933], [-85.696755, 32.697429], [-85.593151, 32.72853], [-85.285043, 32.730731], [-85.136776, 32.746512], [-85.137136, 32.745168], [-85.114737, 32.685634], [-85.10479, 32.642542], [-85.082454, 32.607022], [-85.080288, 32.603577]]]}, "bbox": [-85.696755, 32.40984, -85.00103, 32.746512]}, {"id": "01083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.836306, 34.991764], [-86.820657, 34.991764], [-86.783648, 34.991925], [-86.783628, 34.991925], [-86.790056, 34.55079], [-86.942899, 34.598053], [-87.105073, 34.686037], [-87.260676, 34.758626], [-87.214914, 34.816011], [-87.210759, 34.999024], [-87.011174, 34.995162], [-87.000007, 34.995121], [-86.974412, 34.994513], [-86.972613, 34.99461], [-86.970236, 34.994546], [-86.96712, 34.9944], [-86.862147, 34.991956], [-86.849794, 34.991924], [-86.846466, 34.99186], [-86.83637, 34.991764], [-86.836306, 34.991764]]]}, "bbox": [-87.260676, 34.55079, -86.783628, 34.999024]}, {"id": "01089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.783628, 34.991925], [-86.677616, 34.99207], [-86.676726, 34.99207], [-86.67436, 34.992001], [-86.670853, 34.992], [-86.65961, 34.991792], [-86.641212, 34.99174], [-86.600039, 34.99124], [-86.588962, 34.991197], [-86.571217, 34.991011], [-86.555864, 34.990971], [-86.528485, 34.990677], [-86.467798, 34.990692], [-86.433927, 34.991085], [-86.397203, 34.99166], [-86.318761, 34.991147], [-86.311274, 34.991098], [-86.359034, 34.63261], [-86.326853, 34.599403], [-86.338181, 34.510103], [-86.423914, 34.479581], [-86.533445, 34.502795], [-86.550166, 34.545963], [-86.689353, 34.586425], [-86.790056, 34.55079], [-86.783628, 34.991925]]]}, "bbox": [-86.790056, 34.479581, -86.311274, 34.99207]}, {"id": "01095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.550166, 34.545963], [-86.533445, 34.502795], [-86.423914, 34.479581], [-86.338181, 34.510103], [-86.326853, 34.599403], [-86.326906, 34.599573], [-86.326958, 34.599744], [-86.318265, 34.59979], [-86.318251, 34.59979], [-86.317146, 34.599796], [-86.316036, 34.599802], [-86.316026, 34.599802], [-86.311677, 34.599827], [-86.305591, 34.59986], [-86.300533, 34.599888], [-86.284617, 34.599974], [-86.279503, 34.600004], [-86.27814, 34.600009], [-86.275775, 34.600023], [-86.269123, 34.600059], [-86.266148, 34.600075], [-86.257783, 34.600122], [-86.254082, 34.600143], [-86.252434, 34.600125], [-86.249983, 34.6001], [-86.24568, 34.600116], [-86.245611, 34.600116], [-86.237028, 34.600023], [-86.235077, 34.600001], [-86.233777, 34.599987], [-86.224237, 34.599884], [-86.221192, 34.599851], [-86.218975, 34.599827], [-86.218962, 34.599827], [-86.218086, 34.599817], [-86.199778, 34.59962], [-86.18299, 34.599438], [-86.182976, 34.599438], [-86.179053, 34.599396], [-86.178649, 34.599392], [-86.175324, 34.599354], [-86.174103, 34.599336], [-86.172856, 34.599318], [-86.16753, 34.599264], [-86.148464, 34.599069], [-86.139846, 34.533296], [-86.057712, 34.475994], [-86.110362, 34.427797], [-86.106086, 34.200756], [-86.206107, 34.17265], [-86.303516, 34.099073], [-86.45302, 34.259317], [-86.581936, 34.304694], [-86.550166, 34.545963]]]}, "bbox": [-86.581936, 34.099073, -86.057712, 34.600143]}, {"id": "01097", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.124658, 30.28364], [-88.086812, 30.259864], [-88.074854, 30.249119], [-88.075856, 30.246139], [-88.078786, 30.245039], [-88.109432, 30.242097], [-88.120151, 30.246149], [-88.137083, 30.249179], [-88.166569, 30.249255], [-88.20854, 30.244807], [-88.280571, 30.230274], [-88.304773, 30.228031], [-88.313323, 30.230024], [-88.310025, 30.233233], [-88.299705, 30.231812], [-88.280781, 30.233781], [-88.25837, 30.239595], [-88.224615, 30.245559], [-88.17335, 30.252418], [-88.158303, 30.252393], [-88.141143, 30.255024], [-88.130631, 30.262125], [-88.124722, 30.273541], [-88.124658, 30.28364]]], [[[-88.008396, 30.684956], [-88.012444, 30.68319], [-88.022076, 30.673873], [-88.026706, 30.66149], [-88.034588, 30.653715], [-88.044339, 30.652568], [-88.061998, 30.644891], [-88.059598, 30.619091], [-88.053998, 30.612491], [-88.064898, 30.588292], [-88.074898, 30.578892], [-88.085493, 30.563258], [-88.081617, 30.546317], [-88.082792, 30.528713], [-88.090734, 30.52357], [-88.100874, 30.50975], [-88.103768, 30.500903], [-88.102988, 30.493029], [-88.096867, 30.471053], [-88.100646, 30.46122], [-88.106437, 30.452738], [-88.10407, 30.4273], [-88.107274, 30.377246], [-88.115432, 30.35657], [-88.124611, 30.341623], [-88.128052, 30.338509], [-88.136173, 30.320729], [-88.155775, 30.327184], [-88.171967, 30.324679], [-88.191542, 30.317002], [-88.195664, 30.321242], [-88.198361, 30.338819], [-88.196353, 30.343586], [-88.188532, 30.345053], [-88.188527, 30.348124], [-88.200065, 30.362378], [-88.204495, 30.362102], [-88.260695, 30.382381], [-88.282635, 30.382876], [-88.290649, 30.370741], [-88.311608, 30.368908], [-88.316525, 30.369985], [-88.319599, 30.380334], [-88.332277, 30.38844], [-88.341345, 30.38947], [-88.364022, 30.388006], [-88.374671, 30.385608], [-88.395023, 30.369425], [-88.402283, 30.510852], [-88.403547, 30.5331], [-88.403931, 30.543359], [-88.404013, 30.54506], [-88.407484, 30.622736], [-88.407462, 30.631653], [-88.40807, 30.63697], [-88.409571, 30.668731], [-88.411339, 30.706334], [-88.41155, 30.712956], [-88.412209, 30.730395], [-88.41227, 30.731771], [-88.412462, 30.735598], [-88.425635, 30.998301], [-88.425729, 31.000183], [-88.425807, 31.001123], [-88.432007, 31.114298], [-88.329782, 31.143821], [-88.022649, 31.144267], [-87.972869, 31.162694], [-87.941152, 31.048161], [-87.981261, 30.886895], [-87.944546, 30.827046], [-88.026319, 30.753358], [-88.008396, 30.684956]]]]}, "bbox": [-88.432007, 30.228031, -87.941152, 31.162694]}, {"id": "01101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.411172, 32.409937], [-86.237068, 32.49498], [-86.192284, 32.43613], [-86.023012, 32.419978], [-85.919293, 32.274382], [-85.999157, 32.250543], [-85.996853, 32.051049], [-85.995563, 31.967554], [-86.191379, 31.966453], [-86.302217, 31.965065], [-86.303616, 32.051664], [-86.406276, 32.050731], [-86.408816, 32.240851], [-86.496774, 32.344437], [-86.411172, 32.409937]]]}, "bbox": [-86.496774, 31.965065, -85.919293, 32.49498]}, {"id": "01103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.110111, 34.313799], [-87.105913, 34.587643], [-87.105073, 34.686037], [-86.942899, 34.598053], [-86.790056, 34.55079], [-86.689353, 34.586425], [-86.550166, 34.545963], [-86.581936, 34.304694], [-87.092311, 34.312297], [-87.110111, 34.313799]]]}, "bbox": [-87.110111, 34.304694, -86.550166, 34.686037]}, {"id": "01109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.748251, 31.618048], [-85.749941, 31.617914], [-85.789142, 31.617964], [-86.145895, 31.617741], [-86.148339, 31.790951], [-86.199378, 31.79045], [-86.191379, 31.966453], [-85.995563, 31.967554], [-85.996853, 32.051049], [-85.893652, 32.047351], [-85.88435, 31.967253], [-85.790048, 31.967254], [-85.791047, 31.880357], [-85.657668, 31.880275], [-85.66623, 31.772877], [-85.748251, 31.618048]]]}, "bbox": [-86.199378, 31.617741, -85.657668, 32.051049]}, {"id": "01117", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.023586, 33.246422], [-86.830597, 33.332015], [-86.674418, 33.466521], [-86.60451, 33.467053], [-86.516783, 33.545896], [-86.481939, 33.502544], [-86.378222, 33.502411], [-86.378665, 33.390983], [-86.35734, 33.296917], [-86.503127, 33.179144], [-86.491029, 33.102944], [-86.517344, 33.020566], [-86.610003, 33.070003], [-86.881638, 33.071861], [-86.881182, 33.049901], [-87.025596, 33.165795], [-87.026846, 33.246459], [-87.023586, 33.246422]]]}, "bbox": [-87.026846, 33.020566, -86.35734, 33.545896]}, {"id": "01123", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.886148, 32.493053], [-85.87986, 32.754528], [-86.007187, 32.754984], [-86.00917, 33.09026], [-85.974715, 33.105286], [-85.653654, 33.106634], [-85.593177, 33.10734], [-85.593151, 32.72853], [-85.696755, 32.697429], [-85.695854, 32.595933], [-85.798585, 32.581089], [-85.797156, 32.494236], [-85.886148, 32.493053]]]}, "bbox": [-86.00917, 32.493053, -85.593151, 33.10734]}, {"id": "01125", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.266923, 33.512929], [-87.330816, 33.491501], [-87.194841, 33.343069], [-87.180006, 33.342979], [-87.179754, 33.32801], [-87.179638, 33.321112], [-87.162175, 33.321012], [-87.162007, 33.306587], [-87.127142, 33.306013], [-87.126756, 33.290844], [-87.087497, 33.290675], [-87.087546, 33.279666], [-87.074602, 33.279682], [-87.074634, 33.276018], [-87.065754, 33.275937], [-87.065738, 33.246907], [-87.199153, 33.196554], [-87.199317, 33.130657], [-87.281945, 33.13306], [-87.318539, 33.006179], [-87.421936, 33.003379], [-87.715709, 33.006824], [-87.832233, 33.017258], [-87.838047, 33.136864], [-87.837521, 33.153637], [-87.840683, 33.524839], [-87.666661, 33.521667], [-87.631718, 33.609833], [-87.423701, 33.602096], [-87.318532, 33.587393], [-87.266923, 33.512929]]]}, "bbox": [-87.840683, 33.003379, -87.065738, 33.609833]}, {"id": "01127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.423701, 33.602096], [-87.423843, 33.689112], [-87.528338, 33.692049], [-87.531602, 33.867618], [-87.63604, 33.871999], [-87.635932, 33.915251], [-87.636118, 34.002203], [-87.151036, 33.993225], [-87.091836, 33.890093], [-86.963358, 33.858221], [-86.96296, 33.844865], [-86.954305, 33.844862], [-86.953664, 33.815297], [-87.005965, 33.787237], [-87.057757, 33.656363], [-87.17943, 33.613794], [-87.185794, 33.555882], [-87.266923, 33.512929], [-87.318532, 33.587393], [-87.423701, 33.602096]]]}, "bbox": [-87.636118, 33.512929, -86.953664, 34.002203]}, {"id": "04001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-109.045973, 36.002338], [-109.046011, 35.925896], [-109.046054, 35.92586], [-109.046055, 35.888721], [-109.046024, 35.8798], [-109.046295, 35.616517], [-109.046296, 35.614251], [-109.046509, 35.54644], [-109.046481, 35.546326], [-109.046082, 35.174665], [-109.045851, 34.959718], [-109.046156, 34.579291], [-109.046182, 34.522553], [-109.046182, 34.522393], [-109.046627, 33.778233], [-109.348062, 33.77752], [-109.49544, 33.652697], [-109.799782, 33.488314], [-109.891759, 33.567829], [-109.891766, 33.777777], [-109.859274, 33.777683], [-109.849387, 34.125945], [-109.848246, 34.473435], [-109.865231, 34.559689], [-109.844624, 34.822562], [-109.843764, 35.517875], [-109.826936, 35.662484], [-110.000674, 35.662657], [-110.000673, 35.844269], [-109.999188, 36.695911], [-110.000677, 36.997968], [-109.381226, 36.999148], [-109.378039, 36.999135], [-109.270097, 36.999266], [-109.268213, 36.999242], [-109.26339, 36.999263], [-109.246917, 36.999346], [-109.233848, 36.999266], [-109.181196, 36.999271], [-109.045223, 36.999084], [-109.045244, 36.969489], [-109.045272, 36.968871], [-109.045407, 36.874998], [-109.045433, 36.874589], [-109.045973, 36.002338]]]}, "bbox": [-110.000677, 33.488314, -109.045223, 36.999346]}, {"id": "04005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-112.538593, 37.000674], [-112.534545, 37.000684], [-112.368946, 37.001125], [-112.35769, 37.001025], [-111.412784, 37.001478], [-111.405869, 37.001481], [-111.405517, 37.001497], [-111.189888, 37.000959], [-110.75069, 37.003197], [-110.750698, 36.409949], [-110.750692, 35.814879], [-110.750693, 35.500008], [-110.750678, 34.263314], [-110.788078, 34.30906], [-110.848059, 34.267205], [-111.096661, 34.396431], [-111.147094, 34.375185], [-111.250878, 34.453301], [-111.397229, 34.426062], [-111.427266, 34.386149], [-111.423066, 34.437225], [-111.550328, 34.419057], [-111.472046, 34.462265], [-111.502415, 34.498057], [-111.555124, 34.472196], [-111.552106, 34.80252], [-111.77791, 34.803318], [-111.777815, 34.981315], [-111.809215, 34.976215], [-112.334536, 34.973024], [-112.335716, 35.148279], [-112.4423, 35.149408], [-112.440751, 35.260468], [-112.4727, 35.238312], [-112.577399, 35.243394], [-112.694846, 35.311586], [-112.754838, 35.306301], [-112.95341, 35.35611], [-112.975855, 35.392904], [-113.148055, 35.478595], [-113.174458, 35.506445], [-113.301303, 35.531118], [-113.320367, 35.53057], [-113.329569, 35.528108], [-113.334161, 35.528037], [-113.333922, 35.800736], [-113.310523, 35.86435], [-113.317122, 35.961385], [-113.354176, 36.040368], [-113.319971, 36.096769], [-113.231146, 36.089524], [-113.19923, 36.151389], [-113.13708, 36.166424], [-113.009038, 36.23904], [-112.792436, 36.285036], [-112.723991, 36.345992], [-112.681571, 36.341662], [-112.629727, 36.392322], [-112.645121, 36.457311], [-112.621855, 36.485017], [-112.660326, 36.539631], [-112.538593, 37.000674]]]}, "bbox": [-113.354176, 34.263314, -110.750678, 37.003197]}, {"id": "04013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.580626, 33.465902], [-111.583047, 33.20545], [-111.686035, 33.204637], [-111.893085, 33.204811], [-112.083488, 33.20456], [-112.191784, 33.265039], [-112.203288, 33.310533], [-112.203719, 32.50676], [-113.333897, 32.504938], [-113.333212, 33.22721], [-113.33392, 33.377425], [-113.333313, 33.56571], [-113.333823, 33.911661], [-113.333753, 33.999227], [-112.743951, 33.999898], [-112.341876, 33.898958], [-112.27604, 33.882312], [-112.264425, 33.899094], [-112.26047, 33.903592], [-112.256668, 33.905526], [-112.164758, 34.04817], [-111.861997, 34.015108], [-111.72531, 33.999849], [-111.494778, 33.999817], [-111.433271, 33.983321], [-111.450904, 33.919877], [-111.372317, 33.823924], [-111.389444, 33.776663], [-111.26283, 33.623157], [-111.222055, 33.602446], [-111.153354, 33.677606], [-111.039905, 33.466104], [-111.250681, 33.464902], [-111.26976, 33.465538], [-111.580626, 33.465902]]]}, "bbox": [-113.33392, 32.504938, -111.039905, 34.04817]}, {"id": "04015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-114.0506, 37.000396], [-113.965907, 37.000025], [-113.965907, 36.999976], [-112.966471, 37.000219], [-112.899366, 37.000319], [-112.609787, 37.000753], [-112.558974, 37.000692], [-112.545094, 37.000734], [-112.540368, 37.000669], [-112.538593, 37.000674], [-112.660326, 36.539631], [-112.621855, 36.485017], [-112.645121, 36.457311], [-112.629727, 36.392322], [-112.681571, 36.341662], [-112.723991, 36.345992], [-112.792436, 36.285036], [-113.009038, 36.23904], [-113.13708, 36.166424], [-113.19923, 36.151389], [-113.231146, 36.089524], [-113.319971, 36.096769], [-113.354176, 36.040368], [-113.317122, 35.961385], [-113.310523, 35.86435], [-113.333922, 35.800736], [-113.334161, 35.528037], [-113.332713, 35.00011], [-113.333508, 34.317877], [-113.370507, 34.291968], [-113.539524, 34.306377], [-113.603079, 34.231049], [-114.031132, 34.259819], [-114.138282, 34.30323], [-114.176909, 34.349306], [-114.199482, 34.361373], [-114.264317, 34.401329], [-114.339627, 34.451435], [-114.452547, 34.653494], [-114.465607, 34.69226], [-114.552682, 34.766871], [-114.633051, 34.869971], [-114.635176, 34.875003], [-114.636725, 34.889107], [-114.630877, 34.907263], [-114.629015, 34.986148], [-114.62919, 34.991887], [-114.633013, 35.002085], [-114.633544, 35.015644], [-114.635469, 35.028266], [-114.621956, 35.094678], [-114.59912, 35.12105], [-114.5843, 35.124999], [-114.578524, 35.12875], [-114.572747, 35.138725], [-114.569569, 35.163053], [-114.569238, 35.18348], [-114.595931, 35.325234], [-114.604314, 35.353584], [-114.627137, 35.409504], [-114.652005, 35.429165], [-114.662125, 35.444241], [-114.677643, 35.489742], [-114.676733, 35.499063], [-114.674981, 35.510564], [-114.671147, 35.520641], [-114.653806, 35.59949], [-114.653406, 35.610789], [-114.657506, 35.618289], [-114.676707, 35.640989], [-114.689407, 35.651412], [-114.700308, 35.700387], [-114.70771, 35.811885], [-114.705611, 35.848884], [-114.704211, 35.851984], [-114.70613, 35.878712], [-114.731296, 35.945157], [-114.743576, 35.983721], [-114.755618, 36.087166], [-114.744857, 36.098693], [-114.736165, 36.104367], [-114.631716, 36.142306], [-114.572031, 36.15161], [-114.513256, 36.151217], [-114.381446, 36.141665], [-114.365835, 36.133722], [-114.328777, 36.105501], [-114.310857, 36.083787], [-114.307235, 36.076544], [-114.303614, 36.066456], [-114.292663, 36.051118], [-114.263146, 36.025937], [-114.252651, 36.020193], [-114.238799, 36.014561], [-114.233289, 36.014289], [-114.21369, 36.015613], [-114.15413, 36.023862], [-114.148774, 36.02731], [-114.138202, 36.041284], [-114.125796, 36.077531], [-114.120193, 36.102228], [-114.063021, 36.186942], [-114.060302, 36.189363], [-114.046838, 36.194069], [-114.047106, 36.250591], [-114.048515, 36.289598], [-114.046403, 36.371873], [-114.046488, 36.473449], [-114.050562, 36.656259], [-114.050578, 36.800173], [-114.050583, 36.843141], [-114.0506, 37.000396]]]}, "bbox": [-114.755618, 34.231049, -112.538593, 37.000753]}, {"id": "04017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-110.000674, 35.662657], [-109.826936, 35.662484], [-109.843764, 35.517875], [-109.844624, 34.822562], [-109.865231, 34.559689], [-109.848246, 34.473435], [-109.849387, 34.125945], [-109.859274, 33.777683], [-109.891766, 33.777777], [-109.891759, 33.567829], [-110.000649, 33.57693], [-110.00066, 34.000046], [-110.750672, 34.000048], [-110.750678, 34.263314], [-110.750693, 35.500008], [-110.750692, 35.814879], [-110.750698, 36.409949], [-110.75069, 37.003197], [-110.495259, 37.003875], [-110.33105, 36.998216], [-110.000677, 36.997968], [-109.999188, 36.695911], [-110.000673, 35.844269], [-110.000674, 35.662657]]]}, "bbox": [-110.750698, 33.567829, -109.826936, 37.003875]}, {"id": "04019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.792534, 32.506779], [-111.27061, 32.501366], [-110.925567, 32.511391], [-110.844943, 32.511211], [-110.844923, 32.513767], [-110.785444, 32.513539], [-110.451221, 32.513807], [-110.451228, 32.504408], [-110.451503, 32.427354], [-110.451736, 31.731267], [-111.158299, 31.726007], [-111.164183, 31.725983], [-111.163995, 31.618687], [-111.163725, 31.521826], [-111.366613, 31.521291], [-111.366635, 31.42588], [-111.57953, 31.494095], [-112.246102, 31.704195], [-112.867074, 31.895488], [-113.125961, 31.97278], [-113.333794, 32.038521], [-113.333897, 32.504938], [-112.203719, 32.50676], [-111.792534, 32.506779]]]}, "bbox": [-113.333897, 31.42588, -110.451221, 32.513807]}, {"id": "04025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.861997, 34.015108], [-112.164758, 34.04817], [-112.256668, 33.905526], [-112.26047, 33.903592], [-112.264425, 33.899094], [-112.27604, 33.882312], [-112.341876, 33.898958], [-112.743951, 33.999898], [-113.333753, 33.999227], [-113.333316, 34.00103], [-113.333508, 34.317877], [-113.332713, 35.00011], [-113.334161, 35.528037], [-113.329569, 35.528108], [-113.320367, 35.53057], [-113.301303, 35.531118], [-113.174458, 35.506445], [-113.148055, 35.478595], [-112.975855, 35.392904], [-112.95341, 35.35611], [-112.754838, 35.306301], [-112.694846, 35.311586], [-112.577399, 35.243394], [-112.4727, 35.238312], [-112.440751, 35.260468], [-112.4423, 35.149408], [-112.335716, 35.148279], [-112.334536, 34.973024], [-111.809215, 34.976215], [-111.777815, 34.981315], [-111.77791, 34.803318], [-111.552106, 34.80252], [-111.555124, 34.472196], [-111.659514, 34.386424], [-111.720728, 34.161704], [-111.477853, 34.151108], [-111.494778, 33.999817], [-111.72531, 33.999849], [-111.861997, 34.015108]]]}, "bbox": [-113.334161, 33.882312, -111.477853, 35.531118]}, {"id": "04027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-114.719633, 32.718763], [-114.678632, 32.736614], [-114.677091, 32.736218], [-114.65884, 32.73383], [-114.65826, 32.733799], [-114.615585, 32.728446], [-114.615733, 32.729427], [-114.496827, 32.822119], [-114.496284, 32.822326], [-114.465715, 32.879191], [-114.465715, 32.87942], [-114.46289, 32.905797], [-114.468605, 32.971649], [-114.511343, 33.023455], [-114.516912, 33.026871], [-114.268748, 33.029815], [-114.267815, 33.463574], [-113.958042, 33.464655], [-113.958046, 33.377578], [-113.33392, 33.377425], [-113.333212, 33.22721], [-113.333897, 32.504938], [-113.333794, 32.038521], [-113.493196, 32.088943], [-114.250775, 32.32391], [-114.813613, 32.494277], [-114.809393, 32.617119], [-114.80739, 32.621332], [-114.799302, 32.625115], [-114.781872, 32.62505], [-114.753111, 32.658304], [-114.748, 32.664184], [-114.719633, 32.718763]]]}, "bbox": [-114.813613, 32.038521, -113.333212, 33.464655]}, {"id": "05005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.150295, 36.498634], [-92.159215, 36.261311], [-92.15699, 36.261248], [-92.19543, 36.132798], [-92.197649, 36.059287], [-92.304951, 36.06108], [-92.30722, 35.974022], [-92.414324, 35.975865], [-92.412542, 36.027228], [-92.411502, 36.062756], [-92.411852, 36.162123], [-92.469262, 36.250904], [-92.543034, 36.269342], [-92.593128, 36.358337], [-92.533175, 36.386563], [-92.529145, 36.497739], [-92.318415, 36.497711], [-92.309424, 36.497894], [-92.216412, 36.498417], [-92.214143, 36.498372], [-92.211449, 36.498395], [-92.199396, 36.498351], [-92.150295, 36.498634]]]}, "bbox": [-92.593128, 35.974022, -92.150295, 36.498634]}, {"id": "05007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.552184, 36.102235], [-94.561165, 36.15211], [-94.562803, 36.161749], [-94.562828, 36.161895], [-94.565655, 36.178439], [-94.566588, 36.183774], [-94.571253, 36.210901], [-94.571806, 36.213748], [-94.574395, 36.229996], [-94.57488, 36.232741], [-94.575071, 36.233682], [-94.576003, 36.24007], [-94.577899, 36.249548], [-94.577883, 36.25008], [-94.5862, 36.299969], [-94.593397, 36.345742], [-94.599723, 36.387587], [-94.601984, 36.40212], [-94.602623, 36.405283], [-94.605408, 36.421949], [-94.611609, 36.461528], [-94.61383, 36.476248], [-94.615311, 36.484992], [-94.617919, 36.499414], [-94.55929, 36.499496], [-94.519478, 36.499214], [-94.111473, 36.498597], [-94.110673, 36.498587], [-94.100252, 36.49867], [-94.098588, 36.498676], [-94.077089, 36.49873], [-93.96392, 36.498717], [-93.95919, 36.498717], [-93.92184, 36.498718], [-93.906128, 36.498718], [-93.866758, 36.498789], [-93.861698, 36.339266], [-93.815605, 36.306563], [-93.887775, 36.235046], [-93.973298, 36.203852], [-94.333565, 36.214727], [-94.391125, 36.099396], [-94.552184, 36.102235]]]}, "bbox": [-94.617919, 36.099396, -93.815605, 36.499496]}, {"id": "05031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.288947, 35.996418], [-90.286736, 35.699914], [-91.036967, 35.708418], [-91.032499, 35.88507], [-90.872785, 35.88087], [-90.852064, 35.968092], [-90.387378, 35.964708], [-90.368718, 35.995812], [-90.342616, 35.995895], [-90.339434, 35.996033], [-90.292376, 35.996397], [-90.288947, 35.996418]]]}, "bbox": [-91.036967, 35.699914, -90.286736, 35.996418]}, {"id": "05035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.074262, 35.218316], [-90.073354, 35.211004], [-90.064612, 35.140621], [-90.065392, 35.137691], [-90.08342, 35.12167], [-90.09061, 35.118287], [-90.100593, 35.116691], [-90.109393, 35.118891], [-90.142794, 35.135091], [-90.160058, 35.12883], [-90.174594, 35.116682], [-90.193859, 35.061646], [-90.295596, 35.040093], [-90.309877, 35.00975], [-90.309297, 34.995694], [-90.253969, 34.954988], [-90.244476, 34.937596], [-90.250095, 34.90732], [-90.293918, 34.860563], [-90.307384, 34.846195], [-90.407964, 34.832767], [-90.40854, 34.904121], [-90.400434, 35.148196], [-90.502993, 35.144214], [-90.502429, 35.441726], [-90.500104, 35.441763], [-90.286899, 35.438573], [-90.152386, 35.436789], [-90.169002, 35.421853], [-90.179265, 35.385194], [-90.178341, 35.382092], [-90.166246, 35.374745], [-90.143633, 35.374745], [-90.13551, 35.376668], [-90.093589, 35.393333], [-90.089612, 35.379842], [-90.086691, 35.369935], [-90.114893, 35.303887], [-90.153394, 35.302588], [-90.158913, 35.300637], [-90.163812, 35.296115], [-90.168871, 35.281997], [-90.166594, 35.274588], [-90.158865, 35.262577], [-90.152094, 35.255989], [-90.140394, 35.252289], [-90.116493, 35.255788], [-90.105093, 35.254288], [-90.097947, 35.249983], [-90.07741, 35.225479], [-90.074262, 35.218316]]]}, "bbox": [-90.502993, 34.832767, -90.064612, 35.441763]}, {"id": "05045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.119719, 35.066493], [-92.121336, 35.01221], [-92.227541, 35.014484], [-92.229893, 34.927558], [-92.544341, 34.953319], [-92.593585, 35.011761], [-92.554685, 35.113277], [-92.484259, 35.280706], [-92.481469, 35.368392], [-92.252759, 35.363718], [-92.111463, 35.362725], [-92.119719, 35.066493]]]}, "bbox": [-92.593585, 34.927558, -92.111463, 35.368392]}, {"id": "05051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.394289, 34.743393], [-93.394456, 34.772355], [-93.287785, 34.773193], [-93.269886, 34.771993], [-93.075178, 34.771892], [-92.96925, 34.772266], [-92.979902, 34.637222], [-92.875456, 34.635124], [-92.808028, 34.590406], [-92.793197, 34.503606], [-92.915079, 34.506114], [-92.948071, 34.389255], [-93.407227, 34.396853], [-93.394289, 34.743393]]]}, "bbox": [-93.407227, 34.389255, -92.793197, 34.773193]}, {"id": "05055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.198735, 36.201382], [-90.220425, 36.184764], [-90.319168, 36.089976], [-90.36443, 36.013625], [-90.368718, 35.995812], [-90.387378, 35.964708], [-90.852064, 35.968092], [-90.820763, 36.07977], [-90.747425, 36.149116], [-90.809816, 36.149567], [-90.806615, 36.266865], [-90.31982, 36.259144], [-90.32096, 36.200575], [-90.198735, 36.201382]]]}, "bbox": [-90.852064, 35.964708, -90.198735, 36.266865]}, {"id": "05063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.793958, 35.534114], [-91.789823, 35.711734], [-91.837179, 35.704932], [-91.870983, 35.810562], [-91.849448, 35.867411], [-91.753345, 35.942883], [-91.710552, 35.941759], [-91.463198, 35.93681], [-91.464678, 35.892497], [-91.35723, 35.890621], [-91.198556, 35.890024], [-91.232392, 35.812664], [-91.348281, 35.719127], [-91.36957, 35.526362], [-91.58188, 35.530447], [-91.793958, 35.534114]]]}, "bbox": [-91.870983, 35.526362, -91.198556, 35.942883]}, {"id": "05115", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.896109, 35.170678], [-93.084678, 35.12739], [-93.156078, 35.235307], [-93.278293, 35.317402], [-93.282758, 35.318273], [-93.294201, 35.325319], [-93.299014, 35.327425], [-93.29591, 35.469915], [-93.223633, 35.468593], [-93.22117, 35.598938], [-93.1678, 35.597695], [-93.164452, 35.728831], [-92.951315, 35.724663], [-92.809763, 35.722401], [-92.813417, 35.549], [-92.850624, 35.46295], [-92.855, 35.172777], [-92.896109, 35.170678]]]}, "bbox": [-93.299014, 35.12739, -92.809763, 35.728831]}, {"id": "05119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.245818, 34.493506], [-92.244209, 34.58089], [-92.348749, 34.58229], [-92.346814, 34.625611], [-92.445148, 34.62694], [-92.443265, 34.672041], [-92.551963, 34.689432], [-92.549856, 34.761699], [-92.654324, 34.764541], [-92.651248, 34.851682], [-92.739779, 34.853459], [-92.753626, 34.911248], [-92.544341, 34.953319], [-92.229893, 34.927558], [-92.227541, 35.014484], [-92.121336, 35.01221], [-92.070805, 35.011802], [-92.078711, 34.729983], [-92.113313, 34.622966], [-92.02954, 34.621403], [-92.029996, 34.489352], [-92.208041, 34.492765], [-92.245818, 34.493506]]]}, "bbox": [-92.753626, 34.489352, -92.02954, 35.014484]}, {"id": "05125", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.245818, 34.493506], [-92.403557, 34.495795], [-92.40468, 34.451916], [-92.589418, 34.455641], [-92.668711, 34.414237], [-92.685284, 34.473105], [-92.793197, 34.503606], [-92.808028, 34.590406], [-92.875456, 34.635124], [-92.979902, 34.637222], [-92.96925, 34.772266], [-93.075178, 34.771892], [-93.073877, 34.858091], [-92.739779, 34.853459], [-92.651248, 34.851682], [-92.654324, 34.764541], [-92.549856, 34.761699], [-92.551963, 34.689432], [-92.443265, 34.672041], [-92.445148, 34.62694], [-92.346814, 34.625611], [-92.348749, 34.58229], [-92.244209, 34.58089], [-92.245818, 34.493506]]]}, "bbox": [-93.075178, 34.414237, -92.244209, 34.858091]}, {"id": "05131", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.433742, 35.386467], [-94.433915, 35.387391], [-94.431215, 35.39429], [-94.431789, 35.397659], [-94.403468, 35.449994], [-94.321186, 35.357476], [-94.223751, 35.353694], [-94.074895, 35.445403], [-94.082798, 35.215913], [-94.028547, 35.213826], [-94.031236, 35.140857], [-94.139307, 35.143361], [-94.140571, 35.099678], [-94.222869, 35.079115], [-94.230524, 34.968527], [-94.447889, 34.933941], [-94.441232, 35.119724], [-94.440754, 35.128806], [-94.43955, 35.169037], [-94.439509, 35.171807], [-94.439056, 35.193588], [-94.439084, 35.197298], [-94.43847, 35.208587], [-94.438247, 35.210992], [-94.437774, 35.239271], [-94.437578, 35.242202], [-94.435812, 35.2713], [-94.435706, 35.274267], [-94.435316, 35.275893], [-94.43528, 35.287485], [-94.43517, 35.291494], [-94.434115, 35.306493], [-94.431815, 35.362891], [-94.432685, 35.380806], [-94.433742, 35.386467]]]}, "bbox": [-94.447889, 34.933941, -94.028547, 35.449994]}, {"id": "05139", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.724743, 33.014347], [-92.724994, 33.014351], [-92.733197, 33.014347], [-92.830798, 33.015661], [-92.844073, 33.016034], [-92.844286, 33.01607], [-92.854167, 33.016132], [-92.86751, 33.016062], [-92.946553, 33.016807], [-92.971137, 33.017192], [-92.988708, 33.017298], [-92.978469, 33.37728], [-92.660238, 33.355613], [-92.567156, 33.3672], [-92.445399, 33.274859], [-92.350432, 33.298941], [-92.22406, 33.251782], [-92.137527, 33.162956], [-92.109611, 33.034054], [-92.069105, 33.008163], [-92.222825, 33.00908], [-92.292664, 33.010103], [-92.335893, 33.010349], [-92.362865, 33.010628], [-92.37029, 33.010717], [-92.469762, 33.01201], [-92.501383, 33.01216], [-92.503776, 33.012161], [-92.711289, 33.014307], [-92.715884, 33.014398], [-92.723553, 33.014328], [-92.724743, 33.014347]]]}, "bbox": [-92.988708, 33.008163, -92.069105, 33.37728]}, {"id": "05143", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.962892, 35.76093], [-94.124871, 35.750426], [-94.492932, 35.759166], [-94.493362, 35.761892], [-94.494549, 35.768303], [-94.499045, 35.79346], [-94.499647, 35.79691], [-94.500526, 35.802642], [-94.500764, 35.80382], [-94.501162, 35.80643], [-94.503011, 35.81721], [-94.504438, 35.826369], [-94.505642, 35.833628], [-94.507631, 35.845901], [-94.522658, 35.93425], [-94.522658, 35.934799], [-94.522634, 35.934892], [-94.52291, 35.936127], [-94.524344, 35.94405], [-94.52464, 35.945727], [-94.528162, 35.965665], [-94.528305, 35.966054], [-94.532071, 35.987852], [-94.533646, 35.996804], [-94.534852, 36.002678], [-94.535724, 36.007807], [-94.547715, 36.077271], [-94.547871, 36.078281], [-94.552184, 36.102235], [-94.391125, 36.099396], [-94.333565, 36.214727], [-93.973298, 36.203852], [-93.887775, 36.235046], [-93.944177, 36.091103], [-93.962892, 35.76093]]]}, "bbox": [-94.552184, 35.750426, -93.887775, 36.235046]}, {"id": "05145", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.465114, 35.089454], [-91.584005, 35.091584], [-91.5851, 35.025234], [-91.695463, 35.062344], [-91.802505, 35.030425], [-91.87888, 35.024577], [-92.013056, 35.076317], [-92.119719, 35.066493], [-92.111463, 35.362725], [-91.851958, 35.358287], [-91.850144, 35.436442], [-91.795855, 35.455574], [-91.793958, 35.534114], [-91.58188, 35.530447], [-91.584687, 35.442311], [-91.347257, 35.439106], [-91.438202, 35.369378], [-91.390375, 35.251624], [-91.371035, 35.262981], [-91.465114, 35.089454]]]}, "bbox": [-92.119719, 35.024577, -91.347257, 35.534114]}, {"id": "06001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.855762, 37.484537], [-122.045271, 37.460276], [-122.052648, 37.459656], [-122.081473, 37.477838], [-122.109574, 37.497637], [-122.116112, 37.505386], [-122.111344, 37.50758], [-122.111998, 37.528851], [-122.128688, 37.560594], [-122.133924, 37.562885], [-122.137524, 37.567467], [-122.144396, 37.581866], [-122.147014, 37.588411], [-122.145378, 37.600846], [-122.14636, 37.607391], [-122.152905, 37.640771], [-122.163049, 37.667933], [-122.170904, 37.676114], [-122.179085, 37.680041], [-122.197411, 37.692804], [-122.203971, 37.697769], [-122.213774, 37.698695], [-122.221628, 37.705567], [-122.246826, 37.72193], [-122.255989, 37.735674], [-122.257953, 37.739601], [-122.257134, 37.745001], [-122.252226, 37.747619], [-122.244938, 37.750294], [-122.242638, 37.753744], [-122.253753, 37.761218], [-122.264101, 37.764667], [-122.275408, 37.76735], [-122.286139, 37.769458], [-122.293996, 37.770416], [-122.304345, 37.774632], [-122.318909, 37.77904], [-122.329159, 37.783173], [-122.33079, 37.78383], [-122.330963, 37.786035], [-122.331748, 37.796052], [-122.33555, 37.799538], [-122.335675, 37.799652], [-122.333711, 37.809797], [-122.323567, 37.823214], [-122.317676, 37.826814], [-122.306222, 37.827469], [-122.303931, 37.830087], [-122.301313, 37.847758], [-122.310477, 37.873938], [-122.309986, 37.892755], [-122.313258, 37.89701], [-122.313496, 37.897211], [-122.310881, 37.897825], [-122.30618, 37.898225], [-122.185977, 37.820726], [-122.004228, 37.770058], [-122.010771, 37.755127], [-122.001071, 37.739028], [-121.977999, 37.729579], [-121.96077, 37.718629], [-121.910138, 37.73046], [-121.881567, 37.737328], [-121.623724, 37.799291], [-121.55916, 37.818927], [-121.556936, 37.817218], [-121.556655, 37.542732], [-121.471925, 37.481783], [-121.472648, 37.48217], [-121.855762, 37.484537]]]}, "bbox": [-122.335675, 37.459656, -121.471925, 37.898225]}, {"id": "06007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.076695, 39.597264], [-121.149907, 39.526446], [-121.305122, 39.519585], [-121.333427, 39.468729], [-121.407527, 39.339754], [-121.62376, 39.295621], [-121.908269, 39.303878], [-121.890013, 39.383864], [-121.856532, 39.536904], [-121.994021, 39.533926], [-121.950951, 39.715004], [-122.046471, 39.797648], [-122.044865, 39.883771], [-121.804041, 39.884344], [-121.703241, 39.98423], [-121.646032, 39.982527], [-121.586407, 40.100522], [-121.436886, 40.151905], [-121.366818, 40.086054], [-121.430012, 39.914833], [-121.360516, 39.84074], [-121.076695, 39.597264]]]}, "bbox": [-122.046471, 39.295621, -121.076695, 40.151905]}, {"id": "06013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.910138, 37.73046], [-121.96077, 37.718629], [-121.977999, 37.729579], [-122.001071, 37.739028], [-122.010771, 37.755127], [-122.004228, 37.770058], [-122.185977, 37.820726], [-122.30618, 37.898225], [-122.310881, 37.897825], [-122.313496, 37.897211], [-122.32373, 37.905845], [-122.33453, 37.908791], [-122.35711, 37.908791], [-122.362346, 37.904209], [-122.367582, 37.903882], [-122.378709, 37.905191], [-122.385908, 37.908136], [-122.389181, 37.9101], [-122.39049, 37.922535], [-122.395071, 37.927117], [-122.401289, 37.928426], [-122.413725, 37.937262], [-122.417371, 37.943513], [-122.430087, 37.963115], [-122.42976, 37.965405], [-122.415361, 37.963115], [-122.411761, 37.960497], [-122.408383, 37.957544], [-122.399832, 37.956009], [-122.367582, 37.978168], [-122.361905, 37.989991], [-122.363001, 37.994375], [-122.366928, 37.998458], [-122.368891, 38.007948], [-122.367909, 38.01253], [-122.363655, 38.014166], [-122.359493, 38.009941], [-122.340093, 38.003694], [-122.331912, 38.00533], [-122.321112, 38.012857], [-122.315549, 38.013511], [-122.300823, 38.010893], [-122.283478, 38.022674], [-122.262861, 38.0446], [-122.262861, 38.051473], [-122.266669, 38.06007], [-122.123973, 38.035717], [-122.050386, 38.060198], [-121.869469, 38.054519], [-121.865189, 38.059909], [-121.862462, 38.06603], [-121.737824, 38.02663], [-121.679265, 38.089319], [-121.580022, 38.094414], [-121.579943, 37.976113], [-121.574823, 37.973025], [-121.569889, 37.957495], [-121.56364, 37.94611], [-121.561937, 37.937612], [-121.55987, 37.920862], [-121.569113, 37.901521], [-121.574849, 37.885021], [-121.575463, 37.863118], [-121.56937, 37.858881], [-121.561813, 37.857135], [-121.549517, 37.856986], [-121.538026, 37.849622], [-121.536595, 37.844723], [-121.538931, 37.839563], [-121.550971, 37.831155], [-121.556936, 37.817218], [-121.55916, 37.818927], [-121.623724, 37.799291], [-121.881567, 37.737328], [-121.910138, 37.73046]]]}, "bbox": [-122.430087, 37.718629, -121.536595, 38.094414]}, {"id": "06017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.141009, 38.71198], [-121.040406, 38.915651], [-120.746395, 39.010352], [-120.642458, 38.944404], [-120.556321, 38.915164], [-120.470985, 38.965507], [-120.43524, 39.028397], [-120.184098, 39.031014], [-120.143663, 39.067285], [-120.002461, 39.067489], [-120.001014, 38.999574], [-119.904315, 38.933324], [-119.880303, 38.864776], [-120.072392, 38.702767], [-120.098322, 38.709029], [-120.301721, 38.549109], [-120.510596, 38.511467], [-120.627604, 38.503143], [-120.813554, 38.562193], [-121.027507, 38.508292], [-121.118617, 38.717118], [-121.133264, 38.705427], [-121.141009, 38.71198]]]}, "bbox": [-121.141009, 38.503143, -119.880303, 39.067489]}, {"id": "06019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-119.573194, 36.488835], [-119.66629, 36.41896], [-119.905119, 36.401741], [-119.959227, 36.400975], [-119.95921, 36.181403], [-120.315068, 35.907186], [-120.648784, 36.10799], [-120.62691, 36.203227], [-120.678582, 36.267319], [-120.596562, 36.328488], [-120.603706, 36.488242], [-120.918731, 36.740381], [-120.65595, 36.952832], [-120.590566, 36.952641], [-120.541696, 37.044505], [-120.422187, 36.840139], [-120.229179, 36.769687], [-120.132898, 36.809841], [-120.079458, 36.825345], [-120.027775, 36.814505], [-120.013334, 36.828228], [-119.932551, 36.84299], [-119.823421, 36.848333], [-119.733852, 36.948558], [-119.537677, 37.104019], [-119.559412, 37.143619], [-119.470844, 37.110548], [-119.43306, 37.161516], [-119.361916, 37.167849], [-119.330573, 37.205791], [-119.335189, 37.310774], [-119.286658, 37.374943], [-119.022363, 37.585737], [-118.775014, 37.463052], [-118.786736, 37.34338], [-118.716016, 37.328208], [-118.665167, 37.261009], [-118.654593, 37.141826], [-118.437137, 37.059818], [-118.360586, 36.744773], [-118.982441, 36.741646], [-118.984779, 36.657147], [-119.304625, 36.660606], [-119.305102, 36.573725], [-119.466322, 36.575238], [-119.573194, 36.488835]]]}, "bbox": [-120.918731, 35.907186, -118.360586, 37.585737]}, {"id": "06025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-116.103137, 32.904115], [-116.08109, 33.074833], [-116.085165, 33.425932], [-115.467506, 33.426992], [-114.627125, 33.433554], [-114.665278, 33.415358], [-114.721233, 33.396912], [-114.700103, 33.341045], [-114.672088, 33.258499], [-114.67536, 33.185489], [-114.679359, 33.159519], [-114.687074, 33.142196], [-114.696829, 33.131209], [-114.706175, 33.105335], [-114.707819, 33.091102], [-114.675104, 33.047532], [-114.62387, 33.02872], [-114.606282, 33.025703], [-114.589778, 33.026228], [-114.584765, 33.028231], [-114.578287, 33.035375], [-114.571653, 33.036624], [-114.523578, 33.030961], [-114.516912, 33.026871], [-114.511343, 33.023455], [-114.468605, 32.971649], [-114.46289, 32.905797], [-114.465715, 32.87942], [-114.465715, 32.879191], [-114.496284, 32.822326], [-114.496827, 32.822119], [-114.615733, 32.729427], [-114.615585, 32.728446], [-114.65826, 32.733799], [-114.65884, 32.73383], [-114.677091, 32.736218], [-114.678632, 32.736614], [-114.719633, 32.718763], [-115.465164, 32.6671], [-115.875842, 32.636424], [-116.106159, 32.618328], [-116.103137, 32.904115]]]}, "bbox": [-116.106159, 32.618328, -114.46289, 33.433554]}, {"id": "06029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-117.667292, 34.822526], [-118.140074, 34.82078], [-118.854253, 34.817772], [-118.881364, 34.790629], [-118.976721, 34.812199], [-119.243645, 34.814178], [-119.276946, 34.879675], [-119.442352, 34.901274], [-119.472754, 34.901174], [-119.472719, 35.076885], [-119.560975, 35.087673], [-119.553641, 35.179975], [-119.667056, 35.174809], [-119.666663, 35.262527], [-119.809449, 35.263584], [-119.809346, 35.350865], [-119.880172, 35.351211], [-119.880045, 35.439133], [-119.997392, 35.439495], [-119.997382, 35.468702], [-120.086674, 35.526554], [-120.085922, 35.614524], [-120.193918, 35.614359], [-120.193892, 35.726513], [-120.193934, 35.749393], [-120.194053, 35.749964], [-120.194146, 35.789204], [-119.538116, 35.789567], [-119.534559, 35.789758], [-119.214033, 35.790489], [-118.270456, 35.790009], [-118.008043, 35.789161], [-117.632996, 35.797251], [-117.651986, 35.709934], [-117.616195, 35.680856], [-117.630126, 35.564071], [-117.632011, 34.82227], [-117.667292, 34.822526]]]}, "bbox": [-120.194146, 34.790629, -117.616195, 35.797251]}, {"id": "06031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-119.905119, 36.401741], [-119.66629, 36.41896], [-119.573194, 36.488835], [-119.528792, 36.401465], [-119.474892, 36.400953], [-119.474607, 36.269025], [-119.529358, 36.26985], [-119.538116, 35.789567], [-120.194146, 35.789204], [-120.213979, 35.789276], [-120.243275, 35.877669], [-120.315068, 35.907186], [-119.95921, 36.181403], [-119.959227, 36.400975], [-119.905119, 36.401741]]]}, "bbox": [-120.315068, 35.789204, -119.474607, 36.488835]}, {"id": "06037", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-118.524531, 32.895488], [-118.535823, 32.90628], [-118.551134, 32.945155], [-118.560887, 32.957891], [-118.573522, 32.969183], [-118.586928, 33.008281], [-118.596037, 33.015357], [-118.606559, 33.01469], [-118.605534, 33.030999], [-118.594033, 33.035951], [-118.57516, 33.033961], [-118.569013, 33.029151], [-118.564445, 33.024914], [-118.564527, 33.018637], [-118.559171, 33.006291], [-118.540069, 32.980933], [-118.529228, 32.970921], [-118.496811, 32.933847], [-118.485288, 32.923545], [-118.479039, 32.920363], [-118.460623, 32.90951], [-118.446771, 32.895424], [-118.369984, 32.839273], [-118.353504, 32.821962], [-118.356541, 32.817311], [-118.36053, 32.819921], [-118.379968, 32.824545], [-118.387375, 32.825327], [-118.394565, 32.823978], [-118.401268, 32.820338], [-118.425634, 32.800595], [-118.42943, 32.805429], [-118.428372, 32.806872], [-118.44492, 32.820593], [-118.476074, 32.841754], [-118.487908, 32.84459], [-118.496298, 32.851572], [-118.506902, 32.868503], [-118.508095, 32.871321], [-118.507193, 32.876264], [-118.524641, 32.893175], [-118.524531, 32.895488]]], [[[-118.500212, 33.449592], [-118.499669, 33.447879], [-118.48557, 33.446213], [-118.477646, 33.448392], [-118.445812, 33.428907], [-118.423576, 33.427258], [-118.382037, 33.409883], [-118.370323, 33.409285], [-118.368301, 33.40711], [-118.365094, 33.388374], [-118.32446, 33.348782], [-118.316083, 33.342928], [-118.310213, 33.335795], [-118.303174, 33.320264], [-118.305084, 33.310323], [-118.316787, 33.301137], [-118.325244, 33.299075], [-118.343249, 33.305234], [-118.360332, 33.31533], [-118.374768, 33.320065], [-118.402941, 33.320901], [-118.440047, 33.318638], [-118.456309, 33.32182], [-118.465368, 33.326056], [-118.481886, 33.344123], [-118.48877, 33.356649], [-118.482609, 33.369914], [-118.478465, 33.38632], [-118.484949, 33.412131], [-118.48875, 33.419826], [-118.503952, 33.424234], [-118.515914, 33.422417], [-118.516267, 33.425075], [-118.52323, 33.430733], [-118.53738, 33.434608], [-118.558715, 33.433419], [-118.563442, 33.434381], [-118.570927, 33.439351], [-118.575901, 33.448261], [-118.593969, 33.467198], [-118.601185, 33.469853], [-118.60403, 33.47654], [-118.603375, 33.478098], [-118.598783, 33.477939], [-118.585936, 33.473819], [-118.54453, 33.474119], [-118.530702, 33.468071], [-118.500212, 33.449592]]], [[[-118.796692, 34.616559], [-118.881364, 34.790629], [-118.854253, 34.817772], [-118.140074, 34.82078], [-117.667292, 34.822526], [-117.658798, 34.44058], [-117.650459, 34.339025], [-117.711067, 34.079536], [-117.719481, 34.059731], [-117.72601, 34.041128], [-117.735846, 34.018554], [-117.767752, 34.019429], [-117.783287, 33.946411], [-117.97653, 33.928034], [-117.976498, 33.919171], [-117.976571, 33.911205], [-117.976692, 33.910614], [-117.976588, 33.909757], [-117.976586, 33.906225], [-118.063268, 33.82422], [-118.063162, 33.81961], [-118.072597, 33.815115], [-118.084597, 33.803216], [-118.093008, 33.786289], [-118.099107, 33.776518], [-118.09197, 33.758472], [-118.116703, 33.743549], [-118.132698, 33.753217], [-118.1569, 33.760317], [-118.1755, 33.763617], [-118.180831, 33.763072], [-118.187701, 33.749218], [-118.1837, 33.736118], [-118.181367, 33.717367], [-118.207476, 33.716905], [-118.258687, 33.703741], [-118.277208, 33.707091], [-118.297104, 33.708319], [-118.317205, 33.712818], [-118.354705, 33.732317], [-118.360505, 33.736817], [-118.385006, 33.741417], [-118.396606, 33.735917], [-118.411211, 33.741985], [-118.428407, 33.774715], [-118.423407, 33.782015], [-118.405007, 33.800215], [-118.394376, 33.804289], [-118.394307, 33.804315], [-118.391507, 33.815415], [-118.392107, 33.840915], [-118.412708, 33.883913], [-118.44241, 33.940312], [-118.460611, 33.969111], [-118.482729, 33.995912], [-118.484212, 33.99771], [-118.502813, 34.015509], [-118.519514, 34.027509], [-118.543115, 34.038508], [-118.569235, 34.04164], [-118.603572, 34.039048], [-118.609652, 34.036424], [-118.668358, 34.038887], [-118.67543, 34.037479], [-118.679366, 34.033255], [-118.706215, 34.029383], [-118.732391, 34.032743], [-118.744952, 34.032103], [-118.783433, 34.021543], [-118.787094, 34.019545], [-118.805114, 34.001239], [-118.821579, 34.013959], [-118.84038, 34.027527], [-118.854653, 34.034215], [-118.896159, 34.039207], [-118.928048, 34.045847], [-118.938081, 34.043383], [-118.944887, 34.04534], [-118.940965, 34.07483], [-118.788889, 34.168214], [-118.668152, 34.168195], [-118.633473, 34.269626], [-118.636789, 34.291804], [-118.650859, 34.320484], [-118.796692, 34.616559]]]]}, "bbox": [-118.944887, 32.800595, -117.650459, 34.822526]}, {"id": "06041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.490727, 38.109755], [-122.491283, 38.108087], [-122.489974, 38.096961], [-122.486702, 38.090088], [-122.483757, 38.071762], [-122.492265, 38.056381], [-122.499465, 38.032165], [-122.497828, 38.019402], [-122.494556, 38.015148], [-122.481466, 38.007621], [-122.462812, 38.003367], [-122.452995, 37.996167], [-122.448413, 37.988313], [-122.448413, 37.984713], [-122.456595, 37.978823], [-122.462485, 37.981441], [-122.471975, 37.981768], [-122.488665, 37.966714], [-122.490302, 37.964751], [-122.490302, 37.959188], [-122.487684, 37.948716], [-122.480484, 37.945443], [-122.479175, 37.941516], [-122.48572, 37.937589], [-122.499465, 37.939225], [-122.503064, 37.936607], [-122.503064, 37.928753], [-122.493574, 37.921881], [-122.486375, 37.921881], [-122.478193, 37.918608], [-122.471975, 37.910427], [-122.472303, 37.902573], [-122.458558, 37.894064], [-122.448413, 37.89341], [-122.43925, 37.88392], [-122.438268, 37.880974], [-122.45005, 37.871157], [-122.462158, 37.868866], [-122.474266, 37.874429], [-122.480811, 37.873448], [-122.483429, 37.868866], [-122.483102, 37.863957], [-122.476536, 37.832812], [-122.476473, 37.832513], [-122.479151, 37.825428], [-122.47986, 37.825641], [-122.483483, 37.826728], [-122.492474, 37.82484], [-122.505383, 37.822128], [-122.522836, 37.824717], [-122.523585, 37.824828], [-122.537285, 37.830328], [-122.548986, 37.836227], [-122.561487, 37.851827], [-122.584289, 37.859227], [-122.60129, 37.875126], [-122.627113, 37.88608], [-122.639977, 37.897349], [-122.656519, 37.904519], [-122.678474, 37.906604], [-122.682171, 37.90645], [-122.693569, 37.901171], [-122.70264, 37.89382], [-122.727297, 37.904626], [-122.732898, 37.920225], [-122.736898, 37.925825], [-122.754606, 37.935527], [-122.766138, 37.938004], [-122.783244, 37.951334], [-122.791739, 37.969422], [-122.797405, 37.976657], [-122.821383, 37.996735], [-122.856573, 38.016717], [-122.882114, 38.025273], [-122.939711, 38.031908], [-122.956811, 38.02872], [-122.972378, 38.020247], [-122.981776, 38.009119], [-122.982386, 38.004274], [-122.980147, 38.000831], [-122.976764, 37.99568], [-122.97439, 37.992429], [-123.024066, 37.994878], [-123.020562, 37.999544], [-123.016303, 38.001691], [-123.011533, 38.003438], [-122.99242, 38.041758], [-122.960889, 38.112962], [-122.952086, 38.138562], [-122.949074, 38.15406], [-122.949626, 38.164041], [-122.953629, 38.17567], [-122.965408, 38.187113], [-122.96637, 38.198514], [-122.968112, 38.202428], [-122.991953, 38.233185], [-122.993959, 38.237602], [-122.993235, 38.239686], [-122.987149, 38.237538], [-122.968569, 38.242879], [-122.967203, 38.250691], [-122.977082, 38.267902], [-122.986319, 38.273164], [-122.994603, 38.283096], [-122.997106, 38.289458], [-123.002911, 38.295708], [-122.901726, 38.316943], [-122.7399, 38.207018], [-122.648986, 38.181077], [-122.565093, 38.182217], [-122.490727, 38.109755]]]}, "bbox": [-123.024066, 37.822128, -122.438268, 38.316943]}, {"id": "06045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.821592, 38.85014], [-123.080997, 38.852438], [-123.136253, 38.809136], [-123.26871, 38.808369], [-123.533535, 38.768408], [-123.541837, 38.776764], [-123.571987, 38.798189], [-123.579856, 38.802835], [-123.58638, 38.802857], [-123.600221, 38.814115], [-123.601569, 38.81899], [-123.605317, 38.822765], [-123.638637, 38.843865], [-123.642676, 38.844005], [-123.647387, 38.845472], [-123.652212, 38.854582], [-123.654696, 38.865638], [-123.659846, 38.872529], [-123.688099, 38.893594], [-123.71054, 38.91323], [-123.725367, 38.917438], [-123.72763, 38.9295], [-123.726315, 38.936367], [-123.738886, 38.95412], [-123.732892, 38.954994], [-123.729053, 38.956667], [-123.721347, 38.963879], [-123.711149, 38.977316], [-123.6969, 39.004401], [-123.69074, 39.021293], [-123.690095, 39.031157], [-123.693969, 39.057363], [-123.713392, 39.108422], [-123.721505, 39.125327], [-123.735936, 39.139644], [-123.737913, 39.143442], [-123.742221, 39.164885], [-123.76101, 39.191595], [-123.765891, 39.193657], [-123.774998, 39.212083], [-123.777368, 39.237214], [-123.787893, 39.264327], [-123.798991, 39.271355], [-123.803848, 39.278771], [-123.801757, 39.28353], [-123.803081, 39.291747], [-123.811387, 39.312825], [-123.808772, 39.324368], [-123.817369, 39.3388], [-123.822085, 39.343857], [-123.825331, 39.360814], [-123.826306, 39.36871], [-123.822325, 39.379987], [-123.821887, 39.406809], [-123.81469, 39.446538], [-123.795639, 39.492215], [-123.78417, 39.509419], [-123.778521, 39.521478], [-123.766475, 39.552803], [-123.76721, 39.559852], [-123.787417, 39.604552], [-123.78354, 39.609517], [-123.782322, 39.621486], [-123.78636, 39.659932], [-123.792659, 39.684122], [-123.808208, 39.710715], [-123.824744, 39.718128], [-123.829545, 39.723071], [-123.831599, 39.730629], [-123.835092, 39.738768], [-123.838089, 39.752409], [-123.83715, 39.776232], [-123.839797, 39.795637], [-123.851714, 39.832041], [-123.853764, 39.8341], [-123.881458, 39.845422], [-123.907664, 39.863028], [-123.915142, 39.875313], [-123.915853, 39.881114], [-123.930047, 39.909697], [-123.954952, 39.922373], [-123.962655, 39.937635], [-123.980031, 39.962458], [-123.99586, 39.973045], [-124.023938, 40.001284], [-123.544458, 40.001923], [-123.544563, 39.977015], [-122.934013, 39.978131], [-122.937654, 39.798156], [-122.892676, 39.708898], [-122.885352, 39.580108], [-122.89031, 39.529014], [-123.063181, 39.503539], [-123.075114, 39.407683], [-122.994839, 39.235924], [-123.077812, 39.173791], [-123.093013, 39.071994], [-123.028035, 38.996593], [-122.98664, 38.997283], [-122.948865, 38.90022], [-122.821592, 38.85014]]]}, "bbox": [-124.023938, 38.768408, -122.821592, 40.001923]}, {"id": "06047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.931374, 37.421753], [-120.38767, 37.633364], [-120.26601, 37.400607], [-120.143826, 37.239192], [-120.052055, 37.183108], [-120.400758, 37.117764], [-120.541696, 37.044505], [-120.590566, 36.952641], [-120.65595, 36.952832], [-120.918731, 36.740381], [-121.141523, 36.836656], [-121.215406, 36.961248], [-121.226804, 37.134774], [-120.964223, 37.345782], [-120.931374, 37.421753]]]}, "bbox": [-121.226804, 36.740381, -120.052055, 37.633364]}, {"id": "06053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.213979, 35.789276], [-121.175695, 35.794102], [-121.346363, 35.795183], [-121.356737, 35.804187], [-121.388053, 35.823483], [-121.406823, 35.844623], [-121.413146, 35.855316], [-121.426955, 35.860103], [-121.439584, 35.86695], [-121.462264, 35.885618], [-121.461227, 35.896906], [-121.463452, 35.904416], [-121.472435, 35.91989], [-121.4862, 35.970348], [-121.503112, 36.000299], [-121.51159, 36.006598], [-121.531876, 36.014368], [-121.553716, 36.019798], [-121.569612, 36.021539], [-121.574602, 36.025156], [-121.590395, 36.050363], [-121.589183, 36.053775], [-121.592853, 36.065062], [-121.606845, 36.072065], [-121.618672, 36.087767], [-121.622009, 36.099695], [-121.629634, 36.114452], [-121.680145, 36.165818], [-121.717176, 36.195146], [-121.779851, 36.227407], [-121.797059, 36.234211], [-121.806979, 36.232907], [-121.813734, 36.234235], [-121.826425, 36.24186], [-121.835785, 36.250748], [-121.83935, 36.260478], [-121.851967, 36.277831], [-121.874797, 36.289064], [-121.888491, 36.30281], [-121.894714, 36.317806], [-121.892917, 36.340428], [-121.905446, 36.358269], [-121.902669, 36.363901], [-121.901813, 36.381879], [-121.903195, 36.393603], [-121.905657, 36.398206], [-121.914378, 36.404344], [-121.917463, 36.414809], [-121.91474, 36.42589], [-121.9255, 36.453918], [-121.937205, 36.472488], [-121.9416, 36.485602], [-121.939216, 36.496896], [-121.938763, 36.506423], [-121.943678, 36.511802], [-121.944666, 36.521861], [-121.928769, 36.523147], [-121.925937, 36.525173], [-121.932508, 36.559935], [-121.942533, 36.566435], [-121.949659, 36.567602], [-121.95146, 36.564009], [-121.957335, 36.564482], [-121.972594, 36.57337], [-121.978592, 36.580488], [-121.970427, 36.582754], [-121.941666, 36.618059], [-121.938551, 36.633908], [-121.93643, 36.636746], [-121.929666, 36.636959], [-121.923866, 36.634559], [-121.890164, 36.609259], [-121.889064, 36.601759], [-121.886764, 36.601459], [-121.871364, 36.604559], [-121.860604, 36.611136], [-121.842263, 36.630059], [-121.831995, 36.644856], [-121.825052, 36.657207], [-121.814462, 36.682858], [-121.807062, 36.714157], [-121.805643, 36.750239], [-121.788278, 36.803994], [-121.791544, 36.815186], [-121.809363, 36.848654], [-121.810552, 36.850648], [-121.745288, 36.909341], [-121.644001, 36.893996], [-121.597698, 36.83735], [-121.45134, 36.724793], [-121.468086, 36.685518], [-121.350092, 36.648357], [-121.318373, 36.610026], [-121.311788, 36.502736], [-121.244091, 36.506911], [-121.193465, 36.445751], [-121.040797, 36.323969], [-121.02724, 36.259893], [-120.920551, 36.311012], [-120.86508, 36.292578], [-120.761483, 36.20358], [-120.718169, 36.196848], [-120.75834, 36.308604], [-120.678582, 36.267319], [-120.62691, 36.203227], [-120.648784, 36.10799], [-120.315068, 35.907186], [-120.243275, 35.877669], [-120.213979, 35.789276]]]}, "bbox": [-121.978592, 35.789276, -120.213979, 36.909341]}, {"id": "06057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.279533, 39.034618], [-121.266911, 39.271609], [-121.127481, 39.380237], [-121.022085, 39.391558], [-120.755729, 39.452663], [-120.654332, 39.526889], [-120.575059, 39.52228], [-120.505445, 39.446117], [-120.003117, 39.445045], [-120.005318, 39.316479], [-120.645795, 39.315155], [-120.691606, 39.303981], [-120.857909, 39.206235], [-120.986348, 39.102234], [-121.068788, 39.005177], [-121.137397, 39.037858], [-121.279533, 39.034618]]]}, "bbox": [-121.279533, 39.005177, -120.003117, 39.526889]}, {"id": "06059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-118.093008, 33.786289], [-118.084597, 33.803216], [-118.072597, 33.815115], [-118.063162, 33.81961], [-118.063268, 33.82422], [-117.976586, 33.906225], [-117.976588, 33.909757], [-117.976692, 33.910614], [-117.976571, 33.911205], [-117.976498, 33.919171], [-117.97653, 33.928034], [-117.783287, 33.946411], [-117.680289, 33.877412], [-117.673749, 33.870831], [-117.533999, 33.710355], [-117.474573, 33.703811], [-117.459817, 33.691714], [-117.412987, 33.659045], [-117.509722, 33.505019], [-117.59588, 33.386629], [-117.607905, 33.406317], [-117.631682, 33.430528], [-117.645582, 33.440728], [-117.645592, 33.440733], [-117.684584, 33.461927], [-117.689284, 33.460155], [-117.691984, 33.456627], [-117.691384, 33.454028], [-117.715349, 33.460556], [-117.726486, 33.483427], [-117.761387, 33.516326], [-117.784888, 33.541525], [-117.801288, 33.546324], [-117.814188, 33.552224], [-117.840289, 33.573523], [-117.87679, 33.592322], [-117.89979, 33.599622], [-117.927091, 33.605521], [-117.940591, 33.620021], [-117.957114, 33.629466], [-118.000593, 33.654319], [-118.029694, 33.676418], [-118.064895, 33.711018], [-118.088896, 33.729817], [-118.101097, 33.734117], [-118.116703, 33.743549], [-118.09197, 33.758472], [-118.099107, 33.776518], [-118.093008, 33.786289]]]}, "bbox": [-118.116703, 33.386629, -117.412987, 33.946411]}, {"id": "06061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.005318, 39.316479], [-120.00532, 39.31635], [-120.005413, 39.313848], [-120.005414, 39.313345], [-120.005743, 39.228664], [-120.005746, 39.22521], [-120.004504, 39.165599], [-120.003402, 39.112687], [-120.002461, 39.067489], [-120.143663, 39.067285], [-120.184098, 39.031014], [-120.43524, 39.028397], [-120.470985, 38.965507], [-120.556321, 38.915164], [-120.642458, 38.944404], [-120.746395, 39.010352], [-121.040406, 38.915651], [-121.141009, 38.71198], [-121.151857, 38.711502], [-121.188571, 38.714308], [-121.242795, 38.718241], [-121.484396, 38.734598], [-121.469356, 38.925992], [-121.414885, 38.996429], [-121.279533, 39.034618], [-121.137397, 39.037858], [-121.068788, 39.005177], [-120.986348, 39.102234], [-120.857909, 39.206235], [-120.691606, 39.303981], [-120.645795, 39.315155], [-120.005318, 39.316479]]]}, "bbox": [-121.484396, 38.711502, -120.002461, 39.316479]}, {"id": "06065", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-117.284475, 34.019015], [-117.225372, 34.004314], [-116.929357, 34.004914], [-116.929558, 34.034113], [-116.457775, 34.032881], [-115.316212, 34.03411], [-115.316065, 34.077843], [-114.435429, 34.079727], [-114.434949, 34.037784], [-114.438266, 34.022609], [-114.46361, 33.993431], [-114.499883, 33.961789], [-114.518434, 33.917518], [-114.525539, 33.838614], [-114.523365, 33.80612], [-114.50434, 33.756381], [-114.494197, 33.707922], [-114.496489, 33.696901], [-114.519113, 33.688473], [-114.523959, 33.685879], [-114.530348, 33.679245], [-114.540617, 33.591412], [-114.5403, 33.580615], [-114.535965, 33.569154], [-114.535664, 33.568788], [-114.558898, 33.531819], [-114.594534, 33.495059], [-114.622918, 33.456561], [-114.627125, 33.433554], [-115.467506, 33.426992], [-116.085165, 33.425932], [-116.197591, 33.428893], [-116.617687, 33.427354], [-117.079721, 33.43033], [-117.241271, 33.431993], [-117.370925, 33.490549], [-117.509722, 33.505019], [-117.412987, 33.659045], [-117.459817, 33.691714], [-117.474573, 33.703811], [-117.533999, 33.710355], [-117.673749, 33.870831], [-117.600066, 33.975316], [-117.558312, 34.033451], [-117.336161, 34.019378], [-117.284475, 34.019015]]]}, "bbox": [-117.673749, 33.425932, -114.434949, 34.079727]}, {"id": "06067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.242795, 38.718241], [-121.188571, 38.714308], [-121.151857, 38.711502], [-121.141009, 38.71198], [-121.133264, 38.705427], [-121.118617, 38.717118], [-121.027507, 38.508292], [-121.027084, 38.300252], [-121.344024, 38.22826], [-121.484317, 38.241509], [-121.580022, 38.094414], [-121.679265, 38.089319], [-121.737824, 38.02663], [-121.862462, 38.06603], [-121.713926, 38.084542], [-121.688233, 38.145421], [-121.602763, 38.230219], [-121.603208, 38.237283], [-121.602121, 38.241674], [-121.601993, 38.252426], [-121.600249, 38.257817], [-121.60401, 38.270103], [-121.60073, 38.278375], [-121.605258, 38.295352], [-121.593273, 38.313089], [-121.521641, 38.360104], [-121.504139, 38.466563], [-121.538766, 38.474707], [-121.559167, 38.498007], [-121.51129, 38.54629], [-121.520965, 38.566205], [-121.506269, 38.586305], [-121.527667, 38.604604], [-121.549869, 38.599405], [-121.576068, 38.648604], [-121.594069, 38.644106], [-121.62576, 38.673133], [-121.630446, 38.697571], [-121.605774, 38.718319], [-121.602894, 38.735838], [-121.521767, 38.736401], [-121.484396, 38.734598], [-121.242795, 38.718241]]]}, "bbox": [-121.862462, 38.02663, -121.027084, 38.736401]}, {"id": "06071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-115.648029, 35.809629], [-115.647683, 35.809358], [-115.647202, 35.808995], [-115.406079, 35.618613], [-115.404537, 35.617605], [-115.393996, 35.609344], [-115.391535, 35.607271], [-115.388866, 35.605171], [-115.303743, 35.538207], [-115.271342, 35.51266], [-115.225273, 35.475907], [-115.160599, 35.424313], [-115.160068, 35.424129], [-115.146788, 35.413662], [-115.145813, 35.413182], [-114.92548, 35.237054], [-114.925381, 35.237039], [-114.80503, 35.140284], [-114.804249, 35.139689], [-114.633013, 35.002085], [-114.62919, 34.991887], [-114.629015, 34.986148], [-114.630877, 34.907263], [-114.636725, 34.889107], [-114.635176, 34.875003], [-114.633051, 34.869971], [-114.552682, 34.766871], [-114.465607, 34.69226], [-114.452547, 34.653494], [-114.339627, 34.451435], [-114.264317, 34.401329], [-114.199482, 34.361373], [-114.176909, 34.349306], [-114.138282, 34.30323], [-114.131489, 34.260387], [-114.133264, 34.258462], [-114.164476, 34.251667], [-114.225861, 34.201774], [-114.244191, 34.179625], [-114.312592, 34.144453], [-114.321618, 34.138093], [-114.366521, 34.118575], [-114.390565, 34.110084], [-114.401352, 34.111652], [-114.411681, 34.110031], [-114.420499, 34.103466], [-114.43338, 34.088413], [-114.435429, 34.079727], [-115.316065, 34.077843], [-115.316212, 34.03411], [-116.457775, 34.032881], [-116.929558, 34.034113], [-116.929357, 34.004914], [-117.225372, 34.004314], [-117.284475, 34.019015], [-117.336161, 34.019378], [-117.558312, 34.033451], [-117.600066, 33.975316], [-117.673749, 33.870831], [-117.680289, 33.877412], [-117.783287, 33.946411], [-117.767752, 34.019429], [-117.735846, 34.018554], [-117.72601, 34.041128], [-117.719481, 34.059731], [-117.711067, 34.079536], [-117.650459, 34.339025], [-117.658798, 34.44058], [-117.667292, 34.822526], [-117.632011, 34.82227], [-117.630126, 35.564071], [-117.616195, 35.680856], [-117.651986, 35.709934], [-117.632996, 35.797251], [-115.735891, 35.79362], [-115.735745, 35.809097], [-115.648925, 35.809128], [-115.648029, 35.809629]]]}, "bbox": [-117.783287, 33.870831, -114.131489, 35.809629]}, {"id": "06073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-116.106159, 32.618328], [-116.390091, 32.59602], [-117.118865, 32.534661], [-117.124862, 32.534156], [-117.133363, 32.575625], [-117.132963, 32.597054], [-117.136664, 32.618754], [-117.139464, 32.627054], [-117.159865, 32.660652], [-117.168866, 32.671952], [-117.180366, 32.681652], [-117.192967, 32.687751], [-117.196767, 32.688851], [-117.213068, 32.687751], [-117.223868, 32.683051], [-117.236239, 32.671353], [-117.246069, 32.669352], [-117.255169, 32.700051], [-117.25757, 32.72605], [-117.25537, 32.745449], [-117.25257, 32.752949], [-117.25497, 32.786948], [-117.26107, 32.803148], [-117.280971, 32.822247], [-117.28217, 32.839547], [-117.28117, 32.843047], [-117.27387, 32.851447], [-117.26497, 32.848947], [-117.26067, 32.852647], [-117.25617, 32.859447], [-117.25167, 32.874346], [-117.25447, 32.900146], [-117.26047, 32.931245], [-117.262547, 32.939542], [-117.28077, 33.012343], [-117.29337, 33.034642], [-117.309771, 33.07454], [-117.315278, 33.093504], [-117.328359, 33.121842], [-117.359484, 33.164231], [-117.362572, 33.168437], [-117.39148, 33.202762], [-117.401926, 33.213598], [-117.445583, 33.268517], [-117.469794, 33.296417], [-117.50565, 33.334063], [-117.547693, 33.365491], [-117.571722, 33.378988], [-117.59588, 33.386629], [-117.509722, 33.505019], [-117.370925, 33.490549], [-117.241271, 33.431993], [-117.079721, 33.43033], [-116.617687, 33.427354], [-116.197591, 33.428893], [-116.085165, 33.425932], [-116.08109, 33.074833], [-116.103137, 32.904115], [-116.106159, 32.618328]]]}, "bbox": [-117.59588, 32.534156, -116.08109, 33.505019]}, {"id": "06075", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.418698, 37.852717], [-122.434403, 37.852434], [-122.443302, 37.855448], [-122.446316, 37.861046], [-122.438565, 37.868367], [-122.430958, 37.872242], [-122.421439, 37.869969], [-122.421341, 37.869946], [-122.41847, 37.861764], [-122.41847, 37.852721], [-122.418698, 37.852717]]], [[[-123.013916, 37.700355], [-123.013897, 37.704478], [-123.012194, 37.706749], [-123.004489, 37.706262], [-123.00019, 37.702937], [-122.997189, 37.697909], [-123.000677, 37.690203], [-123.005543, 37.689392], [-123.011464, 37.691907], [-123.014303, 37.696205], [-123.013916, 37.700355]]], [[[-122.3785, 37.826505], [-122.377879, 37.830648], [-122.369941, 37.832137], [-122.363244, 37.823951], [-122.358779, 37.814278], [-122.362661, 37.807577], [-122.372422, 37.811301], [-122.37267, 37.81651], [-122.3785, 37.826505]]], [[[-122.502427, 37.708133], [-122.506483, 37.723731], [-122.509397, 37.748841], [-122.511983, 37.77113], [-122.514483, 37.780829], [-122.50531, 37.788312], [-122.492883, 37.787929], [-122.485783, 37.790629], [-122.478083, 37.810828], [-122.470336, 37.808671], [-122.463793, 37.804653], [-122.425942, 37.810979], [-122.407452, 37.811441], [-122.398139, 37.80563], [-122.385323, 37.790724], [-122.375854, 37.734979], [-122.370094, 37.732331], [-122.367697, 37.734943], [-122.365478, 37.734621], [-122.356784, 37.729505], [-122.361749, 37.71501], [-122.370411, 37.717572], [-122.391374, 37.708331], [-122.393782, 37.708231], [-122.471319, 37.708305], [-122.471837, 37.708332], [-122.481083, 37.708232], [-122.484883, 37.708332], [-122.485382, 37.708231], [-122.502427, 37.708133]]]]}, "bbox": [-123.014303, 37.689392, -122.356784, 37.872242]}, {"id": "06077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.926449, 38.077421], [-120.920665, 37.738392], [-120.995754, 37.760152], [-121.155849, 37.719844], [-121.258171, 37.653495], [-121.273751, 37.63833], [-121.333388, 37.59105], [-121.471925, 37.481783], [-121.556655, 37.542732], [-121.556936, 37.817218], [-121.550971, 37.831155], [-121.538931, 37.839563], [-121.536595, 37.844723], [-121.538026, 37.849622], [-121.549517, 37.856986], [-121.561813, 37.857135], [-121.56937, 37.858881], [-121.575463, 37.863118], [-121.574849, 37.885021], [-121.569113, 37.901521], [-121.55987, 37.920862], [-121.561937, 37.937612], [-121.56364, 37.94611], [-121.569889, 37.957495], [-121.574823, 37.973025], [-121.579943, 37.976113], [-121.580022, 38.094414], [-121.484317, 38.241509], [-121.344024, 38.22826], [-121.027084, 38.300252], [-120.995497, 38.225405], [-120.93885, 38.088321], [-120.926449, 38.077421]]]}, "bbox": [-121.580022, 37.481783, -120.920665, 38.300252]}, {"id": "06079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.194146, 35.789204], [-120.194053, 35.749964], [-120.193934, 35.749393], [-120.193892, 35.726513], [-120.193918, 35.614359], [-120.085922, 35.614524], [-120.086674, 35.526554], [-119.997382, 35.468702], [-119.997392, 35.439495], [-119.880045, 35.439133], [-119.880172, 35.351211], [-119.809346, 35.350865], [-119.809449, 35.263584], [-119.666663, 35.262527], [-119.667056, 35.174809], [-119.553641, 35.179975], [-119.560975, 35.087673], [-119.472719, 35.076885], [-119.472754, 34.901174], [-119.535757, 34.897576], [-119.672963, 34.973375], [-119.745566, 34.973676], [-119.928419, 35.059794], [-119.980122, 35.057573], [-120.093376, 35.114102], [-120.188383, 35.030378], [-120.334548, 35.006315], [-120.311498, 34.903764], [-120.355343, 34.941265], [-120.513924, 34.989276], [-120.648905, 34.974393], [-120.63999, 35.002963], [-120.63357, 35.033085], [-120.629931, 35.061515], [-120.629583, 35.078362], [-120.630957, 35.101941], [-120.635787, 35.123805], [-120.644311, 35.139616], [-120.651134, 35.147768], [-120.662475, 35.153357], [-120.667994, 35.15203], [-120.675074, 35.153061], [-120.686974, 35.160708], [-120.698906, 35.171192], [-120.704203, 35.173206], [-120.714185, 35.175998], [-120.734231, 35.178472], [-120.74887, 35.177795], [-120.754823, 35.174701], [-120.756862, 35.169208], [-120.756086, 35.160459], [-120.760492, 35.15971], [-120.778998, 35.168897], [-120.786076, 35.177666], [-120.805258, 35.184973], [-120.846674, 35.204429], [-120.856047, 35.206487], [-120.873046, 35.225688], [-120.89679, 35.247877], [-120.896876, 35.25399], [-120.889354, 35.277819], [-120.87957, 35.294184], [-120.8672, 35.327154], [-120.862684, 35.346776], [-120.862133, 35.360763], [-120.866099, 35.393045], [-120.869209, 35.403276], [-120.884757, 35.430196], [-120.896862, 35.442243], [-120.907937, 35.449069], [-120.946546, 35.446715], [-120.950742, 35.44802], [-120.955863, 35.453743], [-120.969436, 35.460197], [-120.976122, 35.459028], [-121.003359, 35.46071], [-121.025621, 35.484598], [-121.05308, 35.50753], [-121.059913, 35.509671], [-121.101595, 35.548814], [-121.126027, 35.593058], [-121.133556, 35.600455], [-121.143561, 35.606046], [-121.166712, 35.635399], [-121.188897, 35.643138], [-121.195291, 35.640734], [-121.251034, 35.656641], [-121.272322, 35.666711], [-121.284973, 35.674109], [-121.289794, 35.689428], [-121.296473, 35.696824], [-121.304583, 35.701794], [-121.314632, 35.71331], [-121.315786, 35.75252], [-121.324918, 35.769347], [-121.332449, 35.783106], [-121.346363, 35.795183], [-121.175695, 35.794102], [-120.213979, 35.789276], [-120.194146, 35.789204]]]}, "bbox": [-121.346363, 34.897576, -119.472719, 35.795183]}, {"id": "06081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.292974, 37.107318], [-122.306139, 37.116383], [-122.313907, 37.118161], [-122.322971, 37.11546], [-122.330463, 37.115338], [-122.337071, 37.117382], [-122.338856, 37.120854], [-122.337085, 37.130795], [-122.337833, 37.135936], [-122.344029, 37.144099], [-122.359791, 37.155574], [-122.36179, 37.163593], [-122.367085, 37.172817], [-122.37927, 37.181128], [-122.390599, 37.182988], [-122.397065, 37.187249], [-122.405073, 37.195791], [-122.407181, 37.219465], [-122.408982, 37.225258], [-122.415822, 37.232839], [-122.419113, 37.24147], [-122.418452, 37.248521], [-122.411686, 37.265844], [-122.401323, 37.337009], [-122.40085, 37.359225], [-122.409258, 37.374805], [-122.423286, 37.392542], [-122.443687, 37.435941], [-122.445987, 37.461541], [-122.452087, 37.48054], [-122.467888, 37.49814], [-122.472388, 37.50054], [-122.476443, 37.498768], [-122.482351, 37.496187], [-122.485888, 37.494641], [-122.486749, 37.49439], [-122.487139, 37.494277], [-122.493789, 37.492341], [-122.494429, 37.49269], [-122.499289, 37.495341], [-122.516689, 37.52134], [-122.519533, 37.537302], [-122.516589, 37.544939], [-122.514789, 37.546139], [-122.513688, 37.552239], [-122.518088, 37.576138], [-122.517187, 37.590637], [-122.501386, 37.599637], [-122.496786, 37.612136], [-122.494085, 37.644035], [-122.496784, 37.686433], [-122.502427, 37.708133], [-122.485382, 37.708231], [-122.484883, 37.708332], [-122.481083, 37.708232], [-122.471837, 37.708332], [-122.471319, 37.708305], [-122.393782, 37.708231], [-122.391374, 37.708331], [-122.39319, 37.707531], [-122.387626, 37.67906], [-122.374291, 37.662206], [-122.3756, 37.652389], [-122.37789, 37.650425], [-122.387381, 37.648462], [-122.386072, 37.637662], [-122.365455, 37.626208], [-122.35531, 37.615736], [-122.358583, 37.611155], [-122.370364, 37.614427], [-122.373309, 37.613773], [-122.378545, 37.605592], [-122.360219, 37.592501], [-122.317676, 37.590865], [-122.315385, 37.587265], [-122.315713, 37.583666], [-122.305895, 37.575484], [-122.262698, 37.572866], [-122.251898, 37.566321], [-122.244372, 37.55814], [-122.242832, 37.557136], [-122.236323, 37.552891], [-122.225135, 37.545594], [-122.214264, 37.538505], [-122.196593, 37.537196], [-122.194957, 37.522469], [-122.168449, 37.504143], [-122.155686, 37.501198], [-122.149632, 37.502671], [-122.140142, 37.507907], [-122.130979, 37.503652], [-122.127706, 37.500053], [-122.116112, 37.505386], [-122.109574, 37.497637], [-122.081473, 37.477838], [-122.190402, 37.431472], [-122.152278, 37.286055], [-122.152774, 37.215444], [-122.317682, 37.186945], [-122.292974, 37.107318]]]}, "bbox": [-122.519533, 37.107318, -122.081473, 37.708332]}, {"id": "06083", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.248484, 33.999329], [-120.247393, 34.001911], [-120.238657, 34.007592], [-120.230001, 34.010136], [-120.221287, 34.010367], [-120.208478, 34.005655], [-120.19578, 34.004284], [-120.167306, 34.008219], [-120.151663, 34.018126], [-120.147647, 34.024831], [-120.140362, 34.025974], [-120.135853, 34.026087], [-120.115058, 34.019866], [-120.090182, 34.019806], [-120.073609, 34.024477], [-120.062778, 34.031161], [-120.061953, 34.033976], [-120.057637, 34.03734], [-120.055107, 34.037729], [-120.043259, 34.035806], [-120.044004, 34.02482], [-120.047798, 34.021227], [-120.050382, 34.013331], [-120.048926, 34.009898], [-120.046575, 34.000002], [-120.041311, 33.994507], [-120.025653, 33.985553], [-120.011123, 33.979894], [-120.003815, 33.979547], [-119.984316, 33.983948], [-119.978876, 33.983081], [-119.979913, 33.969623], [-119.976857, 33.956693], [-119.971141, 33.950401], [-119.97026, 33.944359], [-119.973691, 33.942481], [-120.00096, 33.941554], [-120.017715, 33.936366], [-120.046881, 33.919597], [-120.048315, 33.917625], [-120.048611, 33.915775], [-120.049682, 33.914563], [-120.077793, 33.908886], [-120.098601, 33.907853], [-120.105489, 33.90428], [-120.109137, 33.899129], [-120.121817, 33.895712], [-120.168974, 33.91909], [-120.179049, 33.927994], [-120.18984, 33.947703], [-120.192339, 33.950266], [-120.198602, 33.952211], [-120.200085, 33.956904], [-120.209372, 33.972376], [-120.224461, 33.989059], [-120.248484, 33.999329]]], [[[-119.789798, 34.05726], [-119.770729, 34.055051], [-119.766081, 34.05537], [-119.763688, 34.057155], [-119.755521, 34.056716], [-119.739472, 34.049299], [-119.726437, 34.047908], [-119.712576, 34.043265], [-119.704628, 34.037681], [-119.686507, 34.019805], [-119.637742, 34.013178], [-119.619343, 34.016468], [-119.612226, 34.021256], [-119.604287, 34.031561], [-119.608798, 34.035245], [-119.609239, 34.03735], [-119.59324, 34.049625], [-119.57341, 34.05011], [-119.5667, 34.053452], [-119.529603, 34.041155], [-119.52064, 34.034262], [-119.52177, 34.032247], [-119.532413, 34.024949], [-119.538847, 34.023988], [-119.542449, 34.021082], [-119.54828, 34.009819], [-119.547072, 34.005469], [-119.554472, 33.99782], [-119.560464, 33.99553], [-119.575636, 33.996009], [-119.5902, 33.989712], [-119.596877, 33.988611], [-119.619082, 33.987228], [-119.621117, 33.98899], [-119.64771, 33.987786], [-119.662825, 33.985889], [-119.69011, 33.972225], [-119.706952, 33.969178], [-119.712363, 33.965422], [-119.714696, 33.961439], [-119.721206, 33.959583], [-119.742966, 33.963877], [-119.750438, 33.963759], [-119.758141, 33.959212], [-119.795938, 33.962929], [-119.842748, 33.97034], [-119.873358, 33.980375], [-119.877057, 33.985757], [-119.883033, 34.000802], [-119.884896, 34.008814], [-119.882531, 34.011674], [-119.876916, 34.023527], [-119.876329, 34.032087], [-119.892821, 34.045529], [-119.916216, 34.058351], [-119.923337, 34.069361], [-119.919155, 34.07728], [-119.912857, 34.077508], [-119.89113, 34.072856], [-119.857304, 34.071298], [-119.825865, 34.059794], [-119.818742, 34.052997], [-119.807825, 34.052127], [-119.789798, 34.05726]]], [[[-120.46258, 34.042627], [-120.440248, 34.036918], [-120.418768, 34.052093], [-120.415287, 34.05496], [-120.411314, 34.052869], [-120.403613, 34.050442], [-120.396188, 34.050187], [-120.390906, 34.051994], [-120.374211, 34.062658], [-120.368813, 34.06778], [-120.368584, 34.071214], [-120.370176, 34.074907], [-120.368278, 34.076465], [-120.362251, 34.073056], [-120.354982, 34.059256], [-120.36029, 34.05582], [-120.358608, 34.050235], [-120.346946, 34.046576], [-120.331161, 34.049097], [-120.319032, 34.041979], [-120.313175, 34.036576], [-120.302122, 34.023574], [-120.304543, 34.021171], [-120.317052, 34.018837], [-120.347706, 34.020114], [-120.35532, 34.017914], [-120.35793, 34.015029], [-120.375143, 34.018775], [-120.409368, 34.032198], [-120.415225, 34.032245], [-120.419021, 34.028949], [-120.427408, 34.025425], [-120.454134, 34.028081], [-120.459635, 34.031537], [-120.465329, 34.038448], [-120.46258, 34.042627]]], [[[-120.355343, 34.941265], [-120.311498, 34.903764], [-120.334548, 35.006315], [-120.188383, 35.030378], [-120.093376, 35.114102], [-119.980122, 35.057573], [-119.928419, 35.059794], [-119.745566, 34.973676], [-119.672963, 34.973375], [-119.535757, 34.897576], [-119.472754, 34.901174], [-119.442352, 34.901274], [-119.442278, 34.465509], [-119.440414, 34.441842], [-119.444717, 34.42951], [-119.453423, 34.42861], [-119.454277, 34.418166], [-119.445411, 34.408881], [-119.454101, 34.395568], [-119.472481, 34.38383], [-119.473793, 34.379115], [-119.478265, 34.377197], [-119.510655, 34.386295], [-119.536957, 34.395495], [-119.559459, 34.413395], [-119.616862, 34.420995], [-119.638864, 34.415696], [-119.648664, 34.417396], [-119.671866, 34.416096], [-119.688167, 34.412497], [-119.684666, 34.408297], [-119.691749, 34.403154], [-119.709067, 34.395397], [-119.729369, 34.395897], [-119.74547, 34.402898], [-119.785871, 34.415997], [-119.794771, 34.417597], [-119.835771, 34.415796], [-119.853771, 34.407996], [-119.873971, 34.408795], [-119.925227, 34.433931], [-119.956433, 34.435288], [-119.971951, 34.444641], [-120.008077, 34.460447], [-120.038828, 34.463434], [-120.050682, 34.461651], [-120.088591, 34.460208], [-120.097212, 34.461809], [-120.118411, 34.469927], [-120.141165, 34.473405], [-120.183505, 34.470372], [-120.225498, 34.470587], [-120.238002, 34.468098], [-120.25777, 34.467451], [-120.283001, 34.468354], [-120.295051, 34.470623], [-120.299169, 34.469731], [-120.301822, 34.467077], [-120.341369, 34.458789], [-120.441975, 34.451512], [-120.451425, 34.447094], [-120.471376, 34.447846], [-120.47661, 34.475131], [-120.480372, 34.481059], [-120.490523, 34.490075], [-120.511421, 34.522953], [-120.524776, 34.531291], [-120.581293, 34.556959], [-120.608355, 34.556656], [-120.612005, 34.553564], [-120.622575, 34.554017], [-120.637805, 34.56622], [-120.645739, 34.581035], [-120.640244, 34.604406], [-120.625127, 34.634489], [-120.60197, 34.692095], [-120.60045, 34.70464], [-120.601672, 34.709721], [-120.614852, 34.730709], [-120.62632, 34.738072], [-120.637415, 34.755895], [-120.62297, 34.7933], [-120.616296, 34.816308], [-120.609898, 34.842751], [-120.610266, 34.85818], [-120.616325, 34.866739], [-120.639283, 34.880413], [-120.642212, 34.894145], [-120.647328, 34.901133], [-120.662889, 34.901183], [-120.670835, 34.904115], [-120.648905, 34.974393], [-120.513924, 34.989276], [-120.355343, 34.941265]]]]}, "bbox": [-120.670835, 33.895712, -119.440414, 35.114102]}, {"id": "06085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.654038, 36.950584], [-121.7576, 37.04963], [-122.015966, 37.165658], [-122.152278, 37.286055], [-122.190402, 37.431472], [-122.081473, 37.477838], [-122.052648, 37.459656], [-122.045271, 37.460276], [-121.855762, 37.484537], [-121.472648, 37.48217], [-121.405753, 37.31099], [-121.459051, 37.282739], [-121.404636, 37.155989], [-121.282271, 37.183675], [-121.226804, 37.134774], [-121.215406, 36.961248], [-121.501488, 36.971895], [-121.581354, 36.899152], [-121.654038, 36.950584]]]}, "bbox": [-122.190402, 36.899152, -121.215406, 37.484537]}, {"id": "06087", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.015966, 37.165658], [-121.7576, 37.04963], [-121.654038, 36.950584], [-121.581354, 36.899152], [-121.607354, 36.899452], [-121.629489, 36.911681], [-121.644001, 36.893996], [-121.745288, 36.909341], [-121.810552, 36.850648], [-121.827664, 36.879353], [-121.862266, 36.931552], [-121.880167, 36.950151], [-121.894667, 36.961851], [-121.906468, 36.96895], [-121.930069, 36.97815], [-121.93947, 36.97805], [-121.95167, 36.97145], [-121.972771, 36.954151], [-121.975871, 36.954051], [-121.983896, 36.958727], [-122.012373, 36.96455], [-122.023373, 36.96215], [-122.027174, 36.95115], [-122.050122, 36.948523], [-122.066421, 36.948271], [-122.079356, 36.950783], [-122.105976, 36.955951], [-122.140578, 36.97495], [-122.155078, 36.98085], [-122.186879, 37.00345], [-122.20618, 37.013949], [-122.252181, 37.059448], [-122.260481, 37.072548], [-122.284882, 37.101747], [-122.292974, 37.107318], [-122.317682, 37.186945], [-122.152774, 37.215444], [-122.152278, 37.286055], [-122.015966, 37.165658]]]}, "bbox": [-122.317682, 36.850648, -121.581354, 37.286055]}, {"id": "06089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-123.065426, 40.286971], [-123.068789, 40.332233], [-122.998682, 40.418142], [-122.903738, 40.445071], [-122.845954, 40.505181], [-122.695298, 40.572514], [-122.752266, 40.689642], [-122.445453, 41.15793], [-122.498376, 41.182675], [-122.376123, 41.182904], [-121.446495, 41.183484], [-121.331786, 41.183886], [-121.319972, 40.905886], [-121.327826, 40.445367], [-121.497635, 40.445591], [-121.64633, 40.434726], [-121.806539, 40.44495], [-121.940989, 40.415331], [-122.010316, 40.426558], [-122.310412, 40.371064], [-122.445021, 40.373398], [-122.523997, 40.3945], [-122.651341, 40.328288], [-122.872769, 40.348848], [-122.918472, 40.306758], [-123.065426, 40.286971]]]}, "bbox": [-123.068789, 40.286971, -121.319972, 41.183886]}, {"id": "06095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.088835, 38.384151], [-122.103281, 38.513348], [-122.011673, 38.488991], [-121.940285, 38.533384], [-121.694679, 38.52705], [-121.693697, 38.313732], [-121.593273, 38.313089], [-121.605258, 38.295352], [-121.60073, 38.278375], [-121.60401, 38.270103], [-121.600249, 38.257817], [-121.601993, 38.252426], [-121.602121, 38.241674], [-121.603208, 38.237283], [-121.602763, 38.230219], [-121.688233, 38.145421], [-121.713926, 38.084542], [-121.862462, 38.06603], [-121.865189, 38.059909], [-121.869469, 38.054519], [-122.050386, 38.060198], [-122.123973, 38.035717], [-122.266669, 38.06007], [-122.273006, 38.07438], [-122.282824, 38.082889], [-122.301804, 38.105142], [-122.314567, 38.115287], [-122.366273, 38.141467], [-122.39638, 38.149976], [-122.403514, 38.150624], [-122.406978, 38.155663], [-122.406786, 38.155632], [-122.19538, 38.155017], [-122.205982, 38.315713], [-122.064779, 38.315912], [-122.088835, 38.384151]]]}, "bbox": [-122.406978, 38.035717, -121.593273, 38.533384]}, {"id": "06097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-123.26871, 38.808369], [-123.136253, 38.809136], [-123.080997, 38.852438], [-122.821592, 38.85014], [-122.627396, 38.667506], [-122.646268, 38.59912], [-122.543893, 38.519966], [-122.378987, 38.250714], [-122.406786, 38.155632], [-122.406978, 38.155663], [-122.403514, 38.150624], [-122.40358, 38.15063], [-122.409798, 38.136231], [-122.439577, 38.116923], [-122.450377, 38.116269], [-122.454958, 38.118887], [-122.484411, 38.11496], [-122.489974, 38.112014], [-122.490727, 38.109755], [-122.565093, 38.182217], [-122.648986, 38.181077], [-122.7399, 38.207018], [-122.901726, 38.316943], [-123.002911, 38.295708], [-123.004122, 38.297012], [-123.024333, 38.310573], [-123.038742, 38.313576], [-123.051061, 38.310693], [-123.053476, 38.305722], [-123.052021, 38.302246], [-123.053504, 38.299385], [-123.058239, 38.298355], [-123.063671, 38.302178], [-123.074684, 38.322574], [-123.068437, 38.33521], [-123.068265, 38.359865], [-123.085572, 38.390525], [-123.103706, 38.415541], [-123.122379, 38.437314], [-123.128825, 38.450418], [-123.145325, 38.459422], [-123.166428, 38.474947], [-123.202277, 38.494314], [-123.249797, 38.511045], [-123.287156, 38.540223], [-123.297151, 38.543452], [-123.331899, 38.565542], [-123.343338, 38.590008], [-123.349612, 38.596805], [-123.371876, 38.607235], [-123.379303, 38.621953], [-123.398166, 38.647044], [-123.40301, 38.649449], [-123.405663, 38.656729], [-123.43272, 38.687131], [-123.441774, 38.699744], [-123.461291, 38.717001], [-123.490021, 38.732213], [-123.514784, 38.741966], [-123.525152, 38.753801], [-123.533535, 38.768408], [-123.26871, 38.808369]]]}, "bbox": [-123.533535, 38.109755, -122.378987, 38.852438]}, {"id": "06099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.931374, 37.421753], [-120.964223, 37.345782], [-121.226804, 37.134774], [-121.282271, 37.183675], [-121.404636, 37.155989], [-121.459051, 37.282739], [-121.405753, 37.31099], [-121.472648, 37.48217], [-121.471925, 37.481783], [-121.333388, 37.59105], [-121.273751, 37.63833], [-121.258171, 37.653495], [-121.155849, 37.719844], [-120.995754, 37.760152], [-120.920665, 37.738392], [-120.926449, 38.077421], [-120.652673, 37.831422], [-120.387613, 37.633704], [-120.387329, 37.633499], [-120.38767, 37.633364], [-120.931374, 37.421753]]]}, "bbox": [-121.472648, 37.134774, -120.387329, 38.077421]}, {"id": "06101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.484396, 38.734598], [-121.521767, 38.736401], [-121.602894, 38.735838], [-121.685998, 38.763371], [-121.723149, 38.851306], [-121.835488, 38.924481], [-121.847964, 39.070817], [-121.945509, 39.180959], [-121.908269, 39.303878], [-121.62376, 39.295621], [-121.571297, 38.938918], [-121.414885, 38.996429], [-121.469356, 38.925992], [-121.484396, 38.734598]]]}, "bbox": [-121.945509, 38.734598, -121.414885, 39.303878]}, {"id": "06103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.934013, 39.978131], [-122.989623, 40.145496], [-122.989015, 40.250145], [-123.065426, 40.286971], [-122.918472, 40.306758], [-122.872769, 40.348848], [-122.651341, 40.328288], [-122.523997, 40.3945], [-122.445021, 40.373398], [-122.310412, 40.371064], [-122.010316, 40.426558], [-121.940989, 40.415331], [-121.806539, 40.44495], [-121.64633, 40.434726], [-121.497635, 40.445591], [-121.470395, 40.350213], [-121.345571, 40.312667], [-121.368395, 40.21223], [-121.436886, 40.151905], [-121.586407, 40.100522], [-121.646032, 39.982527], [-121.703241, 39.98423], [-121.804041, 39.884344], [-122.044865, 39.883771], [-122.046471, 39.797648], [-122.937654, 39.798156], [-122.934013, 39.978131]]]}, "bbox": [-123.065426, 39.797648, -121.345571, 40.445591]}, {"id": "06107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-119.214033, 35.790489], [-119.534559, 35.789758], [-119.538116, 35.789567], [-119.529358, 36.26985], [-119.474607, 36.269025], [-119.474892, 36.400953], [-119.528792, 36.401465], [-119.573194, 36.488835], [-119.466322, 36.575238], [-119.305102, 36.573725], [-119.304625, 36.660606], [-118.984779, 36.657147], [-118.982441, 36.741646], [-118.360586, 36.744773], [-118.366328, 36.691635], [-118.274624, 36.597334], [-118.21482, 36.435036], [-118.100317, 36.346137], [-118.127147, 36.279656], [-118.033611, 36.008944], [-118.003577, 35.983718], [-117.980761, 35.867515], [-117.998258, 35.868782], [-118.008043, 35.789161], [-118.270456, 35.790009], [-119.214033, 35.790489]]]}, "bbox": [-119.573194, 35.789161, -117.980761, 36.744773]}, {"id": "06109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.652673, 37.831422], [-120.514952, 37.95339], [-120.534814, 37.991174], [-120.504516, 37.991144], [-120.176177, 38.374014], [-120.019951, 38.433521], [-119.884749, 38.356185], [-119.753481, 38.416759], [-119.639205, 38.32688], [-119.632671, 38.198858], [-119.345922, 38.083113], [-119.30459, 38.023891], [-119.308389, 37.946824], [-119.200283, 37.885827], [-119.20128, 37.804329], [-119.268979, 37.73923], [-119.288381, 37.74503], [-119.293382, 37.767929], [-119.308995, 37.777986], [-119.535699, 37.904122], [-119.646203, 37.846823], [-119.667203, 37.801224], [-119.809409, 37.755025], [-119.907013, 37.757926], [-120.079508, 37.828808], [-120.127226, 37.781566], [-120.345437, 37.724787], [-120.325943, 37.648966], [-120.391931, 37.683559], [-120.387613, 37.633704], [-120.652673, 37.831422]]]}, "bbox": [-120.652673, 37.633704, -119.200283, 38.433521]}, {"id": "06111", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-119.543842, 33.280329], [-119.532941, 33.284728], [-119.528141, 33.284929], [-119.50504, 33.272829], [-119.48278, 33.263973], [-119.465717, 33.259239], [-119.458466, 33.254661], [-119.429559, 33.228167], [-119.444269, 33.21919], [-119.464725, 33.215432], [-119.476029, 33.21552], [-119.500684, 33.220569], [-119.511659, 33.223027], [-119.517514, 33.226737], [-119.545872, 33.233406], [-119.564971, 33.24744], [-119.565641, 33.250029], [-119.566014, 33.252639], [-119.570642, 33.257729], [-119.578942, 33.278628], [-119.562042, 33.271129], [-119.555242, 33.273429], [-119.547642, 33.280328], [-119.543842, 33.280329]]], [[[-119.422972, 34.004368], [-119.427589, 34.006445], [-119.437734, 34.01], [-119.441116, 34.012426], [-119.441226, 34.014075], [-119.433912, 34.015975], [-119.421376, 34.015012], [-119.411317, 34.008005], [-119.396251, 34.005918], [-119.389983, 34.006099], [-119.366591, 34.016785], [-119.357462, 34.015919], [-119.376396, 34.010551], [-119.391551, 34.002505], [-119.414528, 34.004994], [-119.422972, 34.004368]]], [[[-118.881364, 34.790629], [-118.796692, 34.616559], [-118.650859, 34.320484], [-118.636789, 34.291804], [-118.633473, 34.269626], [-118.668152, 34.168195], [-118.788889, 34.168214], [-118.940965, 34.07483], [-118.944887, 34.04534], [-118.954722, 34.048167], [-118.977751, 34.059822], [-118.99698, 34.065943], [-119.004644, 34.066231], [-119.037494, 34.083111], [-119.069959, 34.09047], [-119.088536, 34.09831], [-119.098216, 34.099334], [-119.109784, 34.094566], [-119.130169, 34.100102], [-119.159554, 34.119653], [-119.18864, 34.139005], [-119.20314, 34.144505], [-119.211241, 34.144905], [-119.216441, 34.146105], [-119.227743, 34.161728], [-119.237142, 34.175804], [-119.257043, 34.213304], [-119.265927, 34.234609], [-119.270144, 34.252903], [-119.278644, 34.266902], [-119.290945, 34.274902], [-119.302131, 34.272761], [-119.313034, 34.275689], [-119.337475, 34.290576], [-119.349187, 34.304383], [-119.370356, 34.319486], [-119.37578, 34.321118], [-119.388249, 34.317398], [-119.390449, 34.318198], [-119.42777, 34.353016], [-119.431066, 34.355297], [-119.435888, 34.355839], [-119.461036, 34.374064], [-119.472678, 34.375628], [-119.478265, 34.377197], [-119.473793, 34.379115], [-119.472481, 34.38383], [-119.454101, 34.395568], [-119.445411, 34.408881], [-119.454277, 34.418166], [-119.453423, 34.42861], [-119.444717, 34.42951], [-119.440414, 34.441842], [-119.442278, 34.465509], [-119.442352, 34.901274], [-119.276946, 34.879675], [-119.243645, 34.814178], [-118.976721, 34.812199], [-118.881364, 34.790629]]]]}, "bbox": [-119.578942, 33.215432, -118.633473, 34.901274]}, {"id": "06113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.504139, 38.466563], [-121.521641, 38.360104], [-121.593273, 38.313089], [-121.693697, 38.313732], [-121.694679, 38.52705], [-121.940285, 38.533384], [-122.011673, 38.488991], [-122.103281, 38.513348], [-122.111563, 38.524051], [-122.128123, 38.583697], [-122.151772, 38.625297], [-122.168349, 38.619297], [-122.164944, 38.642462], [-122.287999, 38.839932], [-122.395056, 38.864245], [-122.340172, 38.924246], [-122.337967, 38.923945], [-121.835488, 38.924481], [-121.723149, 38.851306], [-121.685998, 38.763371], [-121.602894, 38.735838], [-121.605774, 38.718319], [-121.630446, 38.697571], [-121.62576, 38.673133], [-121.594069, 38.644106], [-121.576068, 38.648604], [-121.549869, 38.599405], [-121.527667, 38.604604], [-121.506269, 38.586305], [-121.520965, 38.566205], [-121.51129, 38.54629], [-121.559167, 38.498007], [-121.538766, 38.474707], [-121.504139, 38.466563]]]}, "bbox": [-122.395056, 38.313089, -121.504139, 38.924481]}, {"id": "08001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-103.706547, 39.739894], [-104.734969, 39.740302], [-104.884646, 39.740156], [-104.856377, 39.768673], [-104.734601, 39.769181], [-104.76247, 39.82298], [-104.619906, 39.826633], [-104.600435, 39.899459], [-104.692934, 39.914183], [-104.79091, 39.79825], [-105.053246, 39.791063], [-105.053162, 39.799239], [-105.052829, 39.803874], [-105.053256, 39.806497], [-105.05327, 39.820028], [-105.05319, 39.849251], [-105.0529, 39.852042], [-105.053245, 39.860018], [-105.052884, 39.913795], [-104.961408, 40.000337], [-104.923689, 40.000327], [-104.922153, 40.00033], [-104.150332, 40.000856], [-103.705701, 40.001366], [-103.705826, 39.999984], [-103.706547, 39.739894]]]}, "bbox": [-105.05327, 39.739894, -103.705701, 40.001366]}, {"id": "08005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.884646, 39.740156], [-104.734969, 39.740302], [-103.706547, 39.739894], [-103.707072, 39.566295], [-103.714355, 39.566331], [-104.660626, 39.565909], [-105.04874, 39.566088], [-105.05414, 39.566088], [-105.053439, 39.621423], [-105.053411, 39.631586], [-105.034822, 39.627809], [-105.032038, 39.657087], [-105.015696, 39.678684], [-104.931703, 39.653044], [-104.913341, 39.624213], [-104.911935, 39.624346], [-104.911686, 39.624342], [-104.908862, 39.624301], [-104.908587, 39.624297], [-104.906942, 39.624268], [-104.906394, 39.624259], [-104.90549, 39.624158], [-104.90403, 39.623995], [-104.902451, 39.623939], [-104.901763, 39.623907], [-104.901719, 39.623905], [-104.901561, 39.623905], [-104.900933, 39.623906], [-104.899371, 39.624097], [-104.899339, 39.624097], [-104.899263, 39.624097], [-104.898639, 39.624099], [-104.897084, 39.624127], [-104.894642, 39.624173], [-104.894522, 39.624175], [-104.892667, 39.624135], [-104.891733, 39.624115], [-104.889813, 39.624191], [-104.889661, 39.6242], [-104.889037, 39.624176], [-104.888758, 39.624165], [-104.888331, 39.624143], [-104.887773, 39.624116], [-104.885282, 39.624129], [-104.88528, 39.627128], [-104.885213, 39.629087], [-104.885218, 39.629513], [-104.885231, 39.631345], [-104.885156, 39.633467], [-104.885173, 39.636268], [-104.885167, 39.636493], [-104.885132, 39.638093], [-104.885121, 39.638283], [-104.885124, 39.638444], [-104.885128, 39.638637], [-104.885129, 39.638788], [-104.885119, 39.638961], [-104.885112, 39.639262], [-104.884936, 39.639344], [-104.884765, 39.639425], [-104.88368, 39.639939], [-104.882917, 39.640301], [-104.882827, 39.640345], [-104.880929, 39.641216], [-104.880329, 39.641491], [-104.880322, 39.641651], [-104.880326, 39.64173], [-104.880326, 39.641819], [-104.880338, 39.641955], [-104.88034, 39.641993], [-104.880368, 39.642193], [-104.880381, 39.642475], [-104.880372, 39.642605], [-104.880313, 39.643949], [-104.880313, 39.645902], [-104.880239, 39.645993], [-104.880239, 39.646068], [-104.880246, 39.64653], [-104.880246, 39.647751], [-104.880228, 39.647994], [-104.880086, 39.650773], [-104.88014, 39.653057], [-104.880078, 39.653055], [-104.878034, 39.653051], [-104.877498, 39.653051], [-104.877497, 39.653052], [-104.877218, 39.652875], [-104.876306, 39.652295], [-104.876297, 39.652021], [-104.876281, 39.651459], [-104.87624, 39.65011], [-104.876195, 39.6486], [-104.876195, 39.648583], [-104.876151, 39.647061], [-104.876149, 39.647004], [-104.87613, 39.646499], [-104.876224, 39.644301], [-104.875552, 39.644617], [-104.857203, 39.653246], [-104.85683, 39.653419], [-104.856753, 39.653456], [-104.856038, 39.654178], [-104.854747, 39.654888], [-104.854474, 39.655011], [-104.852944, 39.655706], [-104.850762, 39.656305], [-104.849397, 39.656482], [-104.848967, 39.656538], [-104.84812, 39.656648], [-104.847697, 39.656704], [-104.847639, 39.656712], [-104.847119, 39.65678], [-104.847449, 39.656783], [-104.847536, 39.656785], [-104.847604, 39.656786], [-104.847733, 39.656788], [-104.847731, 39.656927], [-104.84773, 39.657239], [-104.84773, 39.657789], [-104.84794, 39.657824], [-104.848048, 39.657842], [-104.848336, 39.657891], [-104.848332, 39.659161], [-104.884646, 39.740156]]]}, "bbox": [-105.05414, 39.565909, -103.706547, 39.740302]}, {"id": "08013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-105.055089, 40.261793], [-105.055375, 40.144929], [-105.055376, 40.144692], [-105.055432, 40.000251], [-105.052823, 40.00026], [-105.052774, 39.986398], [-105.052792, 39.979489], [-105.052793, 39.97879], [-105.052794, 39.978581], [-105.052797, 39.977574], [-105.054688, 39.976889], [-105.057654, 39.97586], [-105.05784, 39.975787], [-105.058567, 39.975502], [-105.060445, 39.974768], [-105.060968, 39.974563], [-105.063527, 39.973444], [-105.066609, 39.971925], [-105.06742, 39.971289], [-105.069605, 39.970227], [-105.070468, 39.969721], [-105.071886, 39.968544], [-105.073059, 39.967308], [-105.074735, 39.965752], [-105.0757, 39.964623], [-105.078632, 39.962182], [-105.079885, 39.961657], [-105.07999, 39.961613], [-105.080562, 39.961373], [-105.081957, 39.961003], [-105.082093, 39.960967], [-105.084027, 39.960454], [-105.085583, 39.960123], [-105.085764, 39.960084], [-105.085877, 39.960061], [-105.085942, 39.960055], [-105.08595, 39.960055], [-105.085961, 39.960054], [-105.085982, 39.960052], [-105.086002, 39.96005], [-105.086082, 39.960043], [-105.086858, 39.959972], [-105.086951, 39.959741], [-105.087033, 39.959538], [-105.08731, 39.959551], [-105.087393, 39.959555], [-105.087748, 39.959571], [-105.087748, 39.95888], [-105.087748, 39.958707], [-105.087748, 39.958197], [-105.088636, 39.958182], [-105.088616, 39.958052], [-105.088615, 39.958042], [-105.088614, 39.958037], [-105.088613, 39.95803], [-105.088597, 39.957919], [-105.088588, 39.957865], [-105.088441, 39.957858], [-105.088332, 39.957853], [-105.088298, 39.957851], [-105.08787, 39.95784], [-105.087841, 39.957839], [-105.087834, 39.957839], [-105.087724, 39.957838], [-105.087315, 39.957833], [-105.086948, 39.957843], [-105.086861, 39.957849], [-105.085846, 39.957893], [-105.085794, 39.957938], [-105.085754, 39.957971], [-105.085734, 39.957988], [-105.085717, 39.958003], [-105.085702, 39.958016], [-105.085683, 39.95802], [-105.085673, 39.958022], [-105.085663, 39.958024], [-105.08565, 39.958027], [-105.085638, 39.95803], [-105.085611, 39.958036], [-105.08555, 39.95805], [-105.085476, 39.958066], [-105.08541, 39.958081], [-105.085379, 39.958088], [-105.084891, 39.958201], [-105.083963, 39.958302], [-105.083267, 39.958267], [-105.083261, 39.957915], [-105.082801, 39.957912], [-105.082768, 39.957912], [-105.082756, 39.957912], [-105.082534, 39.957911], [-105.082463, 39.957908], [-105.082455, 39.957908], [-105.082448, 39.957908], [-105.080966, 39.957839], [-105.080602, 39.957822], [-105.080305, 39.957808], [-105.080028, 39.957847], [-105.079729, 39.95784], [-105.079302, 39.957829], [-105.079166, 39.957826], [-105.077331, 39.95781], [-105.076823, 39.957805], [-105.076586, 39.957805], [-105.075858, 39.957803], [-105.075312, 39.957802], [-105.074639, 39.9578], [-105.072278, 39.957787], [-105.071933, 39.957785], [-105.071916, 39.957785], [-105.071854, 39.957785], [-105.07178, 39.957785], [-105.071778, 39.957502], [-105.071738, 39.950585], [-105.071893, 39.950585], [-105.072241, 39.950586], [-105.072518, 39.950586], [-105.075827, 39.950592], [-105.076104, 39.950592], [-105.076102, 39.947539], [-105.076102, 39.947048], [-105.076102, 39.946892], [-105.076102, 39.946353], [-105.076101, 39.944607], [-105.076101, 39.943904], [-105.076101, 39.943726], [-105.076101, 39.943456], [-105.076101, 39.943185], [-105.085739, 39.943185], [-105.090305, 39.943137], [-105.090324, 39.943137], [-105.090532, 39.943137], [-105.090541, 39.943137], [-105.090677, 39.943135], [-105.090897, 39.943134], [-105.090912, 39.941583], [-105.090799, 39.941546], [-105.090849, 39.939979], [-105.090819, 39.939971], [-105.090798, 39.939966], [-105.090782, 39.939962], [-105.090787, 39.939887], [-105.090787, 39.939879], [-105.09083, 39.938827], [-105.090851, 39.937836], [-105.090854, 39.936386], [-105.090944, 39.936387], [-105.09099, 39.936387], [-105.09101, 39.936386], [-105.093793, 39.936385], [-105.102719, 39.936386], [-105.102808, 39.936386], [-105.107539, 39.936386], [-105.107886, 39.936411], [-105.107985, 39.936417], [-105.10802, 39.936419], [-105.108678, 39.936461], [-105.108704, 39.936463], [-105.108727, 39.936464], [-105.108746, 39.936465], [-105.10879, 39.936468], [-105.109036, 39.936484], [-105.109038, 39.936134], [-105.109038, 39.936124], [-105.109039, 39.936119], [-105.109039, 39.936114], [-105.109039, 39.936095], [-105.109039, 39.936061], [-105.109041, 39.935754], [-105.109041, 39.935664], [-105.109224, 39.935546], [-105.109358, 39.935463], [-105.109979, 39.935062], [-105.110014, 39.935039], [-105.112293, 39.933567], [-105.112311, 39.933555], [-105.112368, 39.933518], [-105.112504, 39.933426], [-105.112775, 39.933219], [-105.112874, 39.933133], [-105.112975, 39.933034], [-105.113155, 39.93283], [-105.113232, 39.932731], [-105.113301, 39.932627], [-105.113388, 39.932479], [-105.113488, 39.932275], [-105.113541, 39.932126], [-105.113544, 39.932118], [-105.113566, 39.932055], [-105.113597, 39.931942], [-105.113626, 39.931805], [-105.113652, 39.931597], [-105.113657, 39.93144], [-105.11365, 39.931279], [-105.113636, 39.931163], [-105.113606, 39.930994], [-105.113579, 39.930895], [-105.113575, 39.930882], [-105.113569, 39.930862], [-105.113515, 39.930702], [-105.113446, 39.930541], [-105.113296, 39.930249], [-105.112408, 39.928626], [-105.112407, 39.928625], [-105.112269, 39.928399], [-105.11219, 39.928284], [-105.112132, 39.9282], [-105.11212, 39.928185], [-105.111966, 39.927989], [-105.111784, 39.927785], [-105.111558, 39.92756], [-105.111479, 39.927488], [-105.111189, 39.927252], [-105.110917, 39.927058], [-105.110584, 39.92685], [-105.109267, 39.926027], [-105.109259, 39.926022], [-105.109023, 39.925874], [-105.109043, 39.925744], [-105.109052, 39.925619], [-105.109141, 39.924586], [-105.109142, 39.924356], [-105.109412, 39.924438], [-105.109527, 39.924473], [-105.109641, 39.924507], [-105.109826, 39.924575], [-105.109921, 39.92462], [-105.109965, 39.924641], [-105.10998, 39.924648], [-105.110027, 39.924671], [-105.110043, 39.92468], [-105.110061, 39.92469], [-105.11007, 39.924695], [-105.110077, 39.924698], [-105.110214, 39.92477], [-105.110454, 39.924908], [-105.110628, 39.925009], [-105.110747, 39.925082], [-105.110767, 39.925094], [-105.110782, 39.925103], [-105.110794, 39.92511], [-105.1108, 39.925114], [-105.11087, 39.925157], [-105.110903, 39.925177], [-105.110958, 39.925211], [-105.110974, 39.925221], [-105.110983, 39.925227], [-105.110993, 39.925233], [-105.111315, 39.925433], [-105.111376, 39.925471], [-105.111383, 39.925475], [-105.111475, 39.925532], [-105.111631, 39.925636], [-105.111645, 39.925645], [-105.111659, 39.925654], [-105.111682, 39.925669], [-105.111823, 39.925771], [-105.111845, 39.925787], [-105.111851, 39.925791], [-105.111921, 39.925841], [-105.112246, 39.926106], [-105.112265, 39.926122], [-105.112274, 39.926129], [-105.112355, 39.926195], [-105.112362, 39.926201], [-105.112369, 39.926207], [-105.112653, 39.926453], [-105.112755, 39.926541], [-105.112799, 39.926579], [-105.112883, 39.926656], [-105.112887, 39.92666], [-105.112897, 39.926669], [-105.112903, 39.926674], [-105.112934, 39.926702], [-105.11298, 39.926744], [-105.112985, 39.926748], [-105.113051, 39.926808], [-105.113159, 39.926912], [-105.113212, 39.926969], [-105.113261, 39.927021], [-105.113325, 39.927097], [-105.113403, 39.927204], [-105.113472, 39.927321], [-105.113523, 39.92743], [-105.113529, 39.927449], [-105.113532, 39.927457], [-105.113542, 39.927488], [-105.113586, 39.927621], [-105.113594, 39.927659], [-105.113595, 39.927665], [-105.113597, 39.927673], [-105.113599, 39.927681], [-105.113665, 39.927993], [-105.11369, 39.928108], [-105.113691, 39.928115], [-105.113707, 39.928188], [-105.113759, 39.928362], [-105.113771, 39.928394], [-105.113808, 39.928493], [-105.113827, 39.928538], [-105.11383, 39.928545], [-105.113833, 39.928551], [-105.113835, 39.928556], [-105.113859, 39.928611], [-105.113867, 39.928629], [-105.113969, 39.928841], [-105.114036, 39.928981], [-105.114072, 39.929052], [-105.114064, 39.929181], [-105.114057, 39.9294], [-105.114437, 39.930166], [-105.116589, 39.931964], [-105.116795, 39.932137], [-105.116828, 39.932164], [-105.117035, 39.932337], [-105.118828, 39.933841], [-105.118947, 39.933783], [-105.118946, 39.933833], [-105.118946, 39.933841], [-105.118934, 39.93394], [-105.118904, 39.934077], [-105.118861, 39.934198], [-105.118801, 39.934323], [-105.11873, 39.934449], [-105.118727, 39.934454], [-105.118507, 39.934844], [-105.118468, 39.934947], [-105.118459, 39.934996], [-105.118449, 39.935048], [-105.118448, 39.935068], [-105.118446, 39.935113], [-105.118466, 39.935216], [-105.11848, 39.935249], [-105.118482, 39.935254], [-105.118545, 39.935402], [-105.118569, 39.935451], [-105.118593, 39.9355], [-105.118598, 39.93551], [-105.118601, 39.935517], [-105.118607, 39.93553], [-105.118659, 39.93564], [-105.118671, 39.935671], [-105.118674, 39.935679], [-105.118676, 39.935685], [-105.118694, 39.93573], [-105.118714, 39.93578], [-105.118729, 39.935834], [-105.11873, 39.935839], [-105.118732, 39.935845], [-105.118734, 39.935851], [-105.118735, 39.935856], [-105.118738, 39.935874], [-105.118743, 39.93591], [-105.118745, 39.935979], [-105.118752, 39.936194], [-105.118752, 39.936199], [-105.118747, 39.936383], [-105.118735, 39.936811], [-105.118722, 39.937324], [-105.118722, 39.937527], [-105.118722, 39.938463], [-105.118721, 39.939033], [-105.118721, 39.939174], [-105.118721, 39.939248], [-105.118721, 39.939269], [-105.118721, 39.939338], [-105.118718, 39.941225], [-105.118712, 39.942004], [-105.118711, 39.942011], [-105.118711, 39.942018], [-105.118711, 39.942029], [-105.118711, 39.942047], [-105.118711, 39.942071], [-105.118711, 39.942096], [-105.118704, 39.942904], [-105.118708, 39.943013], [-105.118715, 39.943061], [-105.118733, 39.94311], [-105.11877, 39.943165], [-105.118774, 39.943169], [-105.118792, 39.943187], [-105.118557, 39.943213], [-105.118377, 39.943213], [-105.110274, 39.943204], [-105.110094, 39.943204], [-105.109353, 39.94319], [-105.109338, 39.94319], [-105.109329, 39.94319], [-105.109309, 39.943189], [-105.109261, 39.943188], [-105.109057, 39.943184], [-105.10906, 39.943255], [-105.109103, 39.944125], [-105.10911, 39.944152], [-105.109321, 39.945021], [-105.109322, 39.945026], [-105.109323, 39.945031], [-105.109327, 39.945048], [-105.109337, 39.945088], [-105.109361, 39.945185], [-105.10936, 39.945481], [-105.10936, 39.945571], [-105.109358, 39.94605], [-105.109354, 39.946216], [-105.109354, 39.946225], [-105.109353, 39.946231], [-105.109353, 39.946244], [-105.109352, 39.946282], [-105.10933, 39.94721], [-105.109329, 39.947465], [-105.109329, 39.947478], [-105.109328, 39.947569], [-105.109328, 39.947658], [-105.109327, 39.9478], [-105.109327, 39.947889], [-105.109323, 39.948834], [-105.109323, 39.948924], [-105.109323, 39.948953], [-105.109323, 39.948989], [-105.109323, 39.949032], [-105.109323, 39.949082], [-105.109323, 39.949137], [-105.109323, 39.949194], [-105.109323, 39.94922], [-105.109323, 39.949235], [-105.109323, 39.949242], [-105.109323, 39.949247], [-105.10932, 39.949529], [-105.109321, 39.950183], [-105.109321, 39.950264], [-105.109321, 39.950311], [-105.109321, 39.950341], [-105.109321, 39.950363], [-105.109321, 39.950379], [-105.109321, 39.950391], [-105.109321, 39.950401], [-105.109321, 39.950409], [-105.109321, 39.950415], [-105.109321, 39.950421], [-105.109321, 39.950426], [-105.109321, 39.950433], [-105.109321, 39.950439], [-105.109321, 39.950445], [-105.109321, 39.950451], [-105.109321, 39.950456], [-105.109321, 39.950461], [-105.109322, 39.950485], [-105.109435, 39.950486], [-105.109446, 39.950486], [-105.115419, 39.950539], [-105.11543, 39.950539], [-105.117017, 39.950553], [-105.118366, 39.950566], [-105.118577, 39.950568], [-105.118671, 39.950569], [-105.118701, 39.950569], [-105.118708, 39.950569], [-105.118715, 39.950569], [-105.118732, 39.95057], [-105.118749, 39.95057], [-105.118761, 39.95057], [-105.118833, 39.950571], [-105.118983, 39.950572], [-105.120336, 39.950585], [-105.120347, 39.950585], [-105.120532, 39.950569], [-105.120541, 39.950568], [-105.120776, 39.950548], [-105.121037, 39.951248], [-105.121045, 39.951269], [-105.121047, 39.951275], [-105.12105, 39.951283], [-105.121058, 39.951305], [-105.121089, 39.951387], [-105.120845, 39.951538], [-105.120738, 39.951613], [-105.120568, 39.951732], [-105.119781, 39.952167], [-105.11965, 39.952223], [-105.119624, 39.952234], [-105.119614, 39.952238], [-105.119574, 39.952255], [-105.119554, 39.952264], [-105.119477, 39.952297], [-105.119347, 39.952353], [-105.11784, 39.953034], [-105.11764, 39.953104], [-105.116061, 39.953657], [-105.113353, 39.954548], [-105.111034, 39.955378], [-105.109342, 39.955974], [-105.109372, 39.956506], [-105.109385, 39.95674], [-105.109391, 39.956849], [-105.109685, 39.956752], [-105.109693, 39.956749], [-105.110913, 39.956348], [-105.111782, 39.956051], [-105.11339, 39.955583], [-105.114622, 39.955152], [-105.115301, 39.954903], [-105.117838, 39.953889], [-105.117945, 39.953849], [-105.118697, 39.953543], [-105.118706, 39.953539], [-105.119345, 39.953279], [-105.120574, 39.952709], [-105.121061, 39.952481], [-105.121069, 39.952477], [-105.121241, 39.952397], [-105.121437, 39.952305], [-105.122141, 39.954166], [-105.122294, 39.954571], [-105.127321, 39.954533], [-105.127598, 39.954533], [-105.127597, 39.954179], [-105.127597, 39.954062], [-105.127593, 39.952407], [-105.127593, 39.95229], [-105.127589, 39.950717], [-105.127586, 39.949522], [-105.127579, 39.948868], [-105.127565, 39.947484], [-105.127562, 39.94685], [-105.127559, 39.94628], [-105.127557, 39.945758], [-105.127555, 39.945459], [-105.127555, 39.945363], [-105.127554, 39.945143], [-105.127553, 39.945138], [-105.127553, 39.945133], [-105.127553, 39.945123], [-105.127553, 39.945108], [-105.127553, 39.945089], [-105.127553, 39.94507], [-105.127551, 39.94461], [-105.127551, 39.944596], [-105.127545, 39.943301], [-105.127544, 39.943283], [-105.127544, 39.943266], [-105.127533, 39.943045], [-105.127532, 39.943025], [-105.127426, 39.94091], [-105.127421, 39.940817], [-105.127419, 39.940795], [-105.12741, 39.940716], [-105.127428, 39.939981], [-105.127435, 39.939818], [-105.127679, 39.939823], [-105.127884, 39.939823], [-105.136859, 39.939855], [-105.137572, 39.939858], [-105.137579, 39.939688], [-105.137592, 39.939543], [-105.137593, 39.939443], [-105.137603, 39.939249], [-105.137578, 39.937109], [-105.137631, 39.929825], [-105.137604, 39.928931], [-105.138407, 39.928938], [-105.138417, 39.928938], [-105.138625, 39.928935], [-105.138894, 39.928935], [-105.139722, 39.928935], [-105.141792, 39.92893], [-105.141848, 39.92893], [-105.142258, 39.928929], [-105.14235, 39.928929], [-105.142428, 39.928929], [-105.142523, 39.928929], [-105.143251, 39.92893], [-105.143875, 39.928931], [-105.146805, 39.928937], [-105.147015, 39.928938], [-105.14712, 39.928939], [-105.147127, 39.928939], [-105.147129, 39.928817], [-105.147134, 39.928479], [-105.147134, 39.928467], [-105.147134, 39.928453], [-105.147137, 39.92823], [-105.147147, 39.927419], [-105.147149, 39.927309], [-105.147159, 39.926641], [-105.147159, 39.926636], [-105.147179, 39.925204], [-105.147214, 39.922788], [-105.14734, 39.913991], [-105.147342, 39.913886], [-105.397849, 39.912886], [-105.397971, 39.934867], [-105.675798, 39.932445], [-105.638797, 40.038787], [-105.653321, 40.260457], [-105.196476, 40.261085], [-105.055089, 40.261793]]]}, "bbox": [-105.675798, 39.912886, -105.052774, 40.261793]}, {"id": "08031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-105.053439, 39.621423], [-105.059305, 39.614337], [-105.096909, 39.614423], [-105.092839, 39.618327], [-105.092543, 39.618328], [-105.091657, 39.618333], [-105.091362, 39.618336], [-105.091123, 39.618331], [-105.090115, 39.618312], [-105.087826, 39.618319], [-105.087252, 39.618317], [-105.087031, 39.618339], [-105.08682, 39.618412], [-105.08668, 39.618478], [-105.086553, 39.61858], [-105.086314, 39.618808], [-105.086115, 39.618979], [-105.085928, 39.618668], [-105.085262, 39.618283], [-105.084839, 39.618411], [-105.084573, 39.618526], [-105.084221, 39.618568], [-105.084043, 39.618568], [-105.083827, 39.618569], [-105.083616, 39.618569], [-105.082983, 39.618571], [-105.082773, 39.618573], [-105.082643, 39.618574], [-105.082476, 39.618504], [-105.079398, 39.618473], [-105.077553, 39.618485], [-105.075873, 39.618508], [-105.074796, 39.618511], [-105.074518, 39.61852], [-105.073364, 39.618559], [-105.073332, 39.618559], [-105.072844, 39.618555], [-105.072819, 39.618549], [-105.072799, 39.618546], [-105.072783, 39.618546], [-105.072763, 39.618548], [-105.072746, 39.618552], [-105.072703, 39.618568], [-105.072687, 39.618573], [-105.072673, 39.618576], [-105.072655, 39.618577], [-105.072638, 39.618577], [-105.072626, 39.618576], [-105.072611, 39.618573], [-105.072508, 39.618549], [-105.069229, 39.618571], [-105.068107, 39.618589], [-105.06788, 39.61859], [-105.066937, 39.618585], [-105.066206, 39.618575], [-105.065638, 39.61859], [-105.065572, 39.618592], [-105.065519, 39.618592], [-105.065492, 39.618588], [-105.065467, 39.618588], [-105.06542, 39.618583], [-105.065141, 39.618585], [-105.065115, 39.61943], [-105.065086, 39.619588], [-105.06505, 39.619779], [-105.065039, 39.619842], [-105.064966, 39.620238], [-105.065739, 39.620586], [-105.065746, 39.620588], [-105.066141, 39.620731], [-105.075952, 39.624143], [-105.076578, 39.624365], [-105.076594, 39.624378], [-105.076072, 39.624426], [-105.075132, 39.62451], [-105.07594, 39.625274], [-105.07624, 39.625587], [-105.08024, 39.630402], [-105.080309, 39.630486], [-105.08145, 39.631858], [-105.081514, 39.631863], [-105.081639, 39.631873], [-105.081685, 39.631872], [-105.081779, 39.631873], [-105.083556, 39.631872], [-105.083546, 39.631387], [-105.083535, 39.630848], [-105.083529, 39.630155], [-105.083274, 39.630154], [-105.08251, 39.630153], [-105.082256, 39.630153], [-105.082176, 39.630152], [-105.081936, 39.63015], [-105.081856, 39.63015], [-105.081693, 39.630149], [-105.081693, 39.630115], [-105.081695, 39.630037], [-105.081701, 39.629738], [-105.08173, 39.628225], [-105.08173, 39.628168], [-105.081733, 39.627999], [-105.081735, 39.627943], [-105.081735, 39.627879], [-105.081738, 39.627687], [-105.08174, 39.627624], [-105.08174, 39.627612], [-105.08174, 39.627579], [-105.081741, 39.627568], [-105.082334, 39.627571], [-105.083897, 39.627582], [-105.083881, 39.627799], [-105.08384, 39.628391], [-105.083894, 39.628877], [-105.083939, 39.629282], [-105.084999, 39.629237], [-105.085489, 39.629217], [-105.085496, 39.628501], [-105.085508, 39.627488], [-105.0855, 39.626465], [-105.085608, 39.626465], [-105.086324, 39.626468], [-105.086449, 39.626467], [-105.086823, 39.626465], [-105.086949, 39.626465], [-105.087395, 39.626463], [-105.087647, 39.626463], [-105.087662, 39.627143], [-105.087666, 39.62732], [-105.087894, 39.627308], [-105.08834, 39.627287], [-105.08869, 39.627287], [-105.089354, 39.627286], [-105.089654, 39.627287], [-105.089902, 39.627287], [-105.089988, 39.627286], [-105.090745, 39.627288], [-105.09121, 39.627291], [-105.091214, 39.625898], [-105.091216, 39.624983], [-105.091243, 39.624593], [-105.091253, 39.624341], [-105.091256, 39.624198], [-105.092998, 39.624197], [-105.093213, 39.624197], [-105.093228, 39.624196], [-105.094461, 39.624195], [-105.094598, 39.624195], [-105.094649, 39.624196], [-105.09491, 39.624197], [-105.095563, 39.624202], [-105.095694, 39.624203], [-105.095956, 39.624205], [-105.096253, 39.624207], [-105.097144, 39.624213], [-105.097441, 39.624215], [-105.097656, 39.624216], [-105.098301, 39.62422], [-105.098516, 39.624222], [-105.0987, 39.624222], [-105.099252, 39.624222], [-105.099437, 39.624222], [-105.099738, 39.624222], [-105.100642, 39.624222], [-105.100944, 39.624223], [-105.10117, 39.624223], [-105.101848, 39.624223], [-105.102075, 39.624224], [-105.102129, 39.624224], [-105.102291, 39.624224], [-105.102346, 39.624224], [-105.102373, 39.624224], [-105.102454, 39.624224], [-105.102482, 39.624224], [-105.102524, 39.624224], [-105.10265, 39.624224], [-105.102693, 39.624224], [-105.10302, 39.624223], [-105.104002, 39.624222], [-105.10433, 39.624222], [-105.104612, 39.624221], [-105.105458, 39.62422], [-105.105741, 39.62422], [-105.106931, 39.624218], [-105.107496, 39.624218], [-105.107537, 39.624218], [-105.107894, 39.624208], [-105.107924, 39.624208], [-105.107942, 39.624208], [-105.108374, 39.624205], [-105.108376, 39.624205], [-105.108377, 39.624205], [-105.1086, 39.624208], [-105.108599, 39.624262], [-105.108597, 39.624914], [-105.10859, 39.626987], [-105.10874, 39.626987], [-105.109192, 39.626988], [-105.109343, 39.626989], [-105.109927, 39.626988], [-105.109926, 39.62708], [-105.109925, 39.6271], [-105.109922, 39.627345], [-105.109885, 39.629741], [-105.109883, 39.629897], [-105.109889, 39.631412], [-105.109893, 39.632105], [-105.109893, 39.632676], [-105.109901, 39.63404], [-105.109902, 39.634263], [-105.109901, 39.634272], [-105.109887, 39.634485], [-105.109875, 39.635069], [-105.109875, 39.63507], [-105.109875, 39.635072], [-105.109874, 39.635186], [-105.109814, 39.635188], [-105.101427, 39.635187], [-105.100841, 39.635187], [-105.100611, 39.635148], [-105.100541, 39.635136], [-105.099958, 39.635038], [-105.099708, 39.635011], [-105.099641, 39.634987], [-105.099019, 39.635037], [-105.098527, 39.635075], [-105.097052, 39.635108], [-105.095546, 39.635121], [-105.095462, 39.635121], [-105.093134, 39.635158], [-105.091582, 39.635178], [-105.091617, 39.635458], [-105.091609, 39.636546], [-105.0916, 39.637331], [-105.091598, 39.637574], [-105.091593, 39.638086], [-105.091577, 39.638729], [-105.091258, 39.638722], [-105.0911, 39.638719], [-105.091023, 39.638718], [-105.088969, 39.638703], [-105.08849, 39.6387], [-105.088349, 39.638698], [-105.088094, 39.638696], [-105.087975, 39.638696], [-105.087853, 39.638695], [-105.087804, 39.638695], [-105.087597, 39.638694], [-105.087553, 39.638693], [-105.087423, 39.638692], [-105.08738, 39.638692], [-105.086885, 39.638696], [-105.08622, 39.638703], [-105.085402, 39.638698], [-105.084908, 39.638695], [-105.084809, 39.638694], [-105.084512, 39.638693], [-105.084414, 39.638693], [-105.083866, 39.638705], [-105.082223, 39.638745], [-105.081676, 39.638759], [-105.081578, 39.638667], [-105.081589, 39.638469], [-105.081646, 39.637479], [-105.081646, 39.637475], [-105.081682, 39.637145], [-105.081683, 39.637127], [-105.081688, 39.637076], [-105.08169, 39.637059], [-105.081693, 39.637031], [-105.081702, 39.636953], [-105.081702, 39.63695], [-105.081706, 39.636924], [-105.081716, 39.636867], [-105.081657, 39.636302], [-105.081507, 39.636377], [-105.080629, 39.6368], [-105.078087, 39.636644], [-105.07724, 39.636593], [-105.073951, 39.636831], [-105.073985, 39.638739], [-105.074358, 39.638742], [-105.074846, 39.638744], [-105.074866, 39.638745], [-105.076313, 39.638737], [-105.076803, 39.638735], [-105.076807, 39.638967], [-105.076797, 39.639153], [-105.076773, 39.639353], [-105.076722, 39.639549], [-105.076653, 39.639713], [-105.076546, 39.639906], [-105.076098, 39.640739], [-105.07601, 39.640913], [-105.075946, 39.641058], [-105.075897, 39.64118], [-105.075897, 39.641182], [-105.075872, 39.641277], [-105.075857, 39.641359], [-105.075837, 39.641689], [-105.075819, 39.641842], [-105.075789, 39.641968], [-105.07576, 39.64205], [-105.075679, 39.642203], [-105.075393, 39.642666], [-105.075363, 39.642709], [-105.07486, 39.64346], [-105.07469, 39.643727], [-105.074563, 39.643945], [-105.074454, 39.644104], [-105.074292, 39.644274], [-105.074145, 39.644403], [-105.073998, 39.644513], [-105.073816, 39.644628], [-105.073665, 39.644709], [-105.073285, 39.644872], [-105.072902, 39.645038], [-105.072523, 39.64522], [-105.072434, 39.645271], [-105.072326, 39.64535], [-105.072189, 39.645493], [-105.072133, 39.645574], [-105.072093, 39.645647], [-105.07206, 39.645751], [-105.072053, 39.645789], [-105.072049, 39.645815], [-105.072044, 39.646033], [-105.072042, 39.64609], [-105.06894, 39.646087], [-105.063539, 39.645988], [-105.063539, 39.646188], [-105.063532, 39.646404], [-105.063522, 39.646672], [-105.06352, 39.646749], [-105.063503, 39.647236], [-105.063454, 39.648699], [-105.063439, 39.649187], [-105.063435, 39.649273], [-105.063425, 39.649532], [-105.063422, 39.649619], [-105.063399, 39.65008], [-105.062614, 39.650086], [-105.061679, 39.650068], [-105.061578, 39.650066], [-105.061452, 39.650063], [-105.057345, 39.649984], [-105.057257, 39.651723], [-105.055521, 39.651737], [-105.054513, 39.65176], [-105.054654, 39.651798], [-105.054703, 39.651812], [-105.054882, 39.651895], [-105.055042, 39.652003], [-105.055061, 39.652016], [-105.055136, 39.652115], [-105.057266, 39.652086], [-105.057336, 39.652085], [-105.057319, 39.652201], [-105.05724, 39.652759], [-105.057215, 39.652946], [-105.05782, 39.652948], [-105.057873, 39.652948], [-105.058031, 39.652959], [-105.058311, 39.652979], [-105.058399, 39.652982], [-105.058543, 39.652979], [-105.058527, 39.652781], [-105.058465, 39.652008], [-105.058439, 39.651687], [-105.058939, 39.651687], [-105.058839, 39.651387], [-105.059209, 39.651386], [-105.059977, 39.651386], [-105.060321, 39.651385], [-105.060648, 39.651385], [-105.060692, 39.651385], [-105.061555, 39.651385], [-105.062137, 39.651384], [-105.062133, 39.651791], [-105.062586, 39.651899], [-105.062586, 39.651859], [-105.062606, 39.651077], [-105.062606, 39.65107], [-105.06261, 39.650598], [-105.063938, 39.650486], [-105.063939, 39.649887], [-105.063926, 39.64962], [-105.063924, 39.649566], [-105.071029, 39.649579], [-105.071034, 39.649731], [-105.07104, 39.649887], [-105.070953, 39.650411], [-105.07094, 39.650486], [-105.070352, 39.650413], [-105.07014, 39.650386], [-105.06884, 39.651587], [-105.068137, 39.652364], [-105.067979, 39.652444], [-105.067921, 39.652471], [-105.067681, 39.652589], [-105.067481, 39.652641], [-105.067307, 39.652752], [-105.067283, 39.652785], [-105.067144, 39.652981], [-105.06714, 39.652987], [-105.067137, 39.652996], [-105.067089, 39.65314], [-105.067057, 39.653233], [-105.067026, 39.653327], [-105.06697, 39.653494], [-105.066941, 39.653594], [-105.066956, 39.654029], [-105.067045, 39.656587], [-105.068556, 39.656591], [-105.069183, 39.656591], [-105.069505, 39.656592], [-105.070727, 39.656594], [-105.070768, 39.65822], [-105.070793, 39.65917], [-105.070923, 39.659193], [-105.071314, 39.659265], [-105.071445, 39.659289], [-105.071479, 39.65943], [-105.071582, 39.659853], [-105.071617, 39.659995], [-105.07324, 39.659787], [-105.074427, 39.659515], [-105.075423, 39.659286], [-105.076255, 39.659096], [-105.077642, 39.658779], [-105.077479, 39.659644], [-105.077342, 39.660374], [-105.077338, 39.660389], [-105.077863, 39.661004], [-105.07907, 39.661521], [-105.079071, 39.661521], [-105.079086, 39.661526], [-105.079534, 39.661814], [-105.079733, 39.662061], [-105.079771, 39.662163], [-105.079822, 39.66216], [-105.079822, 39.662164], [-105.081454, 39.662074], [-105.081454, 39.662896], [-105.081454, 39.664987], [-105.081449, 39.665055], [-105.081455, 39.665498], [-105.081455, 39.665551], [-105.081451, 39.667743], [-105.081454, 39.668215], [-105.081457, 39.668577], [-105.081434, 39.669103], [-105.081389, 39.669628], [-105.08135, 39.670099], [-105.081192, 39.670074], [-105.080948, 39.67001], [-105.080528, 39.669902], [-105.080157, 39.669826], [-105.079876, 39.669782], [-105.079739, 39.669765], [-105.079651, 39.669755], [-105.079345, 39.66974], [-105.079329, 39.669739], [-105.079299, 39.669738], [-105.079212, 39.669738], [-105.079183, 39.669738], [-105.079175, 39.669601], [-105.079164, 39.669358], [-105.0775, 39.66933], [-105.076938, 39.66932], [-105.076939, 39.66952], [-105.076939, 39.669523], [-105.076939, 39.669686], [-105.076039, 39.669587], [-105.07614, 39.669987], [-105.07494, 39.670687], [-105.07334, 39.670013], [-105.07328, 39.669987], [-105.073253, 39.669976], [-105.0731, 39.669912], [-105.07304, 39.669887], [-105.072872, 39.669813], [-105.072371, 39.669594], [-105.072204, 39.669521], [-105.072203, 39.669499], [-105.072202, 39.669435], [-105.072202, 39.669414], [-105.072197, 39.669083], [-105.072197, 39.669058], [-105.072186, 39.66828], [-105.072183, 39.668093], [-105.072179, 39.667763], [-105.072044, 39.667763], [-105.071643, 39.667763], [-105.071509, 39.667764], [-105.071483, 39.667764], [-105.07145, 39.667764], [-105.071406, 39.667764], [-105.071381, 39.667764], [-105.070805, 39.667765], [-105.06908, 39.667769], [-105.068505, 39.667771], [-105.068263, 39.667771], [-105.067538, 39.667774], [-105.067297, 39.667775], [-105.067149, 39.667775], [-105.066705, 39.667775], [-105.066558, 39.667776], [-105.06648, 39.667776], [-105.066247, 39.667776], [-105.06617, 39.667777], [-105.066151, 39.667777], [-105.066097, 39.667777], [-105.066079, 39.667777], [-105.065885, 39.667777], [-105.065304, 39.667777], [-105.065111, 39.667778], [-105.064897, 39.667778], [-105.064257, 39.667779], [-105.064044, 39.66778], [-105.064027, 39.66778], [-105.063976, 39.66778], [-105.063959, 39.66778], [-105.063759, 39.66778], [-105.063161, 39.667782], [-105.062962, 39.667783], [-105.062534, 39.667782], [-105.06125, 39.66778], [-105.060844, 39.66778], [-105.060823, 39.66778], [-105.06068, 39.66778], [-105.060252, 39.66778], [-105.06011, 39.66778], [-105.059894, 39.667779], [-105.059248, 39.667778], [-105.059033, 39.667778], [-105.058821, 39.667778], [-105.058185, 39.667782], [-105.057974, 39.667784], [-105.057765, 39.667784], [-105.05714, 39.667784], [-105.056932, 39.667785], [-105.056725, 39.667784], [-105.056104, 39.667781], [-105.055898, 39.667781], [-105.055691, 39.667781], [-105.055072, 39.667784], [-105.054866, 39.667785], [-105.054676, 39.667785], [-105.054106, 39.667785], [-105.053916, 39.667785], [-105.053784, 39.667785], [-105.053388, 39.667785], [-105.053256, 39.667785], [-105.053257, 39.668604], [-105.053257, 39.669076], [-105.05326, 39.671063], [-105.053262, 39.671883], [-105.053262, 39.671896], [-105.053262, 39.671935], [-105.053262, 39.671949], [-105.053262, 39.672255], [-105.053251, 39.673116], [-105.053261, 39.673271], [-105.053261, 39.67328], [-105.053255, 39.673483], [-105.053247, 39.673778], [-105.053239, 39.674095], [-105.053234, 39.674299], [-105.053237, 39.674437], [-105.053246, 39.674851], [-105.05325, 39.674989], [-105.054053, 39.674969], [-105.056462, 39.674909], [-105.057265, 39.674889], [-105.057573, 39.674888], [-105.0585, 39.674887], [-105.058809, 39.674887], [-105.058955, 39.674887], [-105.059393, 39.674887], [-105.059539, 39.674887], [-105.060047, 39.674903], [-105.061573, 39.674952], [-105.062082, 39.674969], [-105.062245, 39.674973], [-105.062638, 39.674985], [-105.062734, 39.674985], [-105.062898, 39.674987], [-105.062897, 39.675082], [-105.062894, 39.675369], [-105.062894, 39.675465], [-105.062891, 39.675853], [-105.062887, 39.676224], [-105.062772, 39.677608], [-105.062835, 39.678446], [-105.062907, 39.679223], [-105.062929, 39.679259], [-105.062991, 39.679363], [-105.063177, 39.679681], [-105.062777, 39.679441], [-105.06258, 39.679293], [-105.062442, 39.67919], [-105.062086, 39.679063], [-105.060732, 39.678279], [-105.058505, 39.678615], [-105.058175, 39.678666], [-105.05806, 39.680649], [-105.058049, 39.681817], [-105.058054, 39.681825], [-105.058044, 39.68227], [-105.058034, 39.682275], [-105.058033, 39.682275], [-105.057913, 39.682277], [-105.057912, 39.682276], [-105.057783, 39.682272], [-105.057265, 39.682272], [-105.0572, 39.682271], [-105.056518, 39.682265], [-105.055588, 39.68226], [-105.053221, 39.682291], [-105.053191, 39.682397], [-105.053183, 39.683498], [-105.053183, 39.683528], [-105.053195, 39.68438], [-105.053197, 39.685563], [-105.053196, 39.68565], [-105.053194, 39.685911], [-105.053194, 39.685999], [-105.053193, 39.686347], [-105.053193, 39.686873], [-105.053208, 39.687353], [-105.053212, 39.68739], [-105.053248, 39.687654], [-105.053254, 39.687736], [-105.053264, 39.687883], [-105.053264, 39.6881], [-105.053265, 39.689194], [-105.053266, 39.689559], [-105.053251, 39.689919], [-105.053208, 39.691002], [-105.053194, 39.691364], [-105.053198, 39.691586], [-105.05321, 39.692252], [-105.053215, 39.692475], [-105.053212, 39.692542], [-105.053207, 39.692745], [-105.053205, 39.692813], [-105.053202, 39.692885], [-105.053196, 39.693103], [-105.053194, 39.693176], [-105.053198, 39.693538], [-105.053213, 39.694625], [-105.053218, 39.694988], [-105.053219, 39.695344], [-105.053223, 39.696412], [-105.053225, 39.696769], [-105.053225, 39.696779], [-105.053225, 39.696809], [-105.053225, 39.69682], [-105.053225, 39.696889], [-105.053236, 39.699078], [-105.053241, 39.69991], [-105.053245, 39.700438], [-105.053245, 39.702269], [-105.053249, 39.702562], [-105.053247, 39.702703], [-105.053245, 39.703126], [-105.053245, 39.703268], [-105.053247, 39.703985], [-105.053252, 39.704542], [-105.053258, 39.70505], [-105.053246, 39.705814], [-105.053246, 39.705921], [-105.053246, 39.706029], [-105.053249, 39.706674], [-105.05325, 39.706889], [-105.05325, 39.707054], [-105.053251, 39.70755], [-105.053252, 39.707716], [-105.053253, 39.707902], [-105.053258, 39.708463], [-105.05326, 39.70865], [-105.053259, 39.708841], [-105.053257, 39.709416], [-105.053257, 39.709608], [-105.053258, 39.709746], [-105.053262, 39.710161], [-105.053264, 39.7103], [-105.05325, 39.711343], [-105.053263, 39.713181], [-105.053271, 39.715004], [-105.05327, 39.71663], [-105.05327, 39.716647], [-105.053279, 39.718233], [-105.053278, 39.718627], [-105.053276, 39.718984], [-105.053275, 39.719071], [-105.053272, 39.720056], [-105.053271, 39.720414], [-105.05327, 39.720544], [-105.05327, 39.720933], [-105.05327, 39.721064], [-105.053268, 39.721477], [-105.053264, 39.722719], [-105.053263, 39.723133], [-105.053259, 39.724083], [-105.05324, 39.725441], [-105.053253, 39.7258], [-105.053253, 39.725828], [-105.053253, 39.725899], [-105.053253, 39.725951], [-105.053252, 39.726112], [-105.053252, 39.726184], [-105.053254, 39.727233], [-105.053254, 39.727349], [-105.053252, 39.727772], [-105.053251, 39.728522], [-105.053246, 39.728968], [-105.053244, 39.729539], [-105.053242, 39.72989], [-105.053239, 39.730942], [-105.053238, 39.731294], [-105.053235, 39.731657], [-105.053228, 39.732746], [-105.053227, 39.73311], [-105.053404, 39.733108], [-105.053935, 39.733104], [-105.054113, 39.733103], [-105.05417, 39.733102], [-105.05434, 39.733102], [-105.054398, 39.733102], [-105.0544, 39.733172], [-105.054406, 39.733384], [-105.054409, 39.733455], [-105.054411, 39.733541], [-105.054418, 39.73372], [-105.054499, 39.733706], [-105.054585, 39.733693], [-105.054587, 39.733734], [-105.054593, 39.73386], [-105.054595, 39.733902], [-105.054671, 39.7339], [-105.054903, 39.733897], [-105.05498, 39.733896], [-105.054979, 39.733854], [-105.054977, 39.733728], [-105.054977, 39.733687], [-105.054975, 39.733569], [-105.054969, 39.733217], [-105.054968, 39.7331], [-105.055082, 39.733099], [-105.055424, 39.733098], [-105.055539, 39.733098], [-105.055539, 39.733215], [-105.055539, 39.733569], [-105.055539, 39.733687], [-105.055574, 39.734508], [-105.055585, 39.734707], [-105.055586, 39.73474], [-105.055567, 39.734977], [-105.053228, 39.734965], [-105.053231, 39.735161], [-105.05323, 39.735185], [-105.053227, 39.735259], [-105.053227, 39.735284], [-105.053227, 39.735349], [-105.053227, 39.735544], [-105.053227, 39.735609], [-105.053227, 39.735841], [-105.053227, 39.736537], [-105.053227, 39.73677], [-105.053223, 39.737115], [-105.05321, 39.738152], [-105.053207, 39.738498], [-105.053206, 39.73887], [-105.053206, 39.739987], [-105.053206, 39.74036], [-105.053201, 39.741935], [-105.0532, 39.741935], [-105.053195, 39.741938], [-105.053199, 39.742204], [-105.053204, 39.742203], [-105.053209, 39.742697], [-105.053209, 39.742781], [-105.05321, 39.743339], [-105.053211, 39.743486], [-105.053211, 39.743584], [-105.053211, 39.743881], [-105.053212, 39.74398], [-105.053214, 39.745187], [-105.053226, 39.74568], [-105.053219, 39.747616], [-105.053219, 39.747687], [-105.053217, 39.748157], [-105.053213, 39.749458], [-105.053215, 39.749816], [-105.053224, 39.75089], [-105.053227, 39.751249], [-105.053227, 39.751608], [-105.05323, 39.752686], [-105.053231, 39.753046], [-105.053236, 39.754848], [-105.053236, 39.755553], [-105.053237, 39.755787], [-105.053238, 39.756939], [-105.053238, 39.757245], [-105.053238, 39.758165], [-105.053239, 39.758472], [-105.053239, 39.758836], [-105.05324, 39.759928], [-105.053241, 39.760293], [-105.053241, 39.760651], [-105.053243, 39.761725], [-105.053244, 39.762084], [-105.053243, 39.762265], [-105.053241, 39.762807], [-105.053241, 39.762989], [-105.053241, 39.763171], [-105.053241, 39.76372], [-105.053241, 39.763903], [-105.053241, 39.764085], [-105.053242, 39.764631], [-105.053243, 39.764814], [-105.05324, 39.764991], [-105.053232, 39.765521], [-105.05323, 39.765699], [-105.053242, 39.766622], [-105.053243, 39.767278], [-105.053241, 39.767409], [-105.053241, 39.767512], [-105.05324, 39.767876], [-105.05324, 39.768968], [-105.05324, 39.769333], [-105.053241, 39.769435], [-105.053245, 39.769741], [-105.053247, 39.769844], [-105.05325, 39.770102], [-105.053261, 39.770876], [-105.053265, 39.771134], [-105.05326, 39.771494], [-105.053245, 39.772577], [-105.053241, 39.772938], [-105.053241, 39.773303], [-105.053241, 39.774398], [-105.053241, 39.774763], [-105.053241, 39.775127], [-105.053244, 39.776219], [-105.053245, 39.776583], [-105.053244, 39.776943], [-105.053242, 39.778023], [-105.053242, 39.778384], [-105.053235, 39.778748], [-105.053214, 39.77984], [-105.053208, 39.780205], [-105.053214, 39.780502], [-105.053235, 39.781393], [-105.053243, 39.78169], [-105.053243, 39.781732], [-105.053243, 39.781861], [-105.053243, 39.781904], [-105.053243, 39.782075], [-105.053243, 39.78219], [-105.053211, 39.782588], [-105.053198, 39.782759], [-105.053196, 39.782852], [-105.05319, 39.783134], [-105.053189, 39.783228], [-105.053187, 39.783288], [-105.053185, 39.783435], [-105.053184, 39.783471], [-105.053184, 39.783533], [-105.053184, 39.783585], [-105.053184, 39.783687], [-105.053183, 39.783744], [-105.053183, 39.783797], [-105.054442, 39.783814], [-105.055588, 39.783818], [-105.056742, 39.783821], [-105.05675, 39.783822], [-105.057894, 39.78383], [-105.057912, 39.783831], [-105.058863, 39.78383], [-105.059054, 39.78383], [-105.059628, 39.78383], [-105.05982, 39.78383], [-105.060009, 39.783832], [-105.060346, 39.783836], [-105.060576, 39.783839], [-105.060765, 39.783842], [-105.061711, 39.783845], [-105.061848, 39.783845], [-105.062176, 39.783846], [-105.062425, 39.783847], [-105.062659, 39.783847], [-105.062659, 39.7839], [-105.062659, 39.784059], [-105.062659, 39.784112], [-105.062656, 39.785666], [-105.062655, 39.785822], [-105.062655, 39.786187], [-105.062653, 39.787], [-105.062653, 39.787193], [-105.062556, 39.787408], [-105.062546, 39.787425], [-105.062451, 39.787597], [-105.062865, 39.788011], [-105.062944, 39.788087], [-105.065083, 39.788086], [-105.065106, 39.788813], [-105.065123, 39.789269], [-105.065115, 39.78968], [-105.064777, 39.789691], [-105.064559, 39.789695], [-105.064552, 39.789999], [-105.064545, 39.790686], [-105.064542, 39.790989], [-105.064541, 39.79108], [-105.064243, 39.791079], [-105.064203, 39.791079], [-105.064161, 39.791079], [-105.063382, 39.791077], [-105.063306, 39.791077], [-105.063304, 39.790775], [-105.063303, 39.790737], [-105.063302, 39.790568], [-105.063302, 39.790494], [-105.063301, 39.790476], [-105.063301, 39.790445], [-105.063298, 39.790081], [-105.063059, 39.790084], [-105.062966, 39.790086], [-105.061917, 39.790083], [-105.061899, 39.790083], [-105.061722, 39.790582], [-105.061608, 39.790928], [-105.06148, 39.791075], [-105.060678, 39.791073], [-105.060417, 39.791073], [-105.059696, 39.791072], [-105.059338, 39.791072], [-105.05663, 39.791067], [-105.056162, 39.791067], [-105.055627, 39.791066], [-105.055272, 39.791065], [-105.055083, 39.791065], [-105.053246, 39.791063], [-104.79091, 39.79825], [-104.692934, 39.914183], [-104.600435, 39.899459], [-104.619906, 39.826633], [-104.76247, 39.82298], [-104.734601, 39.769181], [-104.856377, 39.768673], [-104.884646, 39.740156], [-104.848332, 39.659161], [-104.848336, 39.657891], [-104.848048, 39.657842], [-104.84794, 39.657824], [-104.84773, 39.657789], [-104.84773, 39.657239], [-104.847731, 39.656927], [-104.847733, 39.656788], [-104.847604, 39.656786], [-104.847536, 39.656785], [-104.847449, 39.656783], [-104.847119, 39.65678], [-104.847639, 39.656712], [-104.847697, 39.656704], [-104.84812, 39.656648], [-104.848967, 39.656538], [-104.849397, 39.656482], [-104.850762, 39.656305], [-104.852944, 39.655706], [-104.854474, 39.655011], [-104.854747, 39.654888], [-104.856038, 39.654178], [-104.856753, 39.653456], [-104.85683, 39.653419], [-104.857203, 39.653246], [-104.875552, 39.644617], [-104.876224, 39.644301], [-104.87613, 39.646499], [-104.876149, 39.647004], [-104.876151, 39.647061], [-104.876195, 39.648583], [-104.876195, 39.6486], [-104.87624, 39.65011], [-104.876281, 39.651459], [-104.876297, 39.652021], [-104.876306, 39.652295], [-104.877218, 39.652875], [-104.877497, 39.653052], [-104.877498, 39.653051], [-104.878034, 39.653051], [-104.880078, 39.653055], [-104.88014, 39.653057], [-104.880086, 39.650773], [-104.880228, 39.647994], [-104.880246, 39.647751], [-104.880246, 39.64653], [-104.880239, 39.646068], [-104.880239, 39.645993], [-104.880313, 39.645902], [-104.880313, 39.643949], [-104.880372, 39.642605], [-104.880381, 39.642475], [-104.880368, 39.642193], [-104.88034, 39.641993], [-104.880338, 39.641955], [-104.880326, 39.641819], [-104.880326, 39.64173], [-104.880322, 39.641651], [-104.880329, 39.641491], [-104.880929, 39.641216], [-104.882827, 39.640345], [-104.882917, 39.640301], [-104.88368, 39.639939], [-104.884765, 39.639425], [-104.884936, 39.639344], [-104.885112, 39.639262], [-104.885119, 39.638961], [-104.885129, 39.638788], [-104.885128, 39.638637], [-104.885124, 39.638444], [-104.885121, 39.638283], [-104.885132, 39.638093], [-104.885167, 39.636493], [-104.885173, 39.636268], [-104.885156, 39.633467], [-104.885231, 39.631345], [-104.885218, 39.629513], [-104.885213, 39.629087], [-104.88528, 39.627128], [-104.885282, 39.624129], [-104.887773, 39.624116], [-104.888331, 39.624143], [-104.888758, 39.624165], [-104.889037, 39.624176], [-104.889661, 39.6242], [-104.889813, 39.624191], [-104.891733, 39.624115], [-104.892667, 39.624135], [-104.894522, 39.624175], [-104.894642, 39.624173], [-104.897084, 39.624127], [-104.898639, 39.624099], [-104.899263, 39.624097], [-104.899339, 39.624097], [-104.899371, 39.624097], [-104.900933, 39.623906], [-104.901561, 39.623905], [-104.901719, 39.623905], [-104.901763, 39.623907], [-104.902451, 39.623939], [-104.90403, 39.623995], [-104.90549, 39.624158], [-104.906394, 39.624259], [-104.906942, 39.624268], [-104.908587, 39.624297], [-104.908862, 39.624301], [-104.911686, 39.624342], [-104.911935, 39.624346], [-104.913341, 39.624213], [-104.931703, 39.653044], [-105.015696, 39.678684], [-105.032038, 39.657087], [-105.034822, 39.627809], [-105.053411, 39.631586], [-105.053439, 39.621423]], [[-105.081564, 39.634728], [-105.080803, 39.634723], [-105.080907, 39.635605], [-105.081959, 39.63517], [-105.081564, 39.634728]]]}, "bbox": [-105.109927, 39.614337, -104.600435, 39.914183]}, {"id": "08035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-105.04874, 39.566088], [-104.660626, 39.565909], [-104.662896, 39.129527], [-105.033544, 39.129819], [-105.32922, 39.129689], [-105.260054, 39.210445], [-105.04874, 39.566088]]]}, "bbox": [-105.32922, 39.129527, -104.660626, 39.566088]}, {"id": "08041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.053921, 38.522393], [-104.941533, 38.519569], [-104.942426, 38.649882], [-104.938994, 38.796884], [-105.072184, 38.799382], [-105.028903, 38.868907], [-105.033544, 39.129819], [-104.662896, 39.129527], [-104.051663, 39.128366], [-104.055528, 38.868868], [-104.053921, 38.522393]]]}, "bbox": [-105.072184, 38.519569, -104.051663, 39.129819]}, {"id": "08043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.941533, 38.519569], [-104.940366, 38.258275], [-105.049215, 38.257973], [-105.796897, 38.265047], [-106.010751, 38.446566], [-105.908717, 38.505631], [-105.879176, 38.607312], [-105.96975, 38.693551], [-105.329134, 38.697205], [-105.237792, 38.696901], [-105.240362, 38.647595], [-104.942426, 38.649882], [-104.941533, 38.519569]]]}, "bbox": [-106.010751, 38.257973, -104.940366, 38.697205]}, {"id": "08045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-109.051417, 39.366677], [-109.051363, 39.497674], [-109.051221, 39.660472], [-107.938546, 39.694464], [-107.938502, 39.824996], [-107.43177, 39.828377], [-107.431665, 39.917725], [-107.318751, 39.914968], [-107.316993, 40.090765], [-107.037363, 40.091538], [-107.033968, 39.918913], [-107.113672, 39.919112], [-107.113446, 39.366066], [-107.430949, 39.366178], [-108.865465, 39.366251], [-108.874002, 39.366269], [-108.875659, 39.366531], [-109.051417, 39.366677]]]}, "bbox": [-109.051417, 39.366066, -107.033968, 40.091538]}, {"id": "08059", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-105.081564, 39.634728], [-105.081959, 39.63517], [-105.080907, 39.635605], [-105.080803, 39.634723], [-105.081564, 39.634728]]], [[[-105.092839, 39.618327], [-105.096909, 39.614423], [-105.059305, 39.614337], [-105.053439, 39.621423], [-105.05414, 39.566088], [-105.04874, 39.566088], [-105.260054, 39.210445], [-105.32922, 39.129689], [-105.330444, 39.129685], [-105.397875, 39.129564], [-105.398453, 39.363516], [-105.398949, 39.566056], [-105.397949, 39.747087], [-105.397934, 39.841137], [-105.39745, 39.853697], [-105.397949, 39.860387], [-105.397568, 39.866061], [-105.398043, 39.872186], [-105.397649, 39.883187], [-105.397849, 39.912886], [-105.147342, 39.913886], [-105.052884, 39.913795], [-105.053245, 39.860018], [-105.0529, 39.852042], [-105.05319, 39.849251], [-105.05327, 39.820028], [-105.053256, 39.806497], [-105.052829, 39.803874], [-105.053162, 39.799239], [-105.053246, 39.791063], [-105.055083, 39.791065], [-105.055272, 39.791065], [-105.055627, 39.791066], [-105.056162, 39.791067], [-105.05663, 39.791067], [-105.059338, 39.791072], [-105.059696, 39.791072], [-105.060417, 39.791073], [-105.060678, 39.791073], [-105.06148, 39.791075], [-105.061608, 39.790928], [-105.061722, 39.790582], [-105.061899, 39.790083], [-105.061917, 39.790083], [-105.062966, 39.790086], [-105.063059, 39.790084], [-105.063298, 39.790081], [-105.063301, 39.790445], [-105.063301, 39.790476], [-105.063302, 39.790494], [-105.063302, 39.790568], [-105.063303, 39.790737], [-105.063304, 39.790775], [-105.063306, 39.791077], [-105.063382, 39.791077], [-105.064161, 39.791079], [-105.064203, 39.791079], [-105.064243, 39.791079], [-105.064541, 39.79108], [-105.064542, 39.790989], [-105.064545, 39.790686], [-105.064552, 39.789999], [-105.064559, 39.789695], [-105.064777, 39.789691], [-105.065115, 39.78968], [-105.065123, 39.789269], [-105.065106, 39.788813], [-105.065083, 39.788086], [-105.062944, 39.788087], [-105.062865, 39.788011], [-105.062451, 39.787597], [-105.062546, 39.787425], [-105.062556, 39.787408], [-105.062653, 39.787193], [-105.062653, 39.787], [-105.062655, 39.786187], [-105.062655, 39.785822], [-105.062656, 39.785666], [-105.062659, 39.784112], [-105.062659, 39.784059], [-105.062659, 39.7839], [-105.062659, 39.783847], [-105.062425, 39.783847], [-105.062176, 39.783846], [-105.061848, 39.783845], [-105.061711, 39.783845], [-105.060765, 39.783842], [-105.060576, 39.783839], [-105.060346, 39.783836], [-105.060009, 39.783832], [-105.05982, 39.78383], [-105.059628, 39.78383], [-105.059054, 39.78383], [-105.058863, 39.78383], [-105.057912, 39.783831], [-105.057894, 39.78383], [-105.05675, 39.783822], [-105.056742, 39.783821], [-105.055588, 39.783818], [-105.054442, 39.783814], [-105.053183, 39.783797], [-105.053183, 39.783744], [-105.053184, 39.783687], [-105.053184, 39.783585], [-105.053184, 39.783533], [-105.053184, 39.783471], [-105.053185, 39.783435], [-105.053187, 39.783288], [-105.053189, 39.783228], [-105.05319, 39.783134], [-105.053196, 39.782852], [-105.053198, 39.782759], [-105.053211, 39.782588], [-105.053243, 39.78219], [-105.053243, 39.782075], [-105.053243, 39.781904], [-105.053243, 39.781861], [-105.053243, 39.781732], [-105.053243, 39.78169], [-105.053235, 39.781393], [-105.053214, 39.780502], [-105.053208, 39.780205], [-105.053214, 39.77984], [-105.053235, 39.778748], [-105.053242, 39.778384], [-105.053242, 39.778023], [-105.053244, 39.776943], [-105.053245, 39.776583], [-105.053244, 39.776219], [-105.053241, 39.775127], [-105.053241, 39.774763], [-105.053241, 39.774398], [-105.053241, 39.773303], [-105.053241, 39.772938], [-105.053245, 39.772577], [-105.05326, 39.771494], [-105.053265, 39.771134], [-105.053261, 39.770876], [-105.05325, 39.770102], [-105.053247, 39.769844], [-105.053245, 39.769741], [-105.053241, 39.769435], [-105.05324, 39.769333], [-105.05324, 39.768968], [-105.05324, 39.767876], [-105.053241, 39.767512], [-105.053241, 39.767409], [-105.053243, 39.767278], [-105.053242, 39.766622], [-105.05323, 39.765699], [-105.053232, 39.765521], [-105.05324, 39.764991], [-105.053243, 39.764814], [-105.053242, 39.764631], [-105.053241, 39.764085], [-105.053241, 39.763903], [-105.053241, 39.76372], [-105.053241, 39.763171], [-105.053241, 39.762989], [-105.053241, 39.762807], [-105.053243, 39.762265], [-105.053244, 39.762084], [-105.053243, 39.761725], [-105.053241, 39.760651], [-105.053241, 39.760293], [-105.05324, 39.759928], [-105.053239, 39.758836], [-105.053239, 39.758472], [-105.053238, 39.758165], [-105.053238, 39.757245], [-105.053238, 39.756939], [-105.053237, 39.755787], [-105.053236, 39.755553], [-105.053236, 39.754848], [-105.053231, 39.753046], [-105.05323, 39.752686], [-105.053227, 39.751608], [-105.053227, 39.751249], [-105.053224, 39.75089], [-105.053215, 39.749816], [-105.053213, 39.749458], [-105.053217, 39.748157], [-105.053219, 39.747687], [-105.053219, 39.747616], [-105.053226, 39.74568], [-105.053214, 39.745187], [-105.053212, 39.74398], [-105.053211, 39.743881], [-105.053211, 39.743584], [-105.053211, 39.743486], [-105.05321, 39.743339], [-105.053209, 39.742781], [-105.053209, 39.742697], [-105.053204, 39.742203], [-105.053199, 39.742204], [-105.053195, 39.741938], [-105.0532, 39.741935], [-105.053201, 39.741935], [-105.053206, 39.74036], [-105.053206, 39.739987], [-105.053206, 39.73887], [-105.053207, 39.738498], [-105.05321, 39.738152], [-105.053223, 39.737115], [-105.053227, 39.73677], [-105.053227, 39.736537], [-105.053227, 39.735841], [-105.053227, 39.735609], [-105.053227, 39.735544], [-105.053227, 39.735349], [-105.053227, 39.735284], [-105.053227, 39.735259], [-105.05323, 39.735185], [-105.053231, 39.735161], [-105.053228, 39.734965], [-105.055567, 39.734977], [-105.055586, 39.73474], [-105.055585, 39.734707], [-105.055574, 39.734508], [-105.055539, 39.733687], [-105.055539, 39.733569], [-105.055539, 39.733215], [-105.055539, 39.733098], [-105.055424, 39.733098], [-105.055082, 39.733099], [-105.054968, 39.7331], [-105.054969, 39.733217], [-105.054975, 39.733569], [-105.054977, 39.733687], [-105.054977, 39.733728], [-105.054979, 39.733854], [-105.05498, 39.733896], [-105.054903, 39.733897], [-105.054671, 39.7339], [-105.054595, 39.733902], [-105.054593, 39.73386], [-105.054587, 39.733734], [-105.054585, 39.733693], [-105.054499, 39.733706], [-105.054418, 39.73372], [-105.054411, 39.733541], [-105.054409, 39.733455], [-105.054406, 39.733384], [-105.0544, 39.733172], [-105.054398, 39.733102], [-105.05434, 39.733102], [-105.05417, 39.733102], [-105.054113, 39.733103], [-105.053935, 39.733104], [-105.053404, 39.733108], [-105.053227, 39.73311], [-105.053228, 39.732746], [-105.053235, 39.731657], [-105.053238, 39.731294], [-105.053239, 39.730942], [-105.053242, 39.72989], [-105.053244, 39.729539], [-105.053246, 39.728968], [-105.053251, 39.728522], [-105.053252, 39.727772], [-105.053254, 39.727349], [-105.053254, 39.727233], [-105.053252, 39.726184], [-105.053252, 39.726112], [-105.053253, 39.725951], [-105.053253, 39.725899], [-105.053253, 39.725828], [-105.053253, 39.7258], [-105.05324, 39.725441], [-105.053259, 39.724083], [-105.053263, 39.723133], [-105.053264, 39.722719], [-105.053268, 39.721477], [-105.05327, 39.721064], [-105.05327, 39.720933], [-105.05327, 39.720544], [-105.053271, 39.720414], [-105.053272, 39.720056], [-105.053275, 39.719071], [-105.053276, 39.718984], [-105.053278, 39.718627], [-105.053279, 39.718233], [-105.05327, 39.716647], [-105.05327, 39.71663], [-105.053271, 39.715004], [-105.053263, 39.713181], [-105.05325, 39.711343], [-105.053264, 39.7103], [-105.053262, 39.710161], [-105.053258, 39.709746], [-105.053257, 39.709608], [-105.053257, 39.709416], [-105.053259, 39.708841], [-105.05326, 39.70865], [-105.053258, 39.708463], [-105.053253, 39.707902], [-105.053252, 39.707716], [-105.053251, 39.70755], [-105.05325, 39.707054], [-105.05325, 39.706889], [-105.053249, 39.706674], [-105.053246, 39.706029], [-105.053246, 39.705921], [-105.053246, 39.705814], [-105.053258, 39.70505], [-105.053252, 39.704542], [-105.053247, 39.703985], [-105.053245, 39.703268], [-105.053245, 39.703126], [-105.053247, 39.702703], [-105.053249, 39.702562], [-105.053245, 39.702269], [-105.053245, 39.700438], [-105.053241, 39.69991], [-105.053236, 39.699078], [-105.053225, 39.696889], [-105.053225, 39.69682], [-105.053225, 39.696809], [-105.053225, 39.696779], [-105.053225, 39.696769], [-105.053223, 39.696412], [-105.053219, 39.695344], [-105.053218, 39.694988], [-105.053213, 39.694625], [-105.053198, 39.693538], [-105.053194, 39.693176], [-105.053196, 39.693103], [-105.053202, 39.692885], [-105.053205, 39.692813], [-105.053207, 39.692745], [-105.053212, 39.692542], [-105.053215, 39.692475], [-105.05321, 39.692252], [-105.053198, 39.691586], [-105.053194, 39.691364], [-105.053208, 39.691002], [-105.053251, 39.689919], [-105.053266, 39.689559], [-105.053265, 39.689194], [-105.053264, 39.6881], [-105.053264, 39.687883], [-105.053254, 39.687736], [-105.053248, 39.687654], [-105.053212, 39.68739], [-105.053208, 39.687353], [-105.053193, 39.686873], [-105.053193, 39.686347], [-105.053194, 39.685999], [-105.053194, 39.685911], [-105.053196, 39.68565], [-105.053197, 39.685563], [-105.053195, 39.68438], [-105.053183, 39.683528], [-105.053183, 39.683498], [-105.053191, 39.682397], [-105.053221, 39.682291], [-105.055588, 39.68226], [-105.056518, 39.682265], [-105.0572, 39.682271], [-105.057265, 39.682272], [-105.057783, 39.682272], [-105.057912, 39.682276], [-105.057913, 39.682277], [-105.058033, 39.682275], [-105.058034, 39.682275], [-105.058044, 39.68227], [-105.058054, 39.681825], [-105.058049, 39.681817], [-105.05806, 39.680649], [-105.058175, 39.678666], [-105.058505, 39.678615], [-105.060732, 39.678279], [-105.062086, 39.679063], [-105.062442, 39.67919], [-105.06258, 39.679293], [-105.062777, 39.679441], [-105.063177, 39.679681], [-105.062991, 39.679363], [-105.062929, 39.679259], [-105.062907, 39.679223], [-105.062835, 39.678446], [-105.062772, 39.677608], [-105.062887, 39.676224], [-105.062891, 39.675853], [-105.062894, 39.675465], [-105.062894, 39.675369], [-105.062897, 39.675082], [-105.062898, 39.674987], [-105.062734, 39.674985], [-105.062638, 39.674985], [-105.062245, 39.674973], [-105.062082, 39.674969], [-105.061573, 39.674952], [-105.060047, 39.674903], [-105.059539, 39.674887], [-105.059393, 39.674887], [-105.058955, 39.674887], [-105.058809, 39.674887], [-105.0585, 39.674887], [-105.057573, 39.674888], [-105.057265, 39.674889], [-105.056462, 39.674909], [-105.054053, 39.674969], [-105.05325, 39.674989], [-105.053246, 39.674851], [-105.053237, 39.674437], [-105.053234, 39.674299], [-105.053239, 39.674095], [-105.053247, 39.673778], [-105.053255, 39.673483], [-105.053261, 39.67328], [-105.053261, 39.673271], [-105.053251, 39.673116], [-105.053262, 39.672255], [-105.053262, 39.671949], [-105.053262, 39.671935], [-105.053262, 39.671896], [-105.053262, 39.671883], [-105.05326, 39.671063], [-105.053257, 39.669076], [-105.053257, 39.668604], [-105.053256, 39.667785], [-105.053388, 39.667785], [-105.053784, 39.667785], [-105.053916, 39.667785], [-105.054106, 39.667785], [-105.054676, 39.667785], [-105.054866, 39.667785], [-105.055072, 39.667784], [-105.055691, 39.667781], [-105.055898, 39.667781], [-105.056104, 39.667781], [-105.056725, 39.667784], [-105.056932, 39.667785], [-105.05714, 39.667784], [-105.057765, 39.667784], [-105.057974, 39.667784], [-105.058185, 39.667782], [-105.058821, 39.667778], [-105.059033, 39.667778], [-105.059248, 39.667778], [-105.059894, 39.667779], [-105.06011, 39.66778], [-105.060252, 39.66778], [-105.06068, 39.66778], [-105.060823, 39.66778], [-105.060844, 39.66778], [-105.06125, 39.66778], [-105.062534, 39.667782], [-105.062962, 39.667783], [-105.063161, 39.667782], [-105.063759, 39.66778], [-105.063959, 39.66778], [-105.063976, 39.66778], [-105.064027, 39.66778], [-105.064044, 39.66778], [-105.064257, 39.667779], [-105.064897, 39.667778], [-105.065111, 39.667778], [-105.065304, 39.667777], [-105.065885, 39.667777], [-105.066079, 39.667777], [-105.066097, 39.667777], [-105.066151, 39.667777], [-105.06617, 39.667777], [-105.066247, 39.667776], [-105.06648, 39.667776], [-105.066558, 39.667776], [-105.066705, 39.667775], [-105.067149, 39.667775], [-105.067297, 39.667775], [-105.067538, 39.667774], [-105.068263, 39.667771], [-105.068505, 39.667771], [-105.06908, 39.667769], [-105.070805, 39.667765], [-105.071381, 39.667764], [-105.071406, 39.667764], [-105.07145, 39.667764], [-105.071483, 39.667764], [-105.071509, 39.667764], [-105.071643, 39.667763], [-105.072044, 39.667763], [-105.072179, 39.667763], [-105.072183, 39.668093], [-105.072186, 39.66828], [-105.072197, 39.669058], [-105.072197, 39.669083], [-105.072202, 39.669414], [-105.072202, 39.669435], [-105.072203, 39.669499], [-105.072204, 39.669521], [-105.072371, 39.669594], [-105.072872, 39.669813], [-105.07304, 39.669887], [-105.0731, 39.669912], [-105.073253, 39.669976], [-105.07328, 39.669987], [-105.07334, 39.670013], [-105.07494, 39.670687], [-105.07614, 39.669987], [-105.076039, 39.669587], [-105.076939, 39.669686], [-105.076939, 39.669523], [-105.076939, 39.66952], [-105.076938, 39.66932], [-105.0775, 39.66933], [-105.079164, 39.669358], [-105.079175, 39.669601], [-105.079183, 39.669738], [-105.079212, 39.669738], [-105.079299, 39.669738], [-105.079329, 39.669739], [-105.079345, 39.66974], [-105.079651, 39.669755], [-105.079739, 39.669765], [-105.079876, 39.669782], [-105.080157, 39.669826], [-105.080528, 39.669902], [-105.080948, 39.67001], [-105.081192, 39.670074], [-105.08135, 39.670099], [-105.081389, 39.669628], [-105.081434, 39.669103], [-105.081457, 39.668577], [-105.081454, 39.668215], [-105.081451, 39.667743], [-105.081455, 39.665551], [-105.081455, 39.665498], [-105.081449, 39.665055], [-105.081454, 39.664987], [-105.081454, 39.662896], [-105.081454, 39.662074], [-105.079822, 39.662164], [-105.079822, 39.66216], [-105.079771, 39.662163], [-105.079733, 39.662061], [-105.079534, 39.661814], [-105.079086, 39.661526], [-105.079071, 39.661521], [-105.07907, 39.661521], [-105.077863, 39.661004], [-105.077338, 39.660389], [-105.077342, 39.660374], [-105.077479, 39.659644], [-105.077642, 39.658779], [-105.076255, 39.659096], [-105.075423, 39.659286], [-105.074427, 39.659515], [-105.07324, 39.659787], [-105.071617, 39.659995], [-105.071582, 39.659853], [-105.071479, 39.65943], [-105.071445, 39.659289], [-105.071314, 39.659265], [-105.070923, 39.659193], [-105.070793, 39.65917], [-105.070768, 39.65822], [-105.070727, 39.656594], [-105.069505, 39.656592], [-105.069183, 39.656591], [-105.068556, 39.656591], [-105.067045, 39.656587], [-105.066956, 39.654029], [-105.066941, 39.653594], [-105.06697, 39.653494], [-105.067026, 39.653327], [-105.067057, 39.653233], [-105.067089, 39.65314], [-105.067137, 39.652996], [-105.06714, 39.652987], [-105.067144, 39.652981], [-105.067283, 39.652785], [-105.067307, 39.652752], [-105.067481, 39.652641], [-105.067681, 39.652589], [-105.067921, 39.652471], [-105.067979, 39.652444], [-105.068137, 39.652364], [-105.06884, 39.651587], [-105.07014, 39.650386], [-105.070352, 39.650413], [-105.07094, 39.650486], [-105.070953, 39.650411], [-105.07104, 39.649887], [-105.071034, 39.649731], [-105.071029, 39.649579], [-105.063924, 39.649566], [-105.063926, 39.64962], [-105.063939, 39.649887], [-105.063938, 39.650486], [-105.06261, 39.650598], [-105.062606, 39.65107], [-105.062606, 39.651077], [-105.062586, 39.651859], [-105.062586, 39.651899], [-105.062133, 39.651791], [-105.062137, 39.651384], [-105.061555, 39.651385], [-105.060692, 39.651385], [-105.060648, 39.651385], [-105.060321, 39.651385], [-105.059977, 39.651386], [-105.059209, 39.651386], [-105.058839, 39.651387], [-105.058939, 39.651687], [-105.058439, 39.651687], [-105.058465, 39.652008], [-105.058527, 39.652781], [-105.058543, 39.652979], [-105.058399, 39.652982], [-105.058311, 39.652979], [-105.058031, 39.652959], [-105.057873, 39.652948], [-105.05782, 39.652948], [-105.057215, 39.652946], [-105.05724, 39.652759], [-105.057319, 39.652201], [-105.057336, 39.652085], [-105.057266, 39.652086], [-105.055136, 39.652115], [-105.055061, 39.652016], [-105.055042, 39.652003], [-105.054882, 39.651895], [-105.054703, 39.651812], [-105.054654, 39.651798], [-105.054513, 39.65176], [-105.055521, 39.651737], [-105.057257, 39.651723], [-105.057345, 39.649984], [-105.061452, 39.650063], [-105.061578, 39.650066], [-105.061679, 39.650068], [-105.062614, 39.650086], [-105.063399, 39.65008], [-105.063422, 39.649619], [-105.063425, 39.649532], [-105.063435, 39.649273], [-105.063439, 39.649187], [-105.063454, 39.648699], [-105.063503, 39.647236], [-105.06352, 39.646749], [-105.063522, 39.646672], [-105.063532, 39.646404], [-105.063539, 39.646188], [-105.063539, 39.645988], [-105.06894, 39.646087], [-105.072042, 39.64609], [-105.072044, 39.646033], [-105.072049, 39.645815], [-105.072053, 39.645789], [-105.07206, 39.645751], [-105.072093, 39.645647], [-105.072133, 39.645574], [-105.072189, 39.645493], [-105.072326, 39.64535], [-105.072434, 39.645271], [-105.072523, 39.64522], [-105.072902, 39.645038], [-105.073285, 39.644872], [-105.073665, 39.644709], [-105.073816, 39.644628], [-105.073998, 39.644513], [-105.074145, 39.644403], [-105.074292, 39.644274], [-105.074454, 39.644104], [-105.074563, 39.643945], [-105.07469, 39.643727], [-105.07486, 39.64346], [-105.075363, 39.642709], [-105.075393, 39.642666], [-105.075679, 39.642203], [-105.07576, 39.64205], [-105.075789, 39.641968], [-105.075819, 39.641842], [-105.075837, 39.641689], [-105.075857, 39.641359], [-105.075872, 39.641277], [-105.075897, 39.641182], [-105.075897, 39.64118], [-105.075946, 39.641058], [-105.07601, 39.640913], [-105.076098, 39.640739], [-105.076546, 39.639906], [-105.076653, 39.639713], [-105.076722, 39.639549], [-105.076773, 39.639353], [-105.076797, 39.639153], [-105.076807, 39.638967], [-105.076803, 39.638735], [-105.076313, 39.638737], [-105.074866, 39.638745], [-105.074846, 39.638744], [-105.074358, 39.638742], [-105.073985, 39.638739], [-105.073951, 39.636831], [-105.07724, 39.636593], [-105.078087, 39.636644], [-105.080629, 39.6368], [-105.081507, 39.636377], [-105.081657, 39.636302], [-105.081716, 39.636867], [-105.081706, 39.636924], [-105.081702, 39.63695], [-105.081702, 39.636953], [-105.081693, 39.637031], [-105.08169, 39.637059], [-105.081688, 39.637076], [-105.081683, 39.637127], [-105.081682, 39.637145], [-105.081646, 39.637475], [-105.081646, 39.637479], [-105.081589, 39.638469], [-105.081578, 39.638667], [-105.081676, 39.638759], [-105.082223, 39.638745], [-105.083866, 39.638705], [-105.084414, 39.638693], [-105.084512, 39.638693], [-105.084809, 39.638694], [-105.084908, 39.638695], [-105.085402, 39.638698], [-105.08622, 39.638703], [-105.086885, 39.638696], [-105.08738, 39.638692], [-105.087423, 39.638692], [-105.087553, 39.638693], [-105.087597, 39.638694], [-105.087804, 39.638695], [-105.087853, 39.638695], [-105.087975, 39.638696], [-105.088094, 39.638696], [-105.088349, 39.638698], [-105.08849, 39.6387], [-105.088969, 39.638703], [-105.091023, 39.638718], [-105.0911, 39.638719], [-105.091258, 39.638722], [-105.091577, 39.638729], [-105.091593, 39.638086], [-105.091598, 39.637574], [-105.0916, 39.637331], [-105.091609, 39.636546], [-105.091617, 39.635458], [-105.091582, 39.635178], [-105.093134, 39.635158], [-105.095462, 39.635121], [-105.095546, 39.635121], [-105.097052, 39.635108], [-105.098527, 39.635075], [-105.099019, 39.635037], [-105.099641, 39.634987], [-105.099708, 39.635011], [-105.099958, 39.635038], [-105.100541, 39.635136], [-105.100611, 39.635148], [-105.100841, 39.635187], [-105.101427, 39.635187], [-105.109814, 39.635188], [-105.109874, 39.635186], [-105.109875, 39.635072], [-105.109875, 39.63507], [-105.109875, 39.635069], [-105.109887, 39.634485], [-105.109901, 39.634272], [-105.109902, 39.634263], [-105.109901, 39.63404], [-105.109893, 39.632676], [-105.109893, 39.632105], [-105.109889, 39.631412], [-105.109883, 39.629897], [-105.109885, 39.629741], [-105.109922, 39.627345], [-105.109925, 39.6271], [-105.109926, 39.62708], [-105.109927, 39.626988], [-105.109343, 39.626989], [-105.109192, 39.626988], [-105.10874, 39.626987], [-105.10859, 39.626987], [-105.108597, 39.624914], [-105.108599, 39.624262], [-105.1086, 39.624208], [-105.108377, 39.624205], [-105.108376, 39.624205], [-105.108374, 39.624205], [-105.107942, 39.624208], [-105.107924, 39.624208], [-105.107894, 39.624208], [-105.107537, 39.624218], [-105.107496, 39.624218], [-105.106931, 39.624218], [-105.105741, 39.62422], [-105.105458, 39.62422], [-105.104612, 39.624221], [-105.10433, 39.624222], [-105.104002, 39.624222], [-105.10302, 39.624223], [-105.102693, 39.624224], [-105.10265, 39.624224], [-105.102524, 39.624224], [-105.102482, 39.624224], [-105.102454, 39.624224], [-105.102373, 39.624224], [-105.102346, 39.624224], [-105.102291, 39.624224], [-105.102129, 39.624224], [-105.102075, 39.624224], [-105.101848, 39.624223], [-105.10117, 39.624223], [-105.100944, 39.624223], [-105.100642, 39.624222], [-105.099738, 39.624222], [-105.099437, 39.624222], [-105.099252, 39.624222], [-105.0987, 39.624222], [-105.098516, 39.624222], [-105.098301, 39.62422], [-105.097656, 39.624216], [-105.097441, 39.624215], [-105.097144, 39.624213], [-105.096253, 39.624207], [-105.095956, 39.624205], [-105.095694, 39.624203], [-105.095563, 39.624202], [-105.09491, 39.624197], [-105.094649, 39.624196], [-105.094598, 39.624195], [-105.094461, 39.624195], [-105.093228, 39.624196], [-105.093213, 39.624197], [-105.092998, 39.624197], [-105.091256, 39.624198], [-105.091253, 39.624341], [-105.091243, 39.624593], [-105.091216, 39.624983], [-105.091214, 39.625898], [-105.09121, 39.627291], [-105.090745, 39.627288], [-105.089988, 39.627286], [-105.089902, 39.627287], [-105.089654, 39.627287], [-105.089354, 39.627286], [-105.08869, 39.627287], [-105.08834, 39.627287], [-105.087894, 39.627308], [-105.087666, 39.62732], [-105.087662, 39.627143], [-105.087647, 39.626463], [-105.087395, 39.626463], [-105.086949, 39.626465], [-105.086823, 39.626465], [-105.086449, 39.626467], [-105.086324, 39.626468], [-105.085608, 39.626465], [-105.0855, 39.626465], [-105.085508, 39.627488], [-105.085496, 39.628501], [-105.085489, 39.629217], [-105.084999, 39.629237], [-105.083939, 39.629282], [-105.083894, 39.628877], [-105.08384, 39.628391], [-105.083881, 39.627799], [-105.083897, 39.627582], [-105.082334, 39.627571], [-105.081741, 39.627568], [-105.08174, 39.627579], [-105.08174, 39.627612], [-105.08174, 39.627624], [-105.081738, 39.627687], [-105.081735, 39.627879], [-105.081735, 39.627943], [-105.081733, 39.627999], [-105.08173, 39.628168], [-105.08173, 39.628225], [-105.081701, 39.629738], [-105.081695, 39.630037], [-105.081693, 39.630115], [-105.081693, 39.630149], [-105.081856, 39.63015], [-105.081936, 39.63015], [-105.082176, 39.630152], [-105.082256, 39.630153], [-105.08251, 39.630153], [-105.083274, 39.630154], [-105.083529, 39.630155], [-105.083535, 39.630848], [-105.083546, 39.631387], [-105.083556, 39.631872], [-105.081779, 39.631873], [-105.081685, 39.631872], [-105.081639, 39.631873], [-105.081514, 39.631863], [-105.08145, 39.631858], [-105.080309, 39.630486], [-105.08024, 39.630402], [-105.07624, 39.625587], [-105.07594, 39.625274], [-105.075132, 39.62451], [-105.076072, 39.624426], [-105.076594, 39.624378], [-105.076578, 39.624365], [-105.075952, 39.624143], [-105.066141, 39.620731], [-105.065746, 39.620588], [-105.065739, 39.620586], [-105.064966, 39.620238], [-105.065039, 39.619842], [-105.06505, 39.619779], [-105.065086, 39.619588], [-105.065115, 39.61943], [-105.065141, 39.618585], [-105.06542, 39.618583], [-105.065467, 39.618588], [-105.065492, 39.618588], [-105.065519, 39.618592], [-105.065572, 39.618592], [-105.065638, 39.61859], [-105.066206, 39.618575], [-105.066937, 39.618585], [-105.06788, 39.61859], [-105.068107, 39.618589], [-105.069229, 39.618571], [-105.072508, 39.618549], [-105.072611, 39.618573], [-105.072626, 39.618576], [-105.072638, 39.618577], [-105.072655, 39.618577], [-105.072673, 39.618576], [-105.072687, 39.618573], [-105.072703, 39.618568], [-105.072746, 39.618552], [-105.072763, 39.618548], [-105.072783, 39.618546], [-105.072799, 39.618546], [-105.072819, 39.618549], [-105.072844, 39.618555], [-105.073332, 39.618559], [-105.073364, 39.618559], [-105.074518, 39.61852], [-105.074796, 39.618511], [-105.075873, 39.618508], [-105.077553, 39.618485], [-105.079398, 39.618473], [-105.082476, 39.618504], [-105.082643, 39.618574], [-105.082773, 39.618573], [-105.082983, 39.618571], [-105.083616, 39.618569], [-105.083827, 39.618569], [-105.084043, 39.618568], [-105.084221, 39.618568], [-105.084573, 39.618526], [-105.084839, 39.618411], [-105.085262, 39.618283], [-105.085928, 39.618668], [-105.086115, 39.618979], [-105.086314, 39.618808], [-105.086553, 39.61858], [-105.08668, 39.618478], [-105.08682, 39.618412], [-105.087031, 39.618339], [-105.087252, 39.618317], [-105.087826, 39.618319], [-105.090115, 39.618312], [-105.091123, 39.618331], [-105.091362, 39.618336], [-105.091657, 39.618333], [-105.092543, 39.618328], [-105.092839, 39.618327]]]]}, "bbox": [-105.398949, 39.129564, -105.04874, 39.913886]}, {"id": "08067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-107.481737, 36.999973], [-108.288086, 36.999555], [-108.2884, 36.99952], [-108.320464, 36.999499], [-108.320721, 36.99951], [-108.379203, 36.999459], [-108.197197, 37.355475], [-108.038409, 37.451931], [-108.023006, 37.590999], [-107.970086, 37.639587], [-107.482179, 37.639501], [-107.482131, 37.422673], [-107.481737, 36.999973]]]}, "bbox": [-108.379203, 36.999459, -107.481737, 37.639587]}, {"id": "08069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-105.27686, 40.998173], [-105.256527, 40.998191], [-105.254779, 40.99821], [-104.943371, 40.99819], [-104.945551, 40.349099], [-105.05672, 40.349281], [-105.055089, 40.261793], [-105.196476, 40.261085], [-105.653321, 40.260457], [-105.854926, 40.486252], [-106.057715, 40.81712], [-106.185307, 40.933973], [-106.19055, 40.998056], [-106.061181, 40.996999], [-105.730421, 40.996886], [-105.724804, 40.99691], [-105.277138, 40.998173], [-105.27686, 40.998173]]]}, "bbox": [-106.19055, 40.260457, -104.943371, 40.99821]}, {"id": "08077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-109.059962, 38.499987], [-109.059541, 38.719888], [-109.053943, 38.904414], [-109.053797, 38.905284], [-109.053233, 38.942467], [-109.053292, 38.942878], [-109.051516, 39.124982], [-109.051417, 39.366677], [-108.875659, 39.366531], [-108.874002, 39.366269], [-108.865465, 39.366251], [-107.430949, 39.366178], [-107.465957, 39.32212], [-107.394486, 39.256299], [-107.500606, 39.217916], [-107.76549, 39.043294], [-107.85824, 39.079804], [-108.378953, 38.829108], [-108.378698, 38.668097], [-108.379136, 38.499987], [-109.059962, 38.499987]]]}, "bbox": [-109.059962, 38.499987, -107.394486, 39.366677]}, {"id": "08085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-109.042062, 38.15549], [-109.060062, 38.275489], [-109.059962, 38.499987], [-108.379136, 38.499987], [-108.378698, 38.668097], [-107.500655, 38.668553], [-107.50002, 38.301926], [-107.63504, 38.301896], [-107.635697, 38.332148], [-108.13238, 38.331573], [-108.086604, 38.255202], [-107.937588, 38.218992], [-107.965789, 38.152328], [-109.042074, 38.153023], [-109.042062, 38.15549]]]}, "bbox": [-109.060062, 38.152328, -107.50002, 38.668553]}, {"id": "08101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.053921, 38.522393], [-104.058242, 38.146492], [-104.061132, 37.734704], [-104.351109, 37.817488], [-104.646383, 37.900527], [-105.013729, 37.881271], [-105.049917, 37.915479], [-105.049215, 38.257973], [-104.940366, 38.258275], [-104.941533, 38.519569], [-104.053921, 38.522393]]]}, "bbox": [-105.049917, 37.734704, -104.053921, 38.522393]}, {"id": "09001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.517473, 41.666646], [-73.516019, 41.665964], [-73.514784, 41.665886], [-73.511149, 41.666488], [-73.510379, 41.666498], [-73.506923, 41.665802], [-73.441466, 41.491294], [-73.331569, 41.472677], [-73.326774, 41.469515], [-73.312873, 41.467415], [-73.310473, 41.468815], [-73.207688, 41.420544], [-73.184857, 41.406296], [-73.187957, 41.397296], [-73.183269, 41.391711], [-73.173356, 41.383596], [-73.161253, 41.383853], [-73.147555, 41.367696], [-73.136054, 41.351196], [-73.115754, 41.332196], [-73.090938, 41.319256], [-73.08665, 41.314495], [-73.078952, 41.311596], [-73.077652, 41.307696], [-73.075352, 41.305596], [-73.067851, 41.300996], [-72.985095, 41.234358], [-72.986247, 41.233497], [-72.997948, 41.222697], [-73.003639, 41.215287], [-73.007548, 41.210197], [-73.013465, 41.205479], [-73.013988, 41.205062], [-73.014948, 41.204297], [-73.020149, 41.204097], [-73.020167, 41.204237], [-73.020195, 41.204446], [-73.02021, 41.204568], [-73.020254, 41.204906], [-73.020449, 41.206397], [-73.022549, 41.207197], [-73.024783, 41.207435], [-73.045602, 41.209658], [-73.05065, 41.210197], [-73.054947, 41.208468], [-73.05935, 41.206697], [-73.07761, 41.195176], [-73.07945, 41.194015], [-73.09122, 41.184153], [-73.092, 41.1835], [-73.092147, 41.183377], [-73.104328, 41.17317], [-73.105483, 41.172203], [-73.105493, 41.172194], [-73.107987, 41.168738], [-73.110352, 41.159697], [-73.109952, 41.156997], [-73.108352, 41.153718], [-73.111052, 41.150797], [-73.130253, 41.146797], [-73.16437, 41.158565], [-73.170074, 41.160532], [-73.170701, 41.164945], [-73.177774, 41.166697], [-73.202656, 41.158096], [-73.228295, 41.142602], [-73.235058, 41.143996], [-73.247958, 41.126396], [-73.262358, 41.117496], [-73.286759, 41.127896], [-73.296359, 41.125696], [-73.31186, 41.116296], [-73.33066, 41.109996], [-73.372296, 41.10402], [-73.392162, 41.087696], [-73.400154, 41.086299], [-73.41367, 41.073258], [-73.435063, 41.056696], [-73.450364, 41.057096], [-73.468239, 41.051347], [-73.477364, 41.035997], [-73.493327, 41.048173], [-73.516903, 41.038738], [-73.516766, 41.029497], [-73.522666, 41.019297], [-73.528866, 41.016397], [-73.531169, 41.021919], [-73.530189, 41.028776], [-73.532786, 41.03167], [-73.535338, 41.03192], [-73.551494, 41.024336], [-73.561968, 41.016797], [-73.567668, 41.010897], [-73.570068, 41.001597], [-73.583968, 41.000897], [-73.584988, 41.010537], [-73.595699, 41.015995], [-73.603952, 41.015054], [-73.643478, 41.002171], [-73.651175, 40.995229], [-73.657336, 40.985171], [-73.654671, 41.011697], [-73.655371, 41.012797], [-73.670472, 41.030097], [-73.679973, 41.041797], [-73.687173, 41.050697], [-73.694273, 41.059296], [-73.727775, 41.100696], [-73.639672, 41.141495], [-73.632153, 41.144921], [-73.614407, 41.153001], [-73.514617, 41.198434], [-73.509487, 41.200814], [-73.482709, 41.21276], [-73.550961, 41.295422], [-73.544728, 41.366375], [-73.543641, 41.376778], [-73.537673, 41.433905], [-73.537469, 41.43589], [-73.536969, 41.441094], [-73.536067, 41.451331], [-73.535986, 41.45306], [-73.535885, 41.455236], [-73.535857, 41.455709], [-73.535769, 41.457159], [-73.534369, 41.475894], [-73.534269, 41.476394], [-73.534269, 41.476911], [-73.53415, 41.47806], [-73.534055, 41.478968], [-73.533969, 41.479693], [-73.530067, 41.527194], [-73.521457, 41.616429], [-73.517473, 41.666646]]]}, "bbox": [-73.727775, 40.985171, -72.985095, 41.666646]}, {"id": "09003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.752181, 41.578894], [-72.94635, 41.556797], [-72.98325, 41.639598], [-72.99855, 41.712498], [-73.012256, 41.775132], [-73.012534, 41.77541], [-73.012633, 41.777457], [-73.016534, 41.795655], [-73.016936, 41.798183], [-72.949024, 41.806431], [-72.905945, 41.921696], [-72.88706, 41.973121], [-73.029537, 41.966606], [-73.008745, 42.038854], [-73.008739, 42.039356], [-72.863733, 42.03771], [-72.863619, 42.037709], [-72.813541, 42.036494], [-72.816741, 41.997595], [-72.774757, 42.002129], [-72.766739, 42.002995], [-72.766139, 42.007695], [-72.758151, 42.020865], [-72.757467, 42.020947], [-72.755838, 42.036195], [-72.714134, 42.036608], [-72.695927, 42.036788], [-72.509187, 42.034607], [-72.509081, 42.033539], [-72.49973, 41.984295], [-72.498928, 41.977893], [-72.492729, 41.947497], [-72.503065, 41.946608], [-72.51333, 41.945401], [-72.51363, 41.942997], [-72.51733, 41.869897], [-72.463899, 41.745572], [-72.410629, 41.601798], [-72.417229, 41.590598], [-72.46673, 41.583899], [-72.54423, 41.642696], [-72.630524, 41.633282], [-72.627836, 41.640199], [-72.714538, 41.60431], [-72.731671, 41.595779], [-72.752941, 41.592497], [-72.752181, 41.578894]]]}, "bbox": [-73.029537, 41.556797, -72.410629, 42.039356]}, {"id": "09005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.145036, 41.557822], [-73.164676, 41.557088], [-73.15573, 41.515279], [-73.318889, 41.505189], [-73.327114, 41.484527], [-73.310473, 41.468815], [-73.312873, 41.467415], [-73.326774, 41.469515], [-73.331569, 41.472677], [-73.441466, 41.491294], [-73.506923, 41.665802], [-73.510379, 41.666498], [-73.511149, 41.666488], [-73.514784, 41.665886], [-73.516019, 41.665964], [-73.517473, 41.666646], [-73.510171, 41.758686], [-73.505008, 41.823773], [-73.504944, 41.824285], [-73.487314, 42.049638], [-73.29442, 42.046984], [-73.293097, 42.04694], [-73.231056, 42.044945], [-73.229798, 42.044877], [-73.127276, 42.041964], [-73.053254, 42.039861], [-73.008739, 42.039356], [-73.008745, 42.038854], [-73.029537, 41.966606], [-72.88706, 41.973121], [-72.905945, 41.921696], [-72.949024, 41.806431], [-73.016936, 41.798183], [-73.016534, 41.795655], [-73.012633, 41.777457], [-73.012534, 41.77541], [-73.012256, 41.775132], [-72.99855, 41.712498], [-72.98325, 41.639598], [-73.004046, 41.628577], [-73.021471, 41.627104], [-73.01865, 41.614097], [-73.036156, 41.615197], [-73.058024, 41.60674], [-73.145036, 41.557822]]]}, "bbox": [-73.517473, 41.467415, -72.88706, 42.049638]}, {"id": "09009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.15573, 41.515279], [-73.164676, 41.557088], [-73.145036, 41.557822], [-73.058024, 41.60674], [-73.036156, 41.615197], [-73.01865, 41.614097], [-73.021471, 41.627104], [-73.004046, 41.628577], [-72.98325, 41.639598], [-72.94635, 41.556797], [-72.752181, 41.578894], [-72.744742, 41.497698], [-72.74333, 41.483114], [-72.733886, 41.485368], [-72.746141, 41.423297], [-72.708343, 41.429443], [-72.682539, 41.433797], [-72.678739, 41.433797], [-72.537776, 41.255646], [-72.546833, 41.250718], [-72.547235, 41.250499], [-72.570655, 41.267744], [-72.571076, 41.268054], [-72.571136, 41.268098], [-72.583336, 41.271698], [-72.585181, 41.271321], [-72.585934, 41.271168], [-72.586674, 41.271017], [-72.587926, 41.270761], [-72.589818, 41.270375], [-72.590967, 41.270141], [-72.598036, 41.268698], [-72.607863, 41.270387], [-72.610236, 41.270795], [-72.617237, 41.271998], [-72.617521, 41.27194], [-72.617983, 41.271845], [-72.631363, 41.269092], [-72.641001, 41.267108], [-72.641538, 41.266998], [-72.642811, 41.266884], [-72.650697, 41.266178], [-72.653838, 41.265897], [-72.653931, 41.265931], [-72.654715, 41.266219], [-72.662203, 41.268964], [-72.662838, 41.269197], [-72.667176, 41.268192], [-72.671673, 41.267151], [-72.672339, 41.266997], [-72.674319, 41.26552], [-72.684939, 41.257597], [-72.685414, 41.252607], [-72.685539, 41.251297], [-72.689446, 41.247629], [-72.690237, 41.246887], [-72.690439, 41.246697], [-72.693441, 41.245493], [-72.694744, 41.24497], [-72.69547, 41.244948], [-72.701806, 41.244752], [-72.706236, 41.244615], [-72.707212, 41.244585], [-72.708658, 41.24454], [-72.708963, 41.24453], [-72.709193, 41.244523], [-72.710595, 41.24448], [-72.710821, 41.244812], [-72.713674, 41.249007], [-72.711208, 41.251018], [-72.71246, 41.254167], [-72.722439, 41.259138], [-72.732813, 41.254727], [-72.754444, 41.266913], [-72.757477, 41.266913], [-72.786142, 41.264796], [-72.818737, 41.252244], [-72.819372, 41.254061], [-72.826883, 41.256755], [-72.847767, 41.25669], [-72.85021, 41.255544], [-72.854055, 41.24774], [-72.861344, 41.245297], [-72.881445, 41.242597], [-72.895445, 41.243697], [-72.900803, 41.245864], [-72.904345, 41.247297], [-72.905245, 41.248297], [-72.903045, 41.252797], [-72.902808, 41.252894], [-72.894745, 41.256197], [-72.89473, 41.25626], [-72.893845, 41.259897], [-72.89637, 41.263949], [-72.903129, 41.274794], [-72.907962, 41.282549], [-72.9082, 41.282932], [-72.916827, 41.282033], [-72.917037, 41.281905], [-72.920062, 41.280056], [-72.920658, 41.271574], [-72.920714, 41.27078], [-72.920846, 41.268897], [-72.931887, 41.261139], [-72.933472, 41.260024], [-72.935646, 41.258497], [-72.956984, 41.25292], [-72.959633, 41.252228], [-72.961345, 41.25178], [-72.962047, 41.251597], [-72.983751, 41.235364], [-72.985095, 41.234358], [-73.067851, 41.300996], [-73.075352, 41.305596], [-73.077652, 41.307696], [-73.078952, 41.311596], [-73.08665, 41.314495], [-73.090938, 41.319256], [-73.115754, 41.332196], [-73.136054, 41.351196], [-73.147555, 41.367696], [-73.161253, 41.383853], [-73.173356, 41.383596], [-73.183269, 41.391711], [-73.187957, 41.397296], [-73.184857, 41.406296], [-73.207688, 41.420544], [-73.310473, 41.468815], [-73.327114, 41.484527], [-73.318889, 41.505189], [-73.15573, 41.515279]]]}, "bbox": [-73.327114, 41.234358, -72.537776, 41.639598]}, {"id": "09011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.157546, 41.657627], [-72.153391, 41.665643], [-72.120328, 41.661925], [-72.105651, 41.659528], [-72.103523, 41.659305], [-72.062051, 41.652239], [-71.954983, 41.634799], [-71.789465, 41.640017], [-71.789356, 41.59691], [-71.789359, 41.596852], [-71.797674, 41.41691], [-71.797683, 41.416709], [-71.81839, 41.419599], [-71.839649, 41.412119], [-71.842563, 41.409855], [-71.843472, 41.40583], [-71.842131, 41.395359], [-71.833443, 41.384524], [-71.831613, 41.370899], [-71.83124, 41.344645], [-71.83253, 41.341204], [-71.839782, 41.33469], [-71.85957, 41.322399], [-71.868235, 41.330941], [-71.886302, 41.33641], [-71.91671, 41.332217], [-71.922092, 41.334518], [-71.923282, 41.335113], [-71.936284, 41.337959], [-71.945652, 41.337799], [-71.956747, 41.329871], [-71.970955, 41.324526], [-71.979447, 41.329987], [-71.982194, 41.329861], [-71.988153, 41.320577], [-72.021898, 41.316838], [-72.084487, 41.319634], [-72.094443, 41.314164], [-72.09982, 41.306998], [-72.11182, 41.299098], [-72.134221, 41.299398], [-72.16158, 41.310262], [-72.173922, 41.317597], [-72.177622, 41.322497], [-72.184122, 41.323997], [-72.191022, 41.323197], [-72.201422, 41.315697], [-72.203022, 41.313197], [-72.204022, 41.299097], [-72.212924, 41.291365], [-72.225276, 41.299047], [-72.235531, 41.300413], [-72.248161, 41.299488], [-72.251895, 41.29862], [-72.250515, 41.294386], [-72.251323, 41.289997], [-72.261487, 41.282926], [-72.31776, 41.277782], [-72.327595, 41.27846], [-72.333894, 41.282916], [-72.34146, 41.28011], [-72.43371, 41.423995], [-72.305531, 41.436282], [-72.322931, 41.518119], [-72.430767, 41.524567], [-72.46673, 41.583899], [-72.417229, 41.590598], [-72.410629, 41.601798], [-72.239559, 41.714191], [-72.237947, 41.713167], [-72.186651, 41.676283], [-72.157546, 41.657627]]]}, "bbox": [-72.46673, 41.277782, -71.789356, 41.714191]}, {"id": "09015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.099229, 41.958948], [-72.10216, 42.028962], [-72.059752, 42.027339], [-71.80065, 42.023569], [-71.799242, 42.008065], [-71.796822, 41.928552], [-71.796089, 41.904468], [-71.794161, 41.841101], [-71.794161, 41.840141], [-71.792786, 41.80867], [-71.792767, 41.807001], [-71.789678, 41.724734], [-71.789678, 41.724568], [-71.789465, 41.640017], [-71.954983, 41.634799], [-72.062051, 41.652239], [-72.103523, 41.659305], [-72.105651, 41.659528], [-72.120328, 41.661925], [-72.153391, 41.665643], [-72.157546, 41.657627], [-72.186651, 41.676283], [-72.237947, 41.713167], [-72.239559, 41.714191], [-72.156321, 41.753491], [-72.156893, 41.753818], [-72.164558, 41.834913], [-72.217719, 41.835184], [-72.21698, 41.958161], [-72.151654, 41.959302], [-72.12452, 41.95905], [-72.123632, 41.95898], [-72.099229, 41.958948]]]}, "bbox": [-72.239559, 41.634799, -71.789465, 42.028962]}, {"id": "10001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.747671, 39.143345], [-75.755953, 39.245958], [-75.755962, 39.246069], [-75.760104, 39.296817], [-75.584341, 39.308718], [-75.512372, 39.365656], [-75.511788, 39.365191], [-75.505276, 39.359169], [-75.494158, 39.354613], [-75.491797, 39.351845], [-75.494122, 39.34658], [-75.493148, 39.345527], [-75.491688, 39.343963], [-75.490377, 39.342818], [-75.479845, 39.337472], [-75.479963, 39.336577], [-75.469324, 39.33082], [-75.460423, 39.328236], [-75.439027, 39.313384], [-75.436936, 39.309379], [-75.435551, 39.297546], [-75.435374, 39.296676], [-75.427953, 39.285049], [-75.408376, 39.264698], [-75.402964, 39.254626], [-75.404823, 39.245898], [-75.405927, 39.243631], [-75.405716, 39.223834], [-75.404745, 39.222666], [-75.396892, 39.216141], [-75.393015, 39.204512], [-75.39479, 39.188354], [-75.398584, 39.186616], [-75.400144, 39.186456], [-75.408266, 39.174625], [-75.410625, 39.156246], [-75.401193, 39.088762], [-75.402035, 39.066885], [-75.400294, 39.065645], [-75.395806, 39.059211], [-75.396277, 39.057884], [-75.387914, 39.051174], [-75.379873, 39.04879], [-75.345763, 39.024857], [-75.34089, 39.01996], [-75.318354, 38.988191], [-75.314951, 38.980775], [-75.311607, 38.967637], [-75.312546, 38.951065], [-75.312546, 38.94928], [-75.311923, 38.945917], [-75.381339, 38.961285], [-75.555013, 38.835649], [-75.722599, 38.829859], [-75.72261, 38.830008], [-75.722882, 38.833156], [-75.724002, 38.846682], [-75.724061, 38.847781], [-75.725565, 38.868152], [-75.725829, 38.869296], [-75.745793, 39.114935], [-75.746121, 39.120318], [-75.747668, 39.143306], [-75.747671, 39.143345]]]}, "bbox": [-75.760104, 38.829859, -75.311607, 39.365656]}, {"id": "10003", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-75.564927, 39.583248], [-75.576271, 39.588144], [-75.578719, 39.591504], [-75.579615, 39.598656], [-75.565823, 39.590608], [-75.564927, 39.583248]]], [[[-75.55587, 39.605824], [-75.561934, 39.605216], [-75.567694, 39.613744], [-75.571759, 39.623584], [-75.570798, 39.626768], [-75.559446, 39.629812], [-75.55587, 39.605824]]], [[[-75.594846, 39.837286], [-75.593666, 39.837455], [-75.593082, 39.8375], [-75.5799, 39.838522], [-75.579849, 39.838526], [-75.539346, 39.838211], [-75.498843, 39.833312], [-75.45374, 39.820312], [-75.428038, 39.809212], [-75.415041, 39.801786], [-75.416095, 39.79583], [-75.437938, 39.783413], [-75.440623, 39.780926], [-75.448135, 39.773969], [-75.466249, 39.750769], [-75.466263, 39.750737], [-75.469239, 39.743613], [-75.474168, 39.735473], [-75.475384, 39.731057], [-75.504042, 39.698313], [-75.509742, 39.686113], [-75.529744, 39.692613], [-75.562246, 39.656712], [-75.587147, 39.651012], [-75.611969, 39.621968], [-75.613153, 39.62096], [-75.613377, 39.620288], [-75.614065, 39.61832], [-75.614929, 39.615952], [-75.614273, 39.61464], [-75.613345, 39.613056], [-75.613665, 39.61256], [-75.613233, 39.607408], [-75.613477, 39.606861], [-75.613473, 39.606832], [-75.613793, 39.606192], [-75.611905, 39.597568], [-75.611873, 39.597408], [-75.60464, 39.58992], [-75.603584, 39.58896], [-75.592224, 39.583568], [-75.591984, 39.583248], [-75.587744, 39.580672], [-75.5872, 39.580256], [-75.586608, 39.57888], [-75.586016, 39.578448], [-75.571599, 39.567728], [-75.570783, 39.56728], [-75.563034, 39.56224], [-75.564649, 39.559922], [-75.565636, 39.558509], [-75.569359, 39.540589], [-75.569418, 39.539124], [-75.570362, 39.527223], [-75.560728, 39.520472], [-75.566933, 39.508273], [-75.576436, 39.509195], [-75.587729, 39.496353], [-75.587729, 39.495369], [-75.593068, 39.479186], [-75.593068, 39.477996], [-75.589901, 39.462022], [-75.589439, 39.460812], [-75.580185, 39.450786], [-75.578914, 39.44788], [-75.570985, 39.442486], [-75.57183, 39.438897], [-75.55589, 39.430351], [-75.538512, 39.416502], [-75.535977, 39.409384], [-75.523583, 39.391583], [-75.521682, 39.387871], [-75.512996, 39.366153], [-75.512372, 39.365656], [-75.584341, 39.308718], [-75.760104, 39.296817], [-75.766667, 39.377216], [-75.766693, 39.377537], [-75.77924, 39.534737], [-75.779383, 39.536522], [-75.78689, 39.630575], [-75.78745, 39.637455], [-75.788616, 39.680742], [-75.788658, 39.681911], [-75.788395, 39.700031], [-75.788395, 39.700287], [-75.788359, 39.721811], [-75.739705, 39.772623], [-75.716969, 39.791998], [-75.685991, 39.811054], [-75.662822, 39.82115], [-75.641518, 39.828363], [-75.634706, 39.830164], [-75.595756, 39.837156], [-75.594846, 39.837286]]]]}, "bbox": [-75.788658, 39.296817, -75.415041, 39.838526]}, {"id": "10005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.311923, 38.945917], [-75.311882, 38.945698], [-75.311542, 38.944633], [-75.302552, 38.939002], [-75.312282, 38.924594], [-75.304078, 38.91316], [-75.263115, 38.877351], [-75.232029, 38.844254], [-75.205329, 38.823386], [-75.190552, 38.806861], [-75.160748, 38.791224], [-75.159022, 38.790193], [-75.134022, 38.782242], [-75.113331, 38.782998], [-75.097103, 38.788703], [-75.093654, 38.793992], [-75.097197, 38.803101], [-75.093805, 38.803812], [-75.089473, 38.797198], [-75.082153, 38.772157], [-75.080217, 38.750112], [-75.079221, 38.738238], [-75.06551, 38.66103], [-75.065217, 38.632394], [-75.06192, 38.608869], [-75.061259, 38.608602], [-75.060478, 38.608012], [-75.060032, 38.607709], [-75.049748, 38.486387], [-75.048939, 38.451263], [-75.049268, 38.451264], [-75.05251, 38.451273], [-75.053483, 38.451274], [-75.066327, 38.451291], [-75.069909, 38.451276], [-75.070356, 38.451276], [-75.085814, 38.451258], [-75.088281, 38.451256], [-75.089649, 38.451254], [-75.141894, 38.451196], [-75.185413, 38.451013], [-75.252723, 38.451397], [-75.26035, 38.451492], [-75.341247, 38.45197], [-75.34125, 38.45197], [-75.355797, 38.452008], [-75.371054, 38.452107], [-75.393563, 38.452114], [-75.394786, 38.45216], [-75.410884, 38.4524], [-75.424831, 38.45261], [-75.428728, 38.452671], [-75.47915, 38.453699], [-75.500142, 38.454144], [-75.502961, 38.45422], [-75.521304, 38.454657], [-75.52273, 38.454657], [-75.533763, 38.454958], [-75.559212, 38.455563], [-75.559934, 38.455579], [-75.57411, 38.455991], [-75.583601, 38.456424], [-75.589307, 38.456286], [-75.593082, 38.456404], [-75.598069, 38.456855], [-75.630457, 38.457904], [-75.662843, 38.458759], [-75.665585, 38.4589], [-75.693521, 38.460128], [-75.696369, 38.492373], [-75.696688, 38.496467], [-75.698777, 38.522001], [-75.700179, 38.542717], [-75.701465, 38.559433], [-75.701565, 38.560736], [-75.703445, 38.58512], [-75.703981, 38.592066], [-75.705774, 38.61474], [-75.70586, 38.616268], [-75.706235, 38.621296], [-75.706585, 38.626125], [-75.707346, 38.63528], [-75.707352, 38.635359], [-75.722028, 38.822078], [-75.722599, 38.829859], [-75.555013, 38.835649], [-75.381339, 38.961285], [-75.311923, 38.945917]]]}, "bbox": [-75.722599, 38.451013, -75.048939, 38.961285]}, {"id": "12001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.556511, 29.511982], [-82.656301, 29.564811], [-82.658128, 29.828068], [-82.658554, 29.830144], [-82.529705, 29.940881], [-82.418728, 29.923093], [-82.272563, 29.843011], [-82.133126, 29.835949], [-82.055625, 29.718232], [-82.050829, 29.716098], [-82.050291, 29.709735], [-82.055027, 29.669608], [-82.055899, 29.471232], [-82.105688, 29.435966], [-82.213245, 29.431764], [-82.22501, 29.484298], [-82.40662, 29.485048], [-82.556766, 29.480055], [-82.556511, 29.511982]]]}, "bbox": [-82.658554, 29.431764, -82.050291, 29.940881]}, {"id": "12005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.996083, 30.269148], [-85.99459, 30.290853], [-85.994712, 30.311702], [-85.992736, 30.38932], [-85.8535, 30.440623], [-85.487968, 30.436655], [-85.486358, 30.567574], [-85.434782, 30.56756], [-85.383948, 30.566856], [-85.389679, 30.200973], [-85.388374, 29.926919], [-85.388677, 29.924355], [-85.405052, 29.938487], [-85.425956, 29.949888], [-85.460488, 29.959579], [-85.469425, 29.957788], [-85.487764, 29.961227], [-85.509148, 29.971466], [-85.541176, 29.995791], [-85.571907, 30.02644], [-85.58139, 30.037783], [-85.588242, 30.055543], [-85.601178, 30.056342], [-85.618254, 30.065481], [-85.637285, 30.073319], [-85.653251, 30.077839], [-85.69681, 30.09689], [-85.730054, 30.118153], [-85.74993, 30.136537], [-85.775405, 30.15629], [-85.811219, 30.17832], [-85.878138, 30.215619], [-85.9226, 30.238024], [-85.996083, 30.269148]]]}, "bbox": [-85.996083, 29.924355, -85.383948, 30.567574]}, {"id": "12009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.631314, 28.655188], [-80.61679, 28.634561], [-80.583884, 28.597705], [-80.574868, 28.585166], [-80.567361, 28.562353], [-80.560973, 28.530736], [-80.536115, 28.478647], [-80.525094, 28.459454], [-80.526732, 28.451705], [-80.562877, 28.437779], [-80.574136, 28.427764], [-80.587813, 28.410856], [-80.596174, 28.390682], [-80.603374, 28.363983], [-80.606874, 28.336484], [-80.608074, 28.311285], [-80.604214, 28.257733], [-80.589975, 28.17799], [-80.566432, 28.09563], [-80.547675, 28.048795], [-80.508871, 27.970477], [-80.446973, 27.861954], [-80.447084, 27.860755], [-80.509075, 27.822058], [-80.868881, 27.822522], [-80.862815, 28.347221], [-80.862881, 28.347439], [-80.862908, 28.347487], [-80.88089, 28.503633], [-80.98725, 28.612997], [-80.964466, 28.612992], [-80.967895, 28.790197], [-80.732244, 28.791237], [-80.713183, 28.761997], [-80.713108, 28.761882], [-80.712714, 28.761277], [-80.709725, 28.756692], [-80.708545, 28.755202], [-80.672232, 28.709363], [-80.663183, 28.69794], [-80.647924, 28.678677], [-80.64776, 28.67847], [-80.647288, 28.677875], [-80.645839, 28.675817], [-80.641436, 28.669564], [-80.639019, 28.666131], [-80.631314, 28.655188]]]}, "bbox": [-80.98725, 27.822058, -80.446973, 28.791237]}, {"id": "12011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.278764, 25.970968], [-80.295187, 25.97057], [-80.294972, 25.95677], [-80.326712, 25.957118], [-80.44049, 25.956861], [-80.680016, 25.956857], [-80.680038, 25.978749], [-80.872932, 25.979434], [-80.872748, 26.00037], [-80.879809, 26.259455], [-80.881233, 26.333806], [-80.297471, 26.334356], [-80.296935, 26.334356], [-80.15377, 26.327766], [-80.134037, 26.327905], [-80.13125, 26.327821], [-80.130164, 26.327858], [-80.121329, 26.32774], [-80.116782, 26.327845], [-80.099747, 26.327668], [-80.098268, 26.322599], [-80.091929, 26.326352], [-80.088999, 26.324357], [-80.087905, 26.320756], [-80.074837, 26.321032], [-80.075264, 26.318656], [-80.079865, 26.264358], [-80.085565, 26.249259], [-80.089365, 26.231859], [-80.101366, 26.147762], [-80.105266, 26.096264], [-80.106813, 26.092991], [-80.108995, 26.088372], [-80.109566, 26.087165], [-80.112334, 26.053193], [-80.117778, 25.986369], [-80.117798, 25.975152], [-80.118078, 25.975158], [-80.123874, 25.974484], [-80.133862, 25.97411], [-80.133867, 25.974868], [-80.142227, 25.974674], [-80.143501, 25.974511], [-80.246763, 25.971874], [-80.278764, 25.970968]]]}, "bbox": [-80.881233, 25.95677, -80.074837, 26.334356]}, {"id": "12013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.389679, 30.200973], [-85.383948, 30.566856], [-85.171891, 30.564336], [-85.167713, 30.608026], [-84.932519, 30.606393], [-84.990017, 30.524795], [-84.983203, 30.441837], [-85.059092, 30.263229], [-85.11566, 30.199976], [-85.386263, 30.201385], [-85.389679, 30.200973]]]}, "bbox": [-85.389679, 30.199976, -84.932519, 30.608026]}, {"id": "12015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.375737, 26.946041], [-82.340238, 26.94556], [-82.339027, 26.945912], [-82.326294, 26.945846], [-82.322536, 26.945627], [-82.299896, 26.945564], [-82.255521, 26.945264], [-82.255237, 27.032975], [-82.171655, 27.032769], [-82.057469, 27.032119], [-81.562202, 27.033836], [-81.565931, 26.769552], [-82.062029, 26.770439], [-82.061401, 26.774279], [-82.061401, 26.789228], [-82.055076, 26.802452], [-82.057951, 26.822], [-82.058526, 26.838674], [-82.056801, 26.858797], [-82.059101, 26.876621], [-82.066575, 26.88237], [-82.090723, 26.888694], [-82.093023, 26.906518], [-82.090148, 26.923191], [-82.083249, 26.927791], [-82.067725, 26.927791], [-82.061976, 26.931241], [-82.061401, 26.938715], [-82.063126, 26.950214], [-82.076349, 26.958263], [-82.107972, 26.957688], [-82.113039, 26.955788], [-82.117171, 26.954239], [-82.124645, 26.945615], [-82.137294, 26.926066], [-82.162017, 26.925491], [-82.169491, 26.923191], [-82.175241, 26.916867], [-82.172941, 26.897319], [-82.156267, 26.851898], [-82.147068, 26.789803], [-82.151093, 26.783479], [-82.172941, 26.778879], [-82.17869, 26.772555], [-82.209329, 26.772146], [-82.221812, 26.77198], [-82.232193, 26.78288], [-82.233311, 26.784054], [-82.234019, 26.783251], [-82.241935, 26.774279], [-82.251134, 26.755881], [-82.259867, 26.717398], [-82.263804, 26.725644], [-82.264682, 26.756836], [-82.269499, 26.784674], [-82.271699, 26.789516], [-82.281552, 26.811203], [-82.289086, 26.827784], [-82.301736, 26.841588], [-82.351649, 26.908384], [-82.375737, 26.946041]]]}, "bbox": [-82.375737, 26.717398, -81.562202, 27.033836]}, {"id": "12017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.535591, 29.044855], [-82.426997, 29.021385], [-82.311697, 28.960391], [-82.170848, 28.79019], [-82.263052, 28.667634], [-82.417684, 28.665897], [-82.418353, 28.694859], [-82.646411, 28.694434], [-82.645482, 28.697553], [-82.652926, 28.705618], [-82.656028, 28.712443], [-82.652926, 28.719267], [-82.656028, 28.727952], [-82.662232, 28.737258], [-82.651065, 28.747184], [-82.645482, 28.767037], [-82.643, 28.782546], [-82.643, 28.789991], [-82.648584, 28.796195], [-82.650445, 28.80488], [-82.652926, 28.830936], [-82.638657, 28.843344], [-82.643, 28.860094], [-82.639898, 28.876224], [-82.644861, 28.889252], [-82.656028, 28.899179], [-82.673399, 28.900419], [-82.688864, 28.905609], [-82.702618, 28.932955], [-82.708793, 28.935979], [-82.723861, 28.953506], [-82.735754, 28.973709], [-82.737872, 28.995703], [-82.758906, 28.993277], [-82.689814, 29.033962], [-82.612653, 29.009271], [-82.535591, 29.044855]]]}, "bbox": [-82.758906, 28.665897, -82.170848, 29.044855]}, {"id": "12019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.049411, 30.186933], [-81.711348, 30.191193], [-81.680215, 30.12124], [-81.688876, 30.028566], [-81.60099, 29.956017], [-81.581207, 29.840176], [-81.797218, 29.836649], [-81.939427, 29.747497], [-82.049244, 29.71867], [-82.046112, 29.747129], [-82.049425, 30.143136], [-82.049411, 30.186933]]]}, "bbox": [-82.049425, 29.71867, -81.581207, 30.191193]}, {"id": "12021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.563763, 26.513324], [-81.271768, 26.517069], [-81.271721, 26.422651], [-81.26855, 26.253045], [-80.879809, 26.259455], [-80.872748, 26.00037], [-80.872932, 25.979434], [-80.873096, 25.805377], [-81.344564, 25.803322], [-81.349152, 25.816847], [-81.352731, 25.822015], [-81.362272, 25.824401], [-81.386127, 25.839906], [-81.394476, 25.851834], [-81.417536, 25.864954], [-81.424295, 25.867737], [-81.429066, 25.865351], [-81.441391, 25.863761], [-81.458487, 25.868929], [-81.471607, 25.881652], [-81.473992, 25.888411], [-81.48751, 25.888411], [-81.501027, 25.884037], [-81.508979, 25.884037], [-81.512955, 25.886423], [-81.511762, 25.89676], [-81.515738, 25.899941], [-81.527665, 25.901531], [-81.541183, 25.900338], [-81.577363, 25.889206], [-81.584519, 25.888808], [-81.614735, 25.893977], [-81.623482, 25.897158], [-81.640084, 25.897784], [-81.644553, 25.897953], [-81.654493, 25.893579], [-81.663821, 25.885605], [-81.672633, 25.856654], [-81.678287, 25.845301], [-81.6848, 25.847205], [-81.68954, 25.85271], [-81.713172, 25.897568], [-81.717687, 25.902039], [-81.727086, 25.907207], [-81.73195, 25.931506], [-81.738118, 25.942009], [-81.745579, 25.949643], [-81.749724, 25.960463], [-81.747834, 25.994273], [-81.750668, 25.998425], [-81.757463, 26.000374], [-81.762439, 26.00607], [-81.801663, 26.088227], [-81.808833, 26.152246], [-81.81461, 26.173167], [-81.81681, 26.207166], [-81.820675, 26.236735], [-81.833142, 26.294518], [-81.844555, 26.327712], [-81.845834, 26.330378], [-81.690494, 26.317334], [-81.659506, 26.421077], [-81.56218, 26.422625], [-81.563763, 26.513324]]]}, "bbox": [-81.845834, 25.803322, -80.872748, 26.517069]}, {"id": "12023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.584002, 30.591796], [-82.569237, 30.590965], [-82.565476, 30.590622], [-82.553159, 30.589934], [-82.545055, 30.589361], [-82.536233, 30.588885], [-82.524899, 30.588189], [-82.459792, 30.584287], [-82.458364, 30.136449], [-82.57601, 29.991468], [-82.529705, 29.940881], [-82.658554, 29.830144], [-82.800477, 29.932126], [-82.794594, 30.337024], [-82.681473, 30.342805], [-82.645768, 30.407992], [-82.726583, 30.559486], [-82.689539, 30.597734], [-82.689271, 30.597719], [-82.584002, 30.591796]]]}, "bbox": [-82.800477, 29.830144, -82.458364, 30.597734]}, {"id": "12031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.049236, 30.273432], [-81.791665, 30.50561], [-81.72163, 30.571968], [-81.624513, 30.586232], [-81.543018, 30.523889], [-81.499575, 30.563793], [-81.442784, 30.50992], [-81.447087, 30.503679], [-81.440108, 30.497678], [-81.42601, 30.496739], [-81.410809, 30.482039], [-81.407008, 30.42204], [-81.397422, 30.400626], [-81.396407, 30.34004], [-81.391606, 30.303441], [-81.385505, 30.273841], [-81.379879, 30.252914], [-81.436929, 30.252335], [-81.433737, 30.106028], [-81.601212, 30.130541], [-81.623813, 30.133641], [-81.650514, 30.121541], [-81.680215, 30.12124], [-81.711348, 30.191193], [-82.049411, 30.186933], [-82.049236, 30.273432]]]}, "bbox": [-82.049411, 30.106028, -81.379879, 30.586232]}, {"id": "12033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.919292, 30.370675], [-87.155392, 30.327748], [-87.206254, 30.320943], [-87.267827, 30.31548], [-87.282787, 30.318744], [-87.295422, 30.323503], [-87.319518, 30.317814], [-87.350486, 30.313064], [-87.419859, 30.297128], [-87.518324, 30.280435], [-87.452378, 30.300201], [-87.450078, 30.3111], [-87.450962, 30.346262], [-87.451378, 30.367199], [-87.440678, 30.391498], [-87.427478, 30.408398], [-87.419177, 30.410198], [-87.430578, 30.491096], [-87.448332, 30.513063], [-87.449841, 30.514369], [-87.449921, 30.51469], [-87.394479, 30.625192], [-87.394219, 30.641699], [-87.396997, 30.65364], [-87.407118, 30.671796], [-87.449362, 30.698913], [-87.481225, 30.716508], [-87.497515, 30.720123], [-87.502926, 30.722369], [-87.532607, 30.743489], [-87.624137, 30.845713], [-87.634938, 30.865886], [-87.622203, 30.897508], [-87.601355, 30.936294], [-87.594111, 30.976335], [-87.598927, 30.997454], [-87.598928, 30.997457], [-87.571281, 30.99787], [-87.548543, 30.997927], [-87.480243, 30.998202], [-87.479703, 30.998197], [-87.478706, 30.998213], [-87.466879, 30.998178], [-87.466827, 30.998178], [-87.461783, 30.998201], [-87.461638, 30.998202], [-87.458658, 30.998386], [-87.455705, 30.998318], [-87.449811, 30.998272], [-87.432292, 30.998205], [-87.425774, 30.99809], [-87.367842, 30.998292], [-87.364011, 30.998218], [-87.355656, 30.998244], [-87.333973, 30.998272], [-87.312183, 30.998435], [-87.30403, 30.998191], [-87.301567, 30.998434], [-87.290995, 30.998352], [-87.288905, 30.998345], [-87.265564, 30.998267], [-87.26054, 30.998195], [-87.259689, 30.998172], [-87.25796, 30.998263], [-87.257002, 30.998194], [-87.255592, 30.998216], [-87.25498, 30.998285], [-87.163084, 30.999051], [-87.286882, 30.925441], [-87.313611, 30.847266], [-87.308502, 30.72691], [-87.269407, 30.711687], [-87.258884, 30.611281], [-87.124968, 30.500196], [-87.1344, 30.420294], [-87.23297, 30.348999], [-86.919292, 30.370675]]]}, "bbox": [-87.634938, 30.280435, -86.919292, 30.999051]}, {"id": "12035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.212878, 29.670667], [-81.211565, 29.667085], [-81.163581, 29.55529], [-81.123896, 29.474465], [-81.101923, 29.427055], [-81.155881, 29.410954], [-81.150081, 29.265957], [-81.41729, 29.261156], [-81.433992, 29.398552], [-81.478793, 29.399052], [-81.520596, 29.500249], [-81.52366, 29.622432], [-81.324059, 29.62561], [-81.212878, 29.670667]]]}, "bbox": [-81.52366, 29.261156, -81.101923, 29.670667]}, {"id": "12053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.054694, 28.478397], [-82.253293, 28.478491], [-82.253439, 28.434824], [-82.600636, 28.43391], [-82.678743, 28.433456], [-82.677839, 28.434367], [-82.674787, 28.441956], [-82.680396, 28.457194], [-82.67241, 28.464746], [-82.665055, 28.484434], [-82.66447, 28.488788], [-82.66639, 28.49733], [-82.670146, 28.500769], [-82.669416, 28.519879], [-82.66804, 28.528199], [-82.663705, 28.530193], [-82.656694, 28.544814], [-82.661729, 28.549743], [-82.66165, 28.554143], [-82.65705, 28.568028], [-82.654138, 28.590837], [-82.664055, 28.606584], [-82.656649, 28.623727], [-82.65851, 28.636756], [-82.654167, 28.668395], [-82.646411, 28.694434], [-82.418353, 28.694859], [-82.417684, 28.665897], [-82.263052, 28.667634], [-82.208184, 28.572054], [-82.054469, 28.521367], [-82.054694, 28.478397]]]}, "bbox": [-82.680396, 28.433456, -82.054469, 28.694859]}, {"id": "12055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.943186, 27.210599], [-81.169138, 27.209585], [-81.168281, 27.121734], [-81.267677, 27.121097], [-81.267152, 27.032461], [-81.562202, 27.033836], [-81.563696, 27.34068], [-81.563318, 27.646647], [-81.142164, 27.643238], [-81.213717, 27.528654], [-80.970916, 27.217698], [-80.951656, 27.224825], [-80.943186, 27.210599]]]}, "bbox": [-81.563696, 27.032461, -80.943186, 27.646647]}, {"id": "12057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.643968, 28.173301], [-82.105853, 28.17165], [-82.056261, 28.171592], [-82.056404, 28.080385], [-82.054035, 27.850683], [-82.054349, 27.646382], [-82.52475, 27.645422], [-82.524947, 27.645422], [-82.549548, 27.645557], [-82.554499, 27.645145], [-82.537146, 27.672933], [-82.514265, 27.705588], [-82.494891, 27.718963], [-82.482449, 27.719886], [-82.477638, 27.723004], [-82.476297, 27.729929], [-82.477129, 27.735216], [-82.482305, 27.742649], [-82.478339, 27.74625], [-82.457543, 27.752571], [-82.434635, 27.764355], [-82.43198, 27.768092], [-82.433981, 27.774087], [-82.419066, 27.793767], [-82.418401, 27.803187], [-82.410837, 27.810868], [-82.402857, 27.812671], [-82.393383, 27.837519], [-82.397463, 27.851631], [-82.402615, 27.882602], [-82.413915, 27.901401], [-82.432316, 27.901301], [-82.451591, 27.907506], [-82.460016, 27.9116], [-82.459616, 27.9169], [-82.462078, 27.920066], [-82.478063, 27.92768], [-82.489817, 27.9196], [-82.491117, 27.9145], [-82.487417, 27.895001], [-82.488057, 27.863566], [-82.480137, 27.853246], [-82.471624, 27.847342], [-82.46884, 27.843295], [-82.47244, 27.822559], [-82.475273, 27.820991], [-82.489849, 27.822607], [-82.511193, 27.828015], [-82.553946, 27.848462], [-82.552918, 27.862702], [-82.538618, 27.864901], [-82.533218, 27.870701], [-82.529918, 27.877501], [-82.539318, 27.885001], [-82.542818, 27.890601], [-82.541747, 27.893706], [-82.535818, 27.898], [-82.531318, 27.9039], [-82.533718, 27.932999], [-82.541218, 27.948998], [-82.553918, 27.966998], [-82.589419, 27.970898], [-82.61952, 27.969698], [-82.648616, 27.966309], [-82.648557, 28.03863], [-82.651165, 28.173266], [-82.649725, 28.173314], [-82.643968, 28.173301]]]}, "bbox": [-82.651165, 27.645145, -82.054035, 28.173314]}, {"id": "12061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.868881, 27.822522], [-80.509075, 27.822058], [-80.447084, 27.860755], [-80.447179, 27.859731], [-80.383695, 27.740045], [-80.351717, 27.642623], [-80.350553, 27.628361], [-80.34437, 27.616226], [-80.330956, 27.597541], [-80.324699, 27.569178], [-80.321271, 27.557378], [-80.679821, 27.55847], [-80.777166, 27.558733], [-80.778047, 27.643195], [-80.87315, 27.642288], [-80.868881, 27.822522]]]}, "bbox": [-80.87315, 27.557378, -80.321271, 27.860755]}, {"id": "12069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.657268, 28.347098], [-81.818903, 28.361712], [-81.957641, 28.34518], [-81.95358, 28.82094], [-81.95419, 28.960053], [-81.843025, 28.959884], [-81.842194, 28.961024], [-81.658698, 28.960345], [-81.639151, 29.06288], [-81.640517, 29.1316], [-81.641916, 29.276766], [-81.61234, 29.202943], [-81.531262, 29.176621], [-81.502055, 29.097802], [-81.354554, 28.984375], [-81.36694, 28.879227], [-81.367052, 28.878315], [-81.366764, 28.876619], [-81.366158, 28.874744], [-81.366705, 28.87325], [-81.368608, 28.872921], [-81.369692, 28.870536], [-81.372009, 28.869039], [-81.373491, 28.87025], [-81.376006, 28.865901], [-81.375088, 28.863366], [-81.414446, 28.784955], [-81.592971, 28.78597], [-81.624731, 28.785927], [-81.658114, 28.68271], [-81.65739, 28.553122], [-81.657268, 28.347098]]]}, "bbox": [-81.957641, 28.34518, -81.354554, 29.276766]}, {"id": "12071", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-82.255777, 26.703437], [-82.255159, 26.70816], [-82.246535, 26.706435], [-82.24251, 26.694361], [-82.24596, 26.688612], [-82.246535, 26.683437], [-82.23744, 26.661976], [-82.218342, 26.626407], [-82.214337, 26.602944], [-82.196514, 26.559823], [-82.187315, 26.527626], [-82.177541, 26.502328], [-82.166042, 26.489679], [-82.149368, 26.477605], [-82.131545, 26.47703], [-82.120046, 26.473581], [-82.088423, 26.455182], [-82.076924, 26.466106], [-82.062551, 26.470131], [-82.038403, 26.456907], [-82.015607, 26.454858], [-82.013713, 26.454258], [-82.013913, 26.452058], [-82.063114, 26.425459], [-82.075015, 26.422059], [-82.082915, 26.422059], [-82.098115, 26.424959], [-82.126671, 26.436279], [-82.148716, 26.455458], [-82.172917, 26.467658], [-82.177017, 26.471558], [-82.180717, 26.476257], [-82.186441, 26.489221], [-82.201402, 26.55631], [-82.205523, 26.566536], [-82.222131, 26.590402], [-82.238872, 26.636433], [-82.248659, 26.654337], [-82.263008, 26.673388], [-82.268007, 26.682791], [-82.264351, 26.698496], [-82.255777, 26.703437]]], [[[-81.690494, 26.317334], [-81.845834, 26.330378], [-81.868983, 26.378648], [-81.90191, 26.410859], [-81.90271, 26.416159], [-81.91171, 26.427158], [-81.923611, 26.436658], [-81.938411, 26.445058], [-81.956611, 26.452358], [-81.964212, 26.457957], [-81.967112, 26.462857], [-81.966212, 26.465057], [-81.969509, 26.476505], [-81.980712, 26.480957], [-81.997012, 26.484856], [-82.008961, 26.484052], [-82.01368, 26.490829], [-82.00908, 26.505203], [-82.024604, 26.512677], [-82.043577, 26.519577], [-82.06715, 26.513252], [-82.07175, 26.492554], [-82.094748, 26.48393], [-82.105672, 26.48393], [-82.111996, 26.54085], [-82.118896, 26.560973], [-82.122345, 26.579371], [-82.137869, 26.637441], [-82.149943, 26.654115], [-82.181565, 26.681712], [-82.17984, 26.696661], [-82.173516, 26.701836], [-82.151668, 26.704136], [-82.139019, 26.702986], [-82.125795, 26.699536], [-82.118896, 26.690912], [-82.106247, 26.667339], [-82.099922, 26.662739], [-82.093023, 26.665614], [-82.086698, 26.685162], [-82.084974, 26.702411], [-82.079799, 26.716784], [-82.066575, 26.742657], [-82.062029, 26.770439], [-81.565931, 26.769552], [-81.563763, 26.513324], [-81.56218, 26.422625], [-81.659506, 26.421077], [-81.690494, 26.317334]]]]}, "bbox": [-82.268007, 26.317334, -81.56218, 26.770439]}, {"id": "12073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.039707, 30.673819], [-84.007454, 30.6721], [-83.977165, 30.521987], [-84.041192, 30.483967], [-84.041197, 30.483827], [-84.041488, 30.463308], [-84.074691, 30.434302], [-84.074892, 30.413106], [-84.075191, 30.381902], [-84.075819, 30.369819], [-84.075539, 30.273617], [-84.241222, 30.274244], [-84.247673, 30.303493], [-84.713351, 30.30017], [-84.646408, 30.388281], [-84.420474, 30.463905], [-84.378384, 30.573467], [-84.282562, 30.685316], [-84.28121, 30.685256], [-84.083753, 30.675954], [-84.057228, 30.674705], [-84.046605, 30.6742], [-84.04181, 30.673878], [-84.039707, 30.673819]]]}, "bbox": [-84.713351, 30.273617, -83.977165, 30.685316]}, {"id": "12081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.642837, 27.389737], [-82.675121, 27.424318], [-82.691821, 27.437218], [-82.691004, 27.444331], [-82.707821, 27.487615], [-82.714521, 27.500415], [-82.724522, 27.513614], [-82.743017, 27.531086], [-82.745748, 27.538834], [-82.742437, 27.53936], [-82.708121, 27.523514], [-82.710621, 27.501715], [-82.706821, 27.498415], [-82.690421, 27.496415], [-82.686421, 27.497215], [-82.686921, 27.508015], [-82.683621, 27.513115], [-82.674621, 27.519614], [-82.66202, 27.522814], [-82.65072, 27.523115], [-82.646014, 27.53354], [-82.632053, 27.551908], [-82.612019, 27.571231], [-82.613003, 27.582837], [-82.612749, 27.583319], [-82.611717, 27.585283], [-82.596488, 27.594045], [-82.584629, 27.596021], [-82.570607, 27.608882], [-82.565667, 27.615713], [-82.558538, 27.638678], [-82.554499, 27.645145], [-82.549548, 27.645557], [-82.524947, 27.645422], [-82.52475, 27.645422], [-82.054349, 27.646382], [-82.055753, 27.338264], [-82.056497, 27.207769], [-82.253596, 27.208916], [-82.252264, 27.386243], [-82.642837, 27.389737]]]}, "bbox": [-82.745748, 27.207769, -82.054349, 27.646382]}, {"id": "12083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.311697, 28.960391], [-82.426997, 29.021385], [-82.535591, 29.044855], [-82.53486, 29.21468], [-82.403237, 29.215623], [-82.404594, 29.27886], [-82.405152, 29.33026], [-82.40662, 29.485048], [-82.22501, 29.484298], [-82.213245, 29.431764], [-82.105688, 29.435966], [-82.055899, 29.471232], [-81.843009, 29.521004], [-81.776205, 29.487448], [-81.741422, 29.371049], [-81.680903, 29.32443], [-81.675523, 29.310628], [-81.667885, 29.301488], [-81.655677, 29.29994], [-81.648438, 29.290173], [-81.641916, 29.276766], [-81.640517, 29.1316], [-81.639151, 29.06288], [-81.658698, 28.960345], [-81.842194, 28.961024], [-81.843025, 28.959884], [-81.95419, 28.960053], [-82.311697, 28.960391]]]}, "bbox": [-82.535591, 28.959884, -81.639151, 29.521004]}, {"id": "12085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.38469, 26.958382], [-80.885639, 26.958919], [-80.677427, 27.121619], [-80.677862, 27.205988], [-80.481534, 27.20637], [-80.481413, 27.20637], [-80.28551, 27.206025], [-80.284771, 27.263723], [-80.199288, 27.263022], [-80.19309, 27.249546], [-80.16147, 27.192814], [-80.153375, 27.169308], [-80.159554, 27.163325], [-80.14982, 27.143557], [-80.138605, 27.111517], [-80.116772, 27.072397], [-80.093909, 27.018587], [-80.079531, 26.9705], [-80.246728, 26.957189], [-80.374523, 26.958386], [-80.38469, 26.958382]]]}, "bbox": [-80.885639, 26.957189, -80.079531, 27.263723]}, {"id": "12086", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.44049, 25.956861], [-80.326712, 25.957118], [-80.294972, 25.95677], [-80.295187, 25.97057], [-80.278764, 25.970968], [-80.246763, 25.971874], [-80.143501, 25.974511], [-80.142227, 25.974674], [-80.133867, 25.974868], [-80.133862, 25.97411], [-80.123874, 25.974484], [-80.118078, 25.975158], [-80.117798, 25.975152], [-80.117904, 25.915772], [-80.12087, 25.883152], [-80.119684, 25.841043], [-80.122056, 25.817913], [-80.127394, 25.791224], [-80.127987, 25.772245], [-80.137476, 25.750301], [-80.144, 25.740812], [-80.152896, 25.702855], [-80.154082, 25.683283], [-80.152303, 25.676759], [-80.154972, 25.66549], [-80.160903, 25.664897], [-80.176916, 25.685062], [-80.170392, 25.710565], [-80.164461, 25.721833], [-80.166241, 25.72895], [-80.172765, 25.737847], [-80.184626, 25.745557], [-80.197674, 25.74437], [-80.229107, 25.732509], [-80.240376, 25.724206], [-80.244528, 25.717089], [-80.250459, 25.688028], [-80.265879, 25.658373], [-80.267065, 25.651849], [-80.277147, 25.637022], [-80.288416, 25.630498], [-80.296719, 25.622195], [-80.301464, 25.613299], [-80.305615, 25.593134], [-80.305615, 25.575342], [-80.302057, 25.567632], [-80.313918, 25.539164], [-80.324594, 25.535605], [-80.328746, 25.53264], [-80.339421, 25.499427], [-80.339421, 25.478669], [-80.337049, 25.465621], [-80.328152, 25.443084], [-80.320442, 25.437153], [-80.326373, 25.422919], [-80.32578, 25.39801], [-80.320442, 25.391486], [-80.31036, 25.389707], [-80.306801, 25.384369], [-80.31036, 25.3731], [-80.335269, 25.338701], [-80.352469, 25.329805], [-80.361662, 25.327433], [-80.374116, 25.31735], [-80.383013, 25.301337], [-80.385978, 25.288289], [-80.419191, 25.26338], [-80.437815, 25.253077], [-80.447066, 25.24796], [-80.462832, 25.236248], [-80.467824, 25.23254], [-80.468366, 25.231977], [-80.469843, 25.230442], [-80.483244, 25.216526], [-80.487591, 25.207829], [-80.488035, 25.206942], [-80.488216, 25.206757], [-80.495341, 25.199463], [-80.496179, 25.199637], [-80.498361, 25.200091], [-80.498644, 25.20015], [-80.502983, 25.20316], [-80.503125, 25.203259], [-80.50778, 25.206488], [-80.508113, 25.206719], [-80.508116, 25.206725], [-80.512928, 25.216719], [-80.514724, 25.217702], [-80.515297, 25.218016], [-80.520359, 25.220788], [-80.52319, 25.22008], [-80.525784, 25.218649], [-80.530207, 25.216207], [-80.540947, 25.21821], [-80.54204, 25.22185], [-80.540947, 25.224945], [-80.540765, 25.229678], [-80.548491, 25.236535], [-80.558223, 25.239012], [-80.570785, 25.239366], [-80.589186, 25.223796], [-80.587593, 25.207695], [-80.584783, 25.200695], [-80.584771, 25.200665], [-80.594338, 25.193437], [-80.601627, 25.187931], [-80.609607, 25.181902], [-80.609609, 25.181901], [-80.618989, 25.177345], [-80.619024, 25.177328], [-80.633992, 25.176829], [-80.639873, 25.176633], [-80.640275, 25.17662], [-80.640823, 25.176364], [-80.642456, 25.175601], [-80.645737, 25.174069], [-80.645822, 25.174029], [-80.646099, 25.173599], [-80.648565, 25.169773], [-80.649251, 25.168708], [-80.656944, 25.168216], [-80.660692, 25.167976], [-80.66995, 25.167384], [-80.674324, 25.167104], [-80.679852, 25.166751], [-80.683909, 25.166491], [-80.688361, 25.164711], [-80.695038, 25.157588], [-80.70127, 25.146683], [-80.703718, 25.139115], [-80.715099, 25.140872], [-80.721886, 25.145101], [-80.728602, 25.144316], [-80.734741, 25.143598], [-80.73833, 25.143178], [-80.742877, 25.142646], [-80.746379, 25.148559], [-80.746264, 25.155303], [-80.751866, 25.163762], [-80.757581, 25.166734], [-80.795456, 25.172337], [-80.796219, 25.17245], [-80.815193, 25.164956], [-80.817116, 25.164196], [-80.823441, 25.161698], [-80.826465, 25.160504], [-80.82653, 25.160478], [-80.826544, 25.160509], [-80.827179, 25.161888], [-80.827489, 25.162562], [-80.828435, 25.164619], [-80.830034, 25.168094], [-80.838227, 25.174791], [-80.843703, 25.176312], [-80.846395, 25.17706], [-80.8464, 25.17706], [-80.858167, 25.176576], [-80.87319, 25.363993], [-80.873096, 25.805377], [-80.872932, 25.979434], [-80.680038, 25.978749], [-80.680016, 25.956857], [-80.44049, 25.956861]]]}, "bbox": [-80.87319, 25.139115, -80.117798, 25.979434]}, {"id": "12089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.906014, 30.822176], [-81.868608, 30.792754], [-81.840375, 30.786384], [-81.827014, 30.788933], [-81.806652, 30.789683], [-81.759338, 30.771377], [-81.741278, 30.762681], [-81.732627, 30.749934], [-81.719927, 30.744634], [-81.637222, 30.733835], [-81.624298, 30.736194], [-81.606221, 30.718135], [-81.544618, 30.712636], [-81.444124, 30.709714], [-81.432725, 30.703017], [-81.42742, 30.69802], [-81.430843, 30.669393], [-81.443099, 30.600938], [-81.442564, 30.555189], [-81.434064, 30.522569], [-81.442784, 30.50992], [-81.499575, 30.563793], [-81.543018, 30.523889], [-81.624513, 30.586232], [-81.72163, 30.571968], [-81.791665, 30.50561], [-82.049236, 30.273432], [-82.050031, 30.36249], [-82.016103, 30.497355], [-82.01699, 30.519358], [-82.005477, 30.563495], [-82.01329, 30.595665], [-82.037609, 30.633271], [-82.049401, 30.655296], [-82.050432, 30.676266], [-82.023213, 30.781987], [-81.999836, 30.788348], [-81.906014, 30.822176]]]}, "bbox": [-82.050432, 30.273432, -81.42742, 30.822176]}, {"id": "12091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.393551, 30.493444], [-86.394174, 30.46674], [-86.395383, 30.433336], [-86.397325, 30.378553], [-86.400403, 30.378927], [-86.412076, 30.380346], [-86.429322, 30.381389], [-86.454731, 30.382925], [-86.456197, 30.383014], [-86.457045, 30.383065], [-86.470849, 30.3839], [-86.47399, 30.383758], [-86.50615, 30.3823], [-86.529067, 30.386896], [-86.632953, 30.396299], [-86.750906, 30.391881], [-86.800283, 30.386477], [-86.785692, 30.996977], [-86.728392, 30.996739], [-86.727293, 30.996882], [-86.725379, 30.996872], [-86.688294, 30.995029], [-86.678383, 30.994537], [-86.664681, 30.994534], [-86.567586, 30.995109], [-86.563436, 30.995223], [-86.519938, 30.993245], [-86.512834, 30.9937], [-86.458319, 30.993998], [-86.454704, 30.993791], [-86.404912, 30.994049], [-86.391937, 30.994172], [-86.388647, 30.994181], [-86.388646, 30.994181], [-86.393551, 30.493444]]]}, "bbox": [-86.800283, 30.378553, -86.388646, 30.996977]}, {"id": "12095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.65739, 28.553122], [-81.658114, 28.68271], [-81.624731, 28.785927], [-81.592971, 28.78597], [-81.414446, 28.784955], [-81.459695, 28.644475], [-81.459501, 28.640285], [-81.457975, 28.640336], [-81.365289, 28.640468], [-81.357965, 28.639187], [-81.331099, 28.639581], [-81.32865, 28.639334], [-81.327911, 28.611268], [-81.326991, 28.610298], [-80.98725, 28.612997], [-80.88089, 28.503633], [-80.862908, 28.347487], [-81.309571, 28.348051], [-81.513859, 28.347374], [-81.531837, 28.347384], [-81.657268, 28.347098], [-81.65739, 28.553122]]]}, "bbox": [-81.658114, 28.347098, -80.862908, 28.78597]}, {"id": "12097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.862908, 28.347487], [-80.862881, 28.347439], [-80.862815, 28.347221], [-80.868881, 27.822522], [-80.87315, 27.642288], [-81.142164, 27.643238], [-81.131495, 27.6494], [-81.208124, 27.821125], [-81.301862, 27.862081], [-81.308696, 27.92188], [-81.378718, 28.011743], [-81.375467, 28.0851], [-81.455315, 28.085367], [-81.455647, 28.142894], [-81.524227, 28.142805], [-81.524083, 28.201012], [-81.551345, 28.249045], [-81.657189, 28.259217], [-81.657268, 28.347098], [-81.531837, 28.347384], [-81.513859, 28.347374], [-81.309571, 28.348051], [-80.862908, 28.347487]]]}, "bbox": [-81.657268, 27.642288, -80.862815, 28.348051]}, {"id": "12099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.116782, 26.327845], [-80.121329, 26.32774], [-80.130164, 26.327858], [-80.13125, 26.327821], [-80.134037, 26.327905], [-80.15377, 26.327766], [-80.296935, 26.334356], [-80.297471, 26.334356], [-80.881233, 26.333806], [-80.886099, 26.72548], [-80.885639, 26.958919], [-80.38469, 26.958382], [-80.374523, 26.958386], [-80.246728, 26.957189], [-80.079531, 26.9705], [-80.066697, 26.927579], [-80.046263, 26.859238], [-80.031362, 26.796339], [-80.03212, 26.77153], [-80.036362, 26.77124], [-80.037462, 26.76634], [-80.032862, 26.715242], [-80.032862, 26.700842], [-80.035763, 26.676043], [-80.035363, 26.612346], [-80.038863, 26.569347], [-80.050363, 26.509549], [-80.060564, 26.444652], [-80.070564, 26.336455], [-80.072264, 26.335356], [-80.074837, 26.321032], [-80.087905, 26.320756], [-80.088999, 26.324357], [-80.091929, 26.326352], [-80.098268, 26.322599], [-80.099747, 26.327668], [-80.116782, 26.327845]]]}, "bbox": [-80.886099, 26.320756, -80.031362, 26.9705]}, {"id": "12101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.678743, 28.433456], [-82.600636, 28.43391], [-82.253439, 28.434824], [-82.253293, 28.478491], [-82.054694, 28.478397], [-82.055819, 28.312794], [-82.106206, 28.25924], [-82.105853, 28.17165], [-82.643968, 28.173301], [-82.649725, 28.173314], [-82.651165, 28.173266], [-82.805097, 28.172181], [-82.797762, 28.187789], [-82.762643, 28.219013], [-82.76446, 28.220069], [-82.764103, 28.244345], [-82.759072, 28.25402], [-82.746188, 28.261192], [-82.732792, 28.291933], [-82.735463, 28.30039], [-82.73146, 28.325075], [-82.715822, 28.345501], [-82.706112, 28.368057], [-82.706322, 28.401325], [-82.697433, 28.420166], [-82.684137, 28.428019], [-82.678743, 28.433456]]]}, "bbox": [-82.805097, 28.17165, -82.054694, 28.478491]}, {"id": "12103", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-82.821585, 27.964443], [-82.829801, 27.968469], [-82.828625, 28.019795], [-82.823025, 28.030695], [-82.823063, 28.044758], [-82.826282, 28.05345], [-82.831825, 28.062893], [-82.836326, 28.073193], [-82.833225, 28.082193], [-82.830525, 28.085293], [-82.826125, 28.083793], [-82.823063, 28.068258], [-82.818288, 28.057613], [-82.813435, 28.03716], [-82.815168, 28.012547], [-82.821408, 28.008387], [-82.821755, 28.002494], [-82.817248, 27.992094], [-82.815168, 27.973721], [-82.821585, 27.964443]]], [[[-82.679019, 27.696054], [-82.679251, 27.694665], [-82.693748, 27.700217], [-82.713629, 27.698661], [-82.718822, 27.692007], [-82.723022, 27.671208], [-82.721622, 27.663908], [-82.716322, 27.651409], [-82.712555, 27.646647], [-82.698091, 27.638858], [-82.705017, 27.62531], [-82.733076, 27.612972], [-82.736552, 27.617326], [-82.737312, 27.623115], [-82.73779, 27.626758], [-82.739122, 27.636909], [-82.738022, 27.706807], [-82.740323, 27.718206], [-82.746223, 27.731306], [-82.753723, 27.736306], [-82.760923, 27.745205], [-82.770023, 27.767904], [-82.783124, 27.783804], [-82.790224, 27.791603], [-82.820433, 27.813742], [-82.828561, 27.822254], [-82.846526, 27.854301], [-82.849126, 27.8632], [-82.851126, 27.8863], [-82.847826, 27.910199], [-82.840882, 27.937162], [-82.831388, 27.962117], [-82.824875, 27.960201], [-82.821975, 27.956868], [-82.830819, 27.930926], [-82.838484, 27.909111], [-82.832155, 27.909242], [-82.820715, 27.927268], [-82.808745, 27.953112], [-82.805462, 27.960201], [-82.79782, 27.990563], [-82.792635, 28.01116], [-82.792635, 28.032307], [-82.782724, 28.055894], [-82.783824, 28.106292], [-82.782181, 28.120287], [-82.781324, 28.127591], [-82.786624, 28.144991], [-82.790724, 28.15249], [-82.799024, 28.15179], [-82.808474, 28.154803], [-82.805097, 28.172181], [-82.651165, 28.173266], [-82.648557, 28.03863], [-82.648616, 27.966309], [-82.716522, 27.958398], [-82.720522, 27.955798], [-82.724122, 27.948098], [-82.721975, 27.941819], [-82.721429, 27.940222], [-82.720395, 27.937199], [-82.720122, 27.936399], [-82.710022, 27.928299], [-82.691621, 27.924899], [-82.685121, 27.916299], [-82.671221, 27.913], [-82.628063, 27.910397], [-82.63422, 27.9037], [-82.63212, 27.8911], [-82.61002, 27.873501], [-82.567919, 27.883701], [-82.567826, 27.881537], [-82.566819, 27.858002], [-82.598443, 27.857582], [-82.594819, 27.843402], [-82.589319, 27.835702], [-82.586519, 27.816703], [-82.60742, 27.798904], [-82.622723, 27.779868], [-82.63052, 27.753905], [-82.62502, 27.732706], [-82.62572, 27.727006], [-82.63362, 27.710607], [-82.63982, 27.703907], [-82.652521, 27.700307], [-82.662921, 27.702307], [-82.663246, 27.702442], [-82.667445, 27.704179], [-82.668772, 27.704728], [-82.670449, 27.705422], [-82.670942, 27.705626], [-82.671549, 27.705877], [-82.671621, 27.705907], [-82.672093, 27.705932], [-82.673061, 27.705983], [-82.674123, 27.706039], [-82.677321, 27.706207], [-82.679019, 27.696054]]]]}, "bbox": [-82.851126, 27.612972, -82.566819, 28.173266]}, {"id": "12105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.818903, 28.361712], [-81.657268, 28.347098], [-81.657189, 28.259217], [-81.551345, 28.249045], [-81.524083, 28.201012], [-81.524227, 28.142805], [-81.455647, 28.142894], [-81.455315, 28.085367], [-81.375467, 28.0851], [-81.378718, 28.011743], [-81.308696, 27.92188], [-81.301862, 27.862081], [-81.208124, 27.821125], [-81.131495, 27.6494], [-81.142164, 27.643238], [-81.563318, 27.646647], [-82.054349, 27.646382], [-82.054035, 27.850683], [-82.056404, 28.080385], [-82.056261, 28.171592], [-82.105853, 28.17165], [-82.106206, 28.25924], [-82.055819, 28.312794], [-81.957641, 28.34518], [-81.818903, 28.361712]]]}, "bbox": [-82.106206, 27.643238, -81.131495, 28.361712]}, {"id": "12107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.523866, 29.631538], [-81.523691, 29.624995], [-81.52366, 29.622432], [-81.520596, 29.500249], [-81.478793, 29.399052], [-81.433992, 29.398552], [-81.450892, 29.378464], [-81.507989, 29.364511], [-81.518045, 29.361868], [-81.521764, 29.362194], [-81.540873, 29.356556], [-81.561194, 29.351686], [-81.680903, 29.32443], [-81.741422, 29.371049], [-81.776205, 29.487448], [-81.843009, 29.521004], [-82.055899, 29.471232], [-82.055027, 29.669608], [-82.050291, 29.709735], [-82.050829, 29.716098], [-82.055625, 29.718232], [-82.049244, 29.71867], [-81.939427, 29.747497], [-81.797218, 29.836649], [-81.581207, 29.840176], [-81.52523, 29.759497], [-81.523866, 29.631538]]]}, "bbox": [-82.055899, 29.32443, -81.433992, 29.840176]}, {"id": "12109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.601212, 30.130541], [-81.433737, 30.106028], [-81.436929, 30.252335], [-81.379879, 30.252914], [-81.355591, 30.162563], [-81.308978, 29.96944], [-81.295268, 29.928614], [-81.288955, 29.91518], [-81.27654, 29.90046], [-81.270442, 29.883106], [-81.264693, 29.858212], [-81.263396, 29.820663], [-81.256711, 29.784693], [-81.240924, 29.739218], [-81.229015, 29.714693], [-81.212878, 29.670667], [-81.324059, 29.62561], [-81.52366, 29.622432], [-81.523691, 29.624995], [-81.523866, 29.631538], [-81.52523, 29.759497], [-81.581207, 29.840176], [-81.60099, 29.956017], [-81.688876, 30.028566], [-81.680215, 30.12124], [-81.650514, 30.121541], [-81.623813, 30.133641], [-81.601212, 30.130541]]]}, "bbox": [-81.688876, 29.622432, -81.212878, 30.252914]}, {"id": "12111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.677862, 27.205988], [-80.678609, 27.448598], [-80.679288, 27.455697], [-80.679821, 27.55847], [-80.321271, 27.557378], [-80.311757, 27.524625], [-80.30117, 27.500314], [-80.293171, 27.500314], [-80.265535, 27.420542], [-80.253665, 27.37979], [-80.233538, 27.341307], [-80.226753, 27.322736], [-80.199288, 27.263022], [-80.284771, 27.263723], [-80.28551, 27.206025], [-80.481413, 27.20637], [-80.481534, 27.20637], [-80.677862, 27.205988]]]}, "bbox": [-80.679821, 27.205988, -80.199288, 27.55847]}, {"id": "12113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.919292, 30.370675], [-87.23297, 30.348999], [-87.1344, 30.420294], [-87.124968, 30.500196], [-87.258884, 30.611281], [-87.269407, 30.711687], [-87.308502, 30.72691], [-87.313611, 30.847266], [-87.286882, 30.925441], [-87.163084, 30.999051], [-87.162614, 30.999055], [-87.068633, 30.999143], [-87.064063, 30.999191], [-87.053737, 30.999131], [-87.039989, 30.999594], [-87.036366, 30.999348], [-87.027107, 30.999255], [-86.888135, 30.997577], [-86.872989, 30.997631], [-86.831934, 30.997378], [-86.830497, 30.997401], [-86.785918, 30.996978], [-86.785692, 30.996977], [-86.800283, 30.386477], [-86.850625, 30.380967], [-86.909679, 30.372423], [-86.919292, 30.370675]]]}, "bbox": [-87.313611, 30.348999, -86.785692, 30.999594]}, {"id": "12115", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.171655, 27.032769], [-82.255237, 27.032975], [-82.255521, 26.945264], [-82.299896, 26.945564], [-82.322536, 26.945627], [-82.326294, 26.945846], [-82.339027, 26.945912], [-82.340238, 26.94556], [-82.375737, 26.946041], [-82.400618, 26.984937], [-82.419218, 27.020736], [-82.445718, 27.060634], [-82.460319, 27.099933], [-82.465319, 27.110732], [-82.46889, 27.113612], [-82.477019, 27.141231], [-82.512319, 27.207528], [-82.539719, 27.254326], [-82.54512, 27.261026], [-82.55902, 27.268826], [-82.569754, 27.279452], [-82.569248, 27.298588], [-82.57602, 27.309324], [-82.597629, 27.335754], [-82.623863, 27.362206], [-82.642821, 27.38972], [-82.642837, 27.389737], [-82.252264, 27.386243], [-82.253596, 27.208916], [-82.056497, 27.207769], [-82.057469, 27.032119], [-82.171655, 27.032769]]]}, "bbox": [-82.642837, 26.945264, -82.056497, 27.389737]}, {"id": "12117", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.210452, 28.802453], [-81.195021, 28.792302], [-81.183198, 28.797468], [-81.178936, 28.781886], [-81.10575, 28.828541], [-80.98725, 28.612997], [-81.326991, 28.610298], [-81.327911, 28.611268], [-81.32865, 28.639334], [-81.331099, 28.639581], [-81.357965, 28.639187], [-81.365289, 28.640468], [-81.457975, 28.640336], [-81.459501, 28.640285], [-81.459695, 28.644475], [-81.414446, 28.784955], [-81.375088, 28.863366], [-81.376006, 28.865901], [-81.373491, 28.87025], [-81.372009, 28.869039], [-81.369692, 28.870536], [-81.368608, 28.872921], [-81.366705, 28.87325], [-81.366158, 28.874744], [-81.366764, 28.876619], [-81.367052, 28.878315], [-81.36694, 28.879227], [-81.24997, 28.833106], [-81.229881, 28.832621], [-81.226003, 28.83263], [-81.222874, 28.826862], [-81.224596, 28.822039], [-81.215898, 28.814423], [-81.216345, 28.808302], [-81.210452, 28.802453]]]}, "bbox": [-81.459695, 28.610298, -80.98725, 28.879227]}, {"id": "12127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.178936, 28.781886], [-81.183198, 28.797468], [-81.195021, 28.792302], [-81.210452, 28.802453], [-81.216345, 28.808302], [-81.215898, 28.814423], [-81.224596, 28.822039], [-81.222874, 28.826862], [-81.226003, 28.83263], [-81.229881, 28.832621], [-81.24997, 28.833106], [-81.36694, 28.879227], [-81.354554, 28.984375], [-81.502055, 29.097802], [-81.531262, 29.176621], [-81.61234, 29.202943], [-81.641916, 29.276766], [-81.648438, 29.290173], [-81.655677, 29.29994], [-81.667885, 29.301488], [-81.675523, 29.310628], [-81.680903, 29.32443], [-81.561194, 29.351686], [-81.540873, 29.356556], [-81.521764, 29.362194], [-81.518045, 29.361868], [-81.507989, 29.364511], [-81.450892, 29.378464], [-81.433992, 29.398552], [-81.41729, 29.261156], [-81.150081, 29.265957], [-81.155881, 29.410954], [-81.101923, 29.427055], [-81.046678, 29.307856], [-80.995423, 29.206052], [-80.966176, 29.14796], [-80.944376, 29.110861], [-80.907275, 29.064262], [-80.893675, 29.036163], [-80.878275, 29.010563], [-80.787021, 28.875266], [-80.732244, 28.791237], [-80.967895, 28.790197], [-80.964466, 28.612992], [-80.98725, 28.612997], [-81.10575, 28.828541], [-81.178936, 28.781886]]]}, "bbox": [-81.680903, 28.612992, -80.732244, 29.427055]}, {"id": "12131", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.992736, 30.38932], [-85.994712, 30.311702], [-85.99459, 30.290853], [-85.996083, 30.269148], [-85.999937, 30.27078], [-86.089963, 30.303569], [-86.222561, 30.343585], [-86.2987, 30.363049], [-86.364175, 30.374524], [-86.397325, 30.378553], [-86.395383, 30.433336], [-86.394174, 30.46674], [-86.393551, 30.493444], [-86.388646, 30.994181], [-86.374545, 30.994474], [-86.36927, 30.994477], [-86.364907, 30.994455], [-86.304596, 30.994029], [-86.289247, 30.993798], [-86.187246, 30.993992], [-86.180232, 30.994005], [-86.175204, 30.993798], [-86.168979, 30.993706], [-86.162886, 30.993682], [-86.056213, 30.993133], [-86.052462, 30.993247], [-86.035039, 30.99332], [-86.037591, 30.704572], [-85.844421, 30.70313], [-85.915297, 30.636427], [-85.858001, 30.496905], [-85.992736, 30.38932]]]}, "bbox": [-86.397325, 30.269148, -85.844421, 30.994477]}, {"id": "13009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.159585, 33.002803], [-83.357685, 32.926141], [-83.380383, 32.998077], [-83.414997, 33.112833], [-83.42909, 33.185352], [-83.274108, 33.187238], [-83.097507, 33.15141], [-83.100834, 33.049849], [-83.052197, 33.080682], [-83.073648, 32.946562], [-83.159585, 33.002803]]]}, "bbox": [-83.42909, 32.926141, -83.052197, 33.187238]}, {"id": "13013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.647031, 33.906198], [-83.763835, 33.896682], [-83.799104, 33.929844], [-83.869115, 34.004316], [-83.817682, 34.127493], [-83.767532, 34.066448], [-83.563215, 34.031757], [-83.537385, 33.965912], [-83.647031, 33.906198]]]}, "bbox": [-83.869115, 33.896682, -83.537385, 34.127493]}, {"id": "13015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.005775, 34.392446], [-84.862863, 34.396601], [-84.653232, 34.41259], [-84.659234, 34.077999], [-84.672635, 34.078199], [-84.673935, 34.078299], [-84.674935, 34.078199], [-84.676415, 34.078298], [-84.682835, 34.078399], [-84.684745, 34.0785], [-84.687222, 34.0785], [-84.721936, 34.079099], [-84.722636, 34.079199], [-84.729235, 34.079199], [-84.737836, 34.079399], [-84.922742, 34.082497], [-85.046871, 34.096412], [-85.005775, 34.392446]]]}, "bbox": [-85.046871, 34.077999, -84.653232, 34.41259]}, {"id": "13021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.710685, 32.952792], [-83.658211, 32.887913], [-83.513511, 32.844868], [-83.502603, 32.801119], [-83.597656, 32.664338], [-83.701152, 32.692169], [-83.824398, 32.741861], [-83.891922, 32.848351], [-83.710685, 32.952792]]]}, "bbox": [-83.891922, 32.664338, -83.502603, 32.952792]}, {"id": "13031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.780858, 32.15289], [-81.81628, 32.23747], [-81.969069, 32.268783], [-81.918671, 32.41541], [-82.030233, 32.53877], [-82.026842, 32.555163], [-82.001236, 32.60691], [-81.841005, 32.649093], [-81.689643, 32.54629], [-81.548006, 32.489286], [-81.542716, 32.417446], [-81.43583, 32.241289], [-81.780858, 32.15289]]]}, "bbox": [-82.030233, 32.15289, -81.43583, 32.649093]}, {"id": "13045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.337974, 33.653111], [-85.050889, 33.714632], [-85.037926, 33.811942], [-84.918629, 33.786328], [-84.901688, 33.780703], [-84.902546, 33.661066], [-84.905788, 33.573378], [-84.808934, 33.574085], [-84.850713, 33.511457], [-85.015358, 33.425506], [-85.293902, 33.428079], [-85.304439, 33.482884], [-85.313999, 33.529807], [-85.314091, 33.530218], [-85.314994, 33.535898], [-85.322497, 33.574167], [-85.337974, 33.653111]]]}, "bbox": [-85.337974, 33.425506, -84.808934, 33.811942]}, {"id": "13047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.144789, 34.767639], [-85.201856, 34.77508], [-85.20218, 34.854451], [-85.264762, 34.854277], [-85.265055, 34.985075], [-85.254955, 34.985175], [-85.235555, 34.985475], [-85.230354, 34.985475], [-85.221854, 34.985475], [-85.220554, 34.985575], [-85.217854, 34.985675], [-85.216554, 34.985675], [-85.185905, 34.985995], [-85.180553, 34.986075], [-85.045183, 34.986883], [-85.045052, 34.986859], [-84.97986, 34.987647], [-85.061648, 34.819478], [-85.144789, 34.767639]]]}, "bbox": [-85.265055, 34.767639, -84.97986, 34.987647]}, {"id": "13051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.004115, 32.072225], [-80.885517, 32.0346], [-80.859111, 32.023693], [-80.852276, 32.026676], [-80.84313, 32.024226], [-80.840549, 32.011306], [-80.841913, 32.002643], [-80.848441, 31.988279], [-80.862814, 31.969346], [-80.882814, 31.959075], [-80.897687, 31.949065], [-80.911207, 31.943769], [-80.929101, 31.944964], [-80.930279, 31.956705], [-80.948491, 31.95723], [-80.972392, 31.94127], [-80.975714, 31.923602], [-80.968494, 31.915822], [-80.954469, 31.911768], [-80.941359, 31.912984], [-80.934508, 31.90918], [-80.947294, 31.89621], [-80.971434, 31.877941], [-80.99269, 31.857641], [-81.000317, 31.856744], [-81.014478, 31.867474], [-81.041548, 31.876198], [-81.065255, 31.877095], [-81.058596, 31.857811], [-81.05907, 31.850106], [-81.06279, 31.84474], [-81.076178, 31.836132], [-81.075812, 31.829031], [-81.057181, 31.822687], [-81.050946, 31.822383], [-81.04794, 31.824881], [-81.039808, 31.823], [-81.036958, 31.819558], [-81.036873, 31.812721], [-81.047345, 31.802865], [-81.068116, 31.768735], [-81.077057, 31.761256], [-81.097402, 31.753126], [-81.130634, 31.722692], [-81.138448, 31.720934], [-81.154686, 31.726203], [-81.177027, 31.816113], [-81.138533, 31.855921], [-81.285467, 31.942994], [-81.323529, 32.019854], [-81.391698, 32.095886], [-81.195634, 32.237499], [-81.125457, 32.22713], [-81.122034, 32.161803], [-81.117234, 32.117605], [-81.113334, 32.113205], [-81.06185, 32.087935], [-81.042833, 32.084508], [-81.004115, 32.072225]]]}, "bbox": [-81.391698, 31.720934, -80.840549, 32.237499]}, {"id": "13057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.258075, 34.335156], [-84.258743, 34.185909], [-84.328263, 34.186144], [-84.418927, 34.073298], [-84.521992, 34.075399], [-84.659234, 34.077999], [-84.653232, 34.41259], [-84.58263, 34.381492], [-84.257586, 34.380992], [-84.257652, 34.375111], [-84.257812, 34.372631], [-84.258075, 34.335156]]]}, "bbox": [-84.659234, 34.073298, -84.257586, 34.41259]}, {"id": "13059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.360028, 34.040572], [-83.258413, 33.999098], [-83.24086, 33.90443], [-83.275933, 33.847977], [-83.537385, 33.965912], [-83.360028, 34.040572]]]}, "bbox": [-83.537385, 33.847977, -83.24086, 34.040572]}, {"id": "13067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.724435, 33.881859], [-84.737836, 34.079399], [-84.729235, 34.079199], [-84.722636, 34.079199], [-84.721936, 34.079099], [-84.687222, 34.0785], [-84.684745, 34.0785], [-84.682835, 34.078399], [-84.676415, 34.078298], [-84.674935, 34.078199], [-84.673935, 34.078299], [-84.672635, 34.078199], [-84.659234, 34.077999], [-84.521992, 34.075399], [-84.418927, 34.073298], [-84.383027, 33.9638], [-84.442708, 33.901543], [-84.480134, 33.817319], [-84.578132, 33.743507], [-84.619892, 33.805024], [-84.724139, 33.80617], [-84.723969, 33.815306], [-84.725181, 33.816995], [-84.725035, 33.819905], [-84.724435, 33.881859]]]}, "bbox": [-84.737836, 33.743507, -84.383027, 34.079399]}, {"id": "13069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.627342, 31.672672], [-82.597509, 31.469293], [-82.628181, 31.469351], [-82.628975, 31.36393], [-82.817544, 31.364486], [-82.844093, 31.403328], [-83.140483, 31.420395], [-83.138998, 31.427784], [-83.135927, 31.43051], [-83.139448, 31.436466], [-83.138618, 31.441528], [-83.144891, 31.454633], [-83.150474, 31.456787], [-83.150846, 31.462262], [-83.145874, 31.468926], [-83.145587, 31.472276], [-82.99836, 31.673164], [-82.995698, 31.780983], [-82.86309, 31.783005], [-82.836366, 31.816154], [-82.836633, 31.671398], [-82.627342, 31.672672]]]}, "bbox": [-83.150846, 31.36393, -82.597509, 31.816154]}, {"id": "13071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.99943, 31.334966], [-83.65409, 31.330661], [-83.512607, 31.327405], [-83.50981, 31.206181], [-83.574857, 31.078135], [-83.573959, 31.033875], [-83.736158, 31.037679], [-84.003876, 31.041582], [-84.003627, 31.07729], [-83.99943, 31.334966]]]}, "bbox": [-84.003876, 31.033875, -83.50981, 31.334966]}, {"id": "13073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.11663, 33.589723], [-82.098816, 33.586358], [-82.069039, 33.575382], [-82.046335, 33.56383], [-82.028238, 33.544934], [-82.294179, 33.354635], [-82.436814, 33.549658], [-82.425328, 33.650629], [-82.306414, 33.700644], [-82.218649, 33.686299], [-82.196583, 33.630582], [-82.179854, 33.615945], [-82.135046, 33.591044], [-82.12908, 33.589925], [-82.124841, 33.591274], [-82.11663, 33.589723]]]}, "bbox": [-82.436814, 33.354635, -82.028238, 33.700644]}, {"id": "13077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.939015, 33.224693], [-85.015358, 33.425506], [-84.850713, 33.511457], [-84.60954, 33.502511], [-84.62722, 33.440078], [-84.497527, 33.257422], [-84.508926, 33.245222], [-84.50029, 33.233444], [-84.502352, 33.221055], [-84.85236, 33.22359], [-84.862359, 33.191173], [-84.939015, 33.224693]]]}, "bbox": [-85.015358, 33.191173, -84.497527, 33.511457]}, {"id": "13085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.258075, 34.335156], [-84.257812, 34.372631], [-84.257652, 34.375111], [-84.257586, 34.380992], [-84.256867, 34.467327], [-84.319679, 34.467857], [-84.345553, 34.562735], [-84.255112, 34.568333], [-84.196754, 34.617924], [-84.189026, 34.608109], [-84.188557, 34.602692], [-84.19104, 34.539181], [-84.102037, 34.464544], [-83.980649, 34.418389], [-83.957077, 34.334011], [-84.258075, 34.335156]]]}, "bbox": [-84.345553, 34.334011, -83.957077, 34.617924]}, {"id": "13089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.254149, 33.647045], [-84.281273, 33.647411], [-84.282619, 33.647009], [-84.350224, 33.647908], [-84.349799, 33.664035], [-84.348325, 33.852503], [-84.348138, 33.857692], [-84.348225, 33.859502], [-84.348525, 33.861903], [-84.348125, 33.864903], [-84.348325, 33.867903], [-84.348125, 33.879203], [-84.348425, 33.881902], [-84.348224, 33.8929], [-84.348225, 33.904802], [-84.348025, 33.918302], [-84.347825, 33.918902], [-84.347925, 33.927001], [-84.347823, 33.938017], [-84.276822, 33.9577], [-84.275722, 33.954201], [-84.271922, 33.9559], [-84.266306, 33.947577], [-84.272216, 33.944853], [-84.265337, 33.932576], [-84.259011, 33.91882], [-84.256022, 33.914401], [-84.250413, 33.910812], [-84.23222, 33.902002], [-84.21663, 33.884976], [-84.20472, 33.877003], [-84.203519, 33.873003], [-84.187005, 33.865515], [-84.179418, 33.864403], [-84.172139, 33.857516], [-84.023713, 33.752808], [-84.056614, 33.726608], [-84.104334, 33.636025], [-84.184143, 33.646157], [-84.223952, 33.646572], [-84.224235, 33.630657], [-84.245453, 33.63073], [-84.254149, 33.647045]]]}, "bbox": [-84.350224, 33.630657, -84.023713, 33.9577]}, {"id": "13091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.346528, 32.272489], [-83.30475, 32.341958], [-83.173252, 32.452533], [-83.138991, 32.423069], [-82.990967, 32.147274], [-82.884803, 32.196072], [-82.87179, 32.18273], [-82.927865, 32.135274], [-82.934566, 32.153274], [-82.955466, 32.135274], [-82.942066, 32.124074], [-83.205739, 31.900325], [-83.292061, 31.984506], [-83.337313, 32.105885], [-83.291106, 32.178825], [-83.346528, 32.272489]]]}, "bbox": [-83.346528, 31.900325, -82.87179, 32.452533]}, {"id": "13095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.450398, 31.621868], [-84.297801, 31.621951], [-84.043213, 31.623573], [-84.018404, 31.650274], [-83.982569, 31.46348], [-83.997679, 31.462773], [-83.997796, 31.443753], [-84.141124, 31.440179], [-84.429876, 31.436661], [-84.450398, 31.621868]]]}, "bbox": [-84.450398, 31.436661, -83.982569, 31.650274]}, {"id": "13097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.769935, 33.784704], [-84.741348, 33.788568], [-84.725477, 33.788579], [-84.724122, 33.791439], [-84.724139, 33.80617], [-84.619892, 33.805024], [-84.578132, 33.743507], [-84.586826, 33.729114], [-84.594332, 33.729007], [-84.601732, 33.724408], [-84.608032, 33.712908], [-84.621232, 33.704508], [-84.632131, 33.700312], [-84.630117, 33.693116], [-84.752735, 33.63021], [-84.763097, 33.614211], [-84.775591, 33.609662], [-84.805655, 33.58642], [-84.808934, 33.574085], [-84.905788, 33.573378], [-84.902546, 33.661066], [-84.901688, 33.780703], [-84.879151, 33.774758], [-84.832708, 33.776019], [-84.832705, 33.778522], [-84.799853, 33.779909], [-84.795109, 33.779809], [-84.791993, 33.781162], [-84.769935, 33.784704]]]}, "bbox": [-84.905788, 33.573378, -84.578132, 33.80617]}, {"id": "13113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.497527, 33.257422], [-84.62722, 33.440078], [-84.60954, 33.502511], [-84.458665, 33.550933], [-84.381759, 33.463414], [-84.388118, 33.352465], [-84.432907, 33.2565], [-84.497527, 33.257422]]]}, "bbox": [-84.62722, 33.2565, -84.381759, 33.550933]}, {"id": "13115", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.069159, 34.587184], [-85.086761, 34.401264], [-85.005775, 34.392446], [-85.046871, 34.096412], [-85.257624, 34.100668], [-85.421731, 34.080821], [-85.455057, 34.250689], [-85.455371, 34.252854], [-85.458071, 34.265736], [-85.458693, 34.269437], [-85.462304, 34.286365], [-85.387351, 34.286097], [-85.334881, 34.369748], [-85.180548, 34.435996], [-85.107748, 34.587483], [-85.069159, 34.587184]]]}, "bbox": [-85.462304, 34.080821, -85.005775, 34.587483]}, {"id": "13117", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.258075, 34.335156], [-83.957077, 34.334011], [-83.927284, 34.279399], [-83.989059, 34.195732], [-84.062841, 34.167873], [-84.074624, 34.163687], [-84.094763, 34.131708], [-84.101343, 34.106305], [-84.10261, 34.103788], [-84.105403, 34.102223], [-84.107143, 34.10003], [-84.109894, 34.098423], [-84.117801, 34.065315], [-84.097692, 34.050654], [-84.200373, 34.090118], [-84.258934, 34.109539], [-84.258743, 34.185909], [-84.258075, 34.335156]]]}, "bbox": [-84.258934, 34.050654, -83.927284, 34.335156]}, {"id": "13121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.752735, 33.63021], [-84.630117, 33.693116], [-84.632131, 33.700312], [-84.621232, 33.704508], [-84.608032, 33.712908], [-84.601732, 33.724408], [-84.594332, 33.729007], [-84.586826, 33.729114], [-84.578132, 33.743507], [-84.480134, 33.817319], [-84.442708, 33.901543], [-84.383027, 33.9638], [-84.418927, 34.073298], [-84.328263, 34.186144], [-84.258743, 34.185909], [-84.258934, 34.109539], [-84.200373, 34.090118], [-84.097692, 34.050654], [-84.276822, 33.9577], [-84.347823, 33.938017], [-84.347925, 33.927001], [-84.347825, 33.918902], [-84.348025, 33.918302], [-84.348225, 33.904802], [-84.348224, 33.8929], [-84.348425, 33.881902], [-84.348125, 33.879203], [-84.348325, 33.867903], [-84.348125, 33.864903], [-84.348525, 33.861903], [-84.348225, 33.859502], [-84.348138, 33.857692], [-84.348325, 33.852503], [-84.349799, 33.664035], [-84.350224, 33.647908], [-84.360224, 33.647909], [-84.365325, 33.647809], [-84.457726, 33.64887], [-84.458514, 33.608625], [-84.458627, 33.586456], [-84.458399, 33.572743], [-84.45863, 33.572107], [-84.458927, 33.565911], [-84.458924, 33.559759], [-84.458579, 33.556242], [-84.458665, 33.550933], [-84.60954, 33.502511], [-84.850713, 33.511457], [-84.808934, 33.574085], [-84.805655, 33.58642], [-84.775591, 33.609662], [-84.763097, 33.614211], [-84.752735, 33.63021]]]}, "bbox": [-84.850713, 33.502511, -84.097692, 34.186144]}, {"id": "13127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.44317, 31.016661], [-81.572692, 31.097269], [-81.766322, 31.169595], [-81.731694, 31.330048], [-81.69199, 31.400519], [-81.62429, 31.452982], [-81.435874, 31.313263], [-81.269906, 31.294489], [-81.274688, 31.289454], [-81.276862, 31.254734], [-81.282842, 31.24433], [-81.289136, 31.225487], [-81.288403, 31.211065], [-81.293359, 31.206332], [-81.304957, 31.206173], [-81.314183, 31.207938], [-81.339028, 31.186918], [-81.35488, 31.167204], [-81.360791, 31.155903], [-81.359349, 31.149166], [-81.368241, 31.136534], [-81.38683, 31.133214], [-81.399677, 31.134113], [-81.402096, 31.125383], [-81.403732, 31.107115], [-81.401209, 31.086143], [-81.401267, 31.072781], [-81.415123, 31.026718], [-81.420474, 31.016703], [-81.424732, 31.013678], [-81.432475, 31.012991], [-81.43471, 31.014641], [-81.434923, 31.017804], [-81.44317, 31.016661]]]}, "bbox": [-81.766322, 31.012991, -81.269906, 31.452982]}, {"id": "13135", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.109894, 34.098423], [-84.107143, 34.10003], [-84.105403, 34.102223], [-84.10261, 34.103788], [-84.101343, 34.106305], [-84.094763, 34.131708], [-84.074624, 34.163687], [-84.062841, 34.167873], [-83.86803, 34.098281], [-83.817682, 34.127493], [-83.869115, 34.004316], [-83.799104, 33.929844], [-83.982033, 33.786054], [-83.984555, 33.784332], [-84.023713, 33.752808], [-84.172139, 33.857516], [-84.179418, 33.864403], [-84.187005, 33.865515], [-84.203519, 33.873003], [-84.20472, 33.877003], [-84.21663, 33.884976], [-84.23222, 33.902002], [-84.250413, 33.910812], [-84.256022, 33.914401], [-84.259011, 33.91882], [-84.265337, 33.932576], [-84.272216, 33.944853], [-84.266306, 33.947577], [-84.271922, 33.9559], [-84.275722, 33.954201], [-84.276822, 33.9577], [-84.097692, 34.050654], [-84.117801, 34.065315], [-84.109894, 34.098423]]]}, "bbox": [-84.276822, 33.752808, -83.799104, 34.167873]}, {"id": "13139", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.062841, 34.167873], [-83.989059, 34.195732], [-83.927284, 34.279399], [-83.957077, 34.334011], [-83.980649, 34.418389], [-83.843405, 34.505494], [-83.666413, 34.503598], [-83.615251, 34.431748], [-83.669473, 34.366689], [-83.620115, 34.295276], [-83.817682, 34.127493], [-83.86803, 34.098281], [-84.062841, 34.167873]]]}, "bbox": [-84.062841, 34.098281, -83.615251, 34.505494]}, {"id": "13151", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.283518, 33.502514], [-84.281273, 33.647411], [-84.254149, 33.647045], [-84.245453, 33.63073], [-84.224235, 33.630657], [-84.223952, 33.646572], [-84.184143, 33.646157], [-84.181584, 33.629174], [-84.17213, 33.621919], [-84.136289, 33.57233], [-84.044493, 33.525776], [-83.923913, 33.444194], [-84.044594, 33.333656], [-84.044597, 33.333495], [-84.042663, 33.333501], [-84.102582, 33.298191], [-84.150581, 33.335639], [-84.3544, 33.352514], [-84.353584, 33.436165], [-84.283518, 33.502514]]]}, "bbox": [-84.3544, 33.298191, -83.923913, 33.647411]}, {"id": "13175", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.226536, 32.584201], [-82.95757, 32.708198], [-82.957066, 32.708318], [-82.862763, 32.71576], [-82.668557, 32.612164], [-82.647733, 32.512507], [-82.737137, 32.33803], [-82.721964, 32.309283], [-82.884803, 32.196072], [-82.990967, 32.147274], [-83.138991, 32.423069], [-83.226536, 32.584201]]]}, "bbox": [-83.226536, 32.147274, -82.647733, 32.71576]}, {"id": "13185", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.475617, 31.031964], [-83.295052, 31.027278], [-83.280476, 31.02658], [-83.273731, 31.026658], [-83.197971, 31.025405], [-83.179465, 30.950128], [-83.042924, 30.947296], [-83.019419, 30.849453], [-83.088082, 30.848658], [-83.136236, 30.775229], [-83.136616, 30.624346], [-83.15617, 30.625504], [-83.163309, 30.625895], [-83.174411, 30.626444], [-83.187391, 30.627223], [-83.256218, 30.631279], [-83.309249, 30.634405], [-83.30925, 30.634405], [-83.309455, 30.634417], [-83.311647, 30.634577], [-83.340852, 30.636336], [-83.341011, 30.636346], [-83.357703, 30.637359], [-83.482461, 30.756931], [-83.449293, 30.817957], [-83.358989, 30.83671], [-83.458129, 31.000859], [-83.460412, 31.002812], [-83.461306, 31.005709], [-83.463689, 31.005935], [-83.464269, 31.011093], [-83.466784, 31.013886], [-83.465898, 31.018502], [-83.467778, 31.021635], [-83.471324, 31.02386], [-83.471596, 31.026583], [-83.468295, 31.028481], [-83.470776, 31.028531], [-83.472275, 31.029742], [-83.47326, 31.028452], [-83.473792, 31.031276], [-83.476889, 31.030987], [-83.475617, 31.031964]]]}, "bbox": [-83.482461, 30.624346, -83.019419, 31.031964]}, {"id": "13215", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.001052, 32.510477], [-85.001324, 32.512973], [-85.0071, 32.523868], [-85.022509, 32.542923], [-85.044606, 32.559499], [-85.069583, 32.58393], [-85.079935, 32.602889], [-85.080288, 32.603577], [-85.082454, 32.607022], [-84.907703, 32.607608], [-84.907883, 32.583433], [-84.694603, 32.583945], [-84.69451, 32.518732], [-84.769431, 32.422319], [-84.774567, 32.421839], [-84.778359, 32.423054], [-84.781559, 32.422863], [-84.782983, 32.421711], [-84.788471, 32.418031], [-84.791463, 32.414783], [-84.798647, 32.415968], [-84.805175, 32.418912], [-84.809432, 32.420864], [-84.811384, 32.418608], [-84.814632, 32.414448], [-84.823992, 32.413967], [-84.83436, 32.413216], [-84.844216, 32.413248], [-84.848664, 32.41464], [-84.987278, 32.381623], [-84.979431, 32.412244], [-84.983831, 32.445643], [-84.998231, 32.469842], [-85.000779, 32.506548], [-85.00103, 32.510157], [-85.001052, 32.510477]]]}, "bbox": [-85.082454, 32.381623, -84.69451, 32.607608]}, {"id": "13227", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.654366, 34.548946], [-84.345553, 34.562735], [-84.319679, 34.467857], [-84.256867, 34.467327], [-84.257586, 34.380992], [-84.58263, 34.381492], [-84.653232, 34.41259], [-84.654366, 34.548946]]]}, "bbox": [-84.654366, 34.380992, -84.256867, 34.562735]}, {"id": "13245", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.028238, 33.544934], [-82.014293, 33.530313], [-82.007638, 33.523335], [-82.007138, 33.522835], [-81.967037, 33.480636], [-81.957934, 33.468632], [-81.912572, 33.408811], [-81.902737, 33.331242], [-81.852136, 33.247544], [-81.851975, 33.247408], [-82.088162, 33.230245], [-82.17424, 33.296771], [-82.26758, 33.267397], [-82.278539, 33.269174], [-82.286507, 33.274135], [-82.296855, 33.277349], [-82.311539, 33.297146], [-82.353498, 33.312318], [-82.350299, 33.314801], [-82.294179, 33.354635], [-82.028238, 33.544934]]]}, "bbox": [-82.353498, 33.230245, -81.851975, 33.544934]}, {"id": "13247", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.023713, 33.752808], [-83.984555, 33.784332], [-83.982033, 33.786054], [-83.954499, 33.76892], [-83.953332, 33.768034], [-83.914823, 33.744203], [-83.972655, 33.605482], [-84.024279, 33.548226], [-84.024854, 33.547507], [-84.044493, 33.525776], [-84.136289, 33.57233], [-84.17213, 33.621919], [-84.181584, 33.629174], [-84.184143, 33.646157], [-84.104334, 33.636025], [-84.056614, 33.726608], [-84.023713, 33.752808]]]}, "bbox": [-84.184143, 33.525776, -83.914823, 33.786054]}, {"id": "13255", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.502352, 33.221055], [-84.50029, 33.233444], [-84.508926, 33.245222], [-84.497527, 33.257422], [-84.432907, 33.2565], [-84.388118, 33.352465], [-84.3544, 33.352514], [-84.150581, 33.335639], [-84.102582, 33.298191], [-84.123767, 33.202824], [-84.248185, 33.189019], [-84.451336, 33.208889], [-84.496783, 33.183866], [-84.492889, 33.200006], [-84.502352, 33.221055]]]}, "bbox": [-84.508926, 33.183866, -84.102582, 33.352514]}, {"id": "13275", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.083753, 30.675954], [-84.076964, 30.91557], [-84.119058, 30.980956], [-84.116644, 31.077971], [-84.004502, 31.077192], [-84.003627, 31.07729], [-84.003876, 31.041582], [-83.736158, 31.037679], [-83.743729, 30.658396], [-83.810536, 30.66188], [-83.820886, 30.662612], [-83.855216, 30.664412], [-83.88022, 30.665832], [-83.880317, 30.665807], [-84.007391, 30.672097], [-84.007454, 30.6721], [-84.039707, 30.673819], [-84.04181, 30.673878], [-84.046605, 30.6742], [-84.057228, 30.674705], [-84.083753, 30.675954]]]}, "bbox": [-84.119058, 30.658396, -83.736158, 31.077971]}, {"id": "13291", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.005457, 34.98744], [-83.936646, 34.987485], [-83.936413, 34.987485], [-83.915104, 34.926887], [-83.819099, 34.91369], [-83.780401, 34.792893], [-83.856506, 34.722191], [-83.939007, 34.740859], [-84.03651, 34.641934], [-84.158035, 34.648243], [-84.093193, 34.801411], [-84.107422, 34.886896], [-84.178672, 34.946497], [-84.129455, 34.987504], [-84.029954, 34.987321], [-84.021357, 34.98743], [-84.005457, 34.98744]]]}, "bbox": [-84.178672, 34.641934, -83.780401, 34.987504]}, {"id": "13293", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.202628, 32.690018], [-84.286246, 32.747626], [-84.391017, 32.786956], [-84.506888, 32.881788], [-84.52702, 32.970548], [-84.489708, 32.993729], [-84.27014, 32.991011], [-84.122361, 32.989576], [-84.12334, 32.932184], [-84.124275, 32.849562], [-84.202628, 32.690018]]]}, "bbox": [-84.52702, 32.690018, -84.122361, 32.993729]}, {"id": "13297", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.914823, 33.744203], [-83.953332, 33.768034], [-83.954499, 33.76892], [-83.982033, 33.786054], [-83.799104, 33.929844], [-83.763835, 33.896682], [-83.647031, 33.906198], [-83.505928, 33.81776], [-83.680896, 33.596919], [-83.77735, 33.658301], [-83.914823, 33.744203]]]}, "bbox": [-83.982033, 33.596919, -83.505928, 33.929844]}, {"id": "13299", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.284561, 31.224449], [-82.208732, 31.170938], [-82.208262, 31.084768], [-82.131698, 31.010714], [-82.415603, 31.01359], [-82.420442, 30.795229], [-82.149872, 30.784336], [-82.214847, 30.567009], [-82.249841, 30.570863], [-82.2581, 30.571559], [-82.287343, 30.573458], [-82.374844, 30.579004], [-82.418915, 30.581745], [-82.435852, 30.820068], [-82.495476, 30.819553], [-82.490558, 30.963166], [-82.592071, 31.018487], [-82.671669, 31.183739], [-82.699206, 31.278104], [-82.629622, 31.274726], [-82.628975, 31.36393], [-82.628181, 31.469351], [-82.597509, 31.469293], [-82.494718, 31.46869], [-82.417246, 31.417119], [-82.383705, 31.291143], [-82.284561, 31.224449]]]}, "bbox": [-82.699206, 30.567009, -82.131698, 31.469351]}, {"id": "13313", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.97986, 34.987647], [-84.976973, 34.987669], [-84.955623, 34.98783], [-84.94442, 34.987864], [-84.939306, 34.987916], [-84.861314, 34.987791], [-84.858032, 34.987746], [-84.831799, 34.988004], [-84.82401, 34.987707], [-84.820478, 34.987913], [-84.817279, 34.987753], [-84.810742, 34.987615], [-84.810477, 34.987607], [-84.818715, 34.87695], [-84.878499, 34.77961], [-84.864945, 34.707356], [-84.933722, 34.706799], [-84.913456, 34.634128], [-85.050446, 34.622482], [-85.050847, 34.71998], [-85.168851, 34.720279], [-85.144789, 34.767639], [-85.061648, 34.819478], [-84.97986, 34.987647]]]}, "bbox": [-85.168851, 34.622482, -84.810477, 34.988004]}, {"id": "16001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-115.974946, 43.365081], [-115.978695, 43.113421], [-116.266168, 43.112553], [-116.385964, 43.193445], [-116.433111, 43.296436], [-116.511722, 43.290253], [-116.513364, 43.45932], [-116.473713, 43.459216], [-116.473492, 43.634103], [-116.513123, 43.634183], [-116.512559, 43.807216], [-116.281687, 43.806937], [-116.122476, 43.691256], [-115.975767, 43.591338], [-115.974946, 43.365081]]]}, "bbox": [-116.513364, 43.112553, -115.974946, 43.807216]}, {"id": "16005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.875573, 42.416335], [-111.897244, 42.256646], [-112.126286, 42.28533], [-112.190692, 42.3512], [-112.327029, 42.323854], [-112.297202, 42.454097], [-112.419995, 42.502857], [-112.37961, 42.646225], [-112.496937, 42.733053], [-112.515974, 42.910003], [-112.558535, 42.961101], [-112.737583, 42.905549], [-112.750503, 42.951443], [-112.676152, 43.022012], [-112.063055, 43.022364], [-112.082064, 42.950516], [-112.149792, 42.895603], [-112.120692, 42.831618], [-112.14114, 42.763051], [-112.105476, 42.699195], [-111.969449, 42.718039], [-111.875573, 42.416335]]]}, "bbox": [-112.750503, 42.256646, -111.875573, 43.022364]}, {"id": "16019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.045205, 43.501136], [-111.044617, 43.31572], [-111.044229, 43.195579], [-111.044168, 43.189244], [-111.044232, 43.18444], [-111.044266, 43.177236], [-111.044235, 43.177121], [-111.044143, 43.072364], [-111.044162, 43.068222], [-111.04415, 43.066172], [-111.044117, 43.060309], [-111.044086, 43.054819], [-111.044063, 43.046302], [-111.044058, 43.04464], [-111.043997, 43.041415], [-111.044094, 43.02927], [-111.044033, 43.026411], [-111.044034, 43.024844], [-111.044034, 43.024581], [-111.044206, 43.022614], [-111.044156, 43.020052], [-111.589615, 43.020052], [-111.587795, 43.28163], [-111.822742, 43.2822], [-111.822589, 43.366135], [-112.043821, 43.366708], [-112.103298, 43.425057], [-112.520024, 43.425099], [-112.519945, 43.62656], [-111.626438, 43.626748], [-111.399915, 43.622015], [-111.243885, 43.621694], [-111.199111, 43.539686], [-111.045205, 43.501136]]]}, "bbox": [-112.520024, 43.020052, -111.043997, 43.626748]}, {"id": "16027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-117.026623, 43.680865], [-117.026586, 43.683001], [-117.026825, 43.706193], [-117.026725, 43.714815], [-117.026841, 43.732905], [-117.026651, 43.733935], [-117.026634, 43.808104], [-116.996504, 43.864714], [-116.982482, 43.872799], [-116.979186, 43.879973], [-116.85322, 43.7926], [-116.712672, 43.807161], [-116.707332, 43.807279], [-116.512559, 43.807216], [-116.513123, 43.634183], [-116.473492, 43.634103], [-116.473713, 43.459216], [-116.513364, 43.45932], [-116.511722, 43.290253], [-116.780671, 43.477217], [-116.841528, 43.593168], [-117.026623, 43.680865]]]}, "bbox": [-117.026841, 43.290253, -116.473492, 43.879973]}, {"id": "16055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-117.039857, 47.366093], [-117.039882, 47.399085], [-117.03995, 47.412412], [-117.039948, 47.434885], [-117.039971, 47.463309], [-117.039945, 47.477823], [-117.040514, 47.522351], [-117.040545, 47.527562], [-117.040745, 47.532909], [-117.041276, 47.55821], [-117.041174, 47.55853], [-117.041431, 47.67814], [-117.041431, 47.678185], [-117.041431, 47.68], [-117.041532, 47.683194], [-117.041633, 47.7064], [-117.041678, 47.72271], [-117.042135, 47.7441], [-117.042059, 47.7451], [-117.042657, 47.760857], [-117.042623, 47.761223], [-117.042521, 47.764896], [-117.042485, 47.766525], [-117.041874, 47.977387], [-116.633095, 47.977147], [-116.504214, 47.991479], [-116.505028, 47.890188], [-116.322825, 47.890342], [-116.329496, 47.413781], [-116.586576, 47.414662], [-116.629147, 47.371701], [-117.039857, 47.366093]]]}, "bbox": [-117.042657, 47.366093, -116.322825, 47.991479]}, {"id": "16069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-116.915989, 45.995413], [-116.94353, 46.062173], [-116.925621, 46.158888], [-116.958801, 46.24232], [-116.985333, 46.294617], [-116.987939, 46.298031], [-117.047469, 46.342884], [-117.061045, 46.367747], [-117.046915, 46.379577], [-117.039813, 46.425425], [-117.039741, 46.462704], [-117.039763, 46.46957], [-117.039771, 46.471779], [-117.039783, 46.541785], [-116.719183, 46.542789], [-116.625985, 46.628041], [-116.455881, 46.629097], [-116.448618, 46.497056], [-116.369352, 46.49975], [-116.369247, 46.466921], [-116.362266, 46.352336], [-116.489852, 46.325334], [-116.713153, 46.325521], [-116.701977, 45.996177], [-116.796418, 45.853807], [-116.857254, 45.904159], [-116.866544, 45.916958], [-116.875125, 45.9422], [-116.915989, 45.995413]]]}, "bbox": [-117.061045, 45.853807, -116.362266, 46.629097]}, {"id": "16083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-114.498243, 41.994636], [-114.498259, 41.994599], [-114.598267, 41.994511], [-114.763825, 41.999909], [-114.914187, 41.999909], [-115.031783, 41.996008], [-115.038256, 41.996025], [-115.037694, 42.749936], [-115.037716, 42.76848], [-115.037262, 42.911931], [-114.901359, 42.858678], [-114.928714, 42.764961], [-114.850557, 42.749904], [-114.821582, 42.671582], [-114.616535, 42.649367], [-114.375289, 42.598227], [-114.130292, 42.494975], [-114.045718, 42.528766], [-114.000691, 42.526434], [-114.06708, 42.51452], [-114.069053, 42.417124], [-114.285363, 42.417332], [-114.281854, 41.994264], [-114.498243, 41.994636]]]}, "bbox": [-115.038256, 41.994264, -114.000691, 42.911931]}, {"id": "17001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.365396, 39.777266], [-91.432919, 39.840554], [-91.446385, 39.870394], [-91.455887, 39.945538], [-91.460287, 39.980333], [-91.494865, 40.037421], [-91.510322, 40.127994], [-91.512974, 40.181062], [-91.510332, 40.201142], [-91.258828, 40.197299], [-90.911969, 40.193088], [-90.913616, 40.104452], [-90.916609, 39.845075], [-90.916071, 39.757168], [-91.147678, 39.75707], [-91.265848, 39.757258], [-91.365125, 39.758723], [-91.367962, 39.759124], [-91.365396, 39.777266]]]}, "bbox": [-91.512974, 39.75707, -90.911969, 40.201142]}, {"id": "17019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.459957, 40.39885], [-87.932858, 40.399401], [-87.937645, 39.879803], [-88.462207, 39.879092], [-88.460418, 40.281935], [-88.459957, 40.39885]]]}, "bbox": [-88.462207, 39.879092, -87.932858, 40.399401]}, {"id": "17029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.472073, 39.651588], [-88.063437, 39.652555], [-87.9666, 39.685928], [-87.960179, 39.481309], [-88.014205, 39.480762], [-88.012121, 39.378968], [-88.47083, 39.374515], [-88.470505, 39.447041], [-88.472073, 39.651588]]]}, "bbox": [-88.472073, 39.374515, -87.960179, 39.685928]}, {"id": "17031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.524044, 41.708335], [-87.524944, 41.702635], [-87.524844, 41.691635], [-87.524642, 41.634935], [-87.524742, 41.632435], [-87.524642, 41.622535], [-87.524641, 41.563335], [-87.525669, 41.470283], [-87.653236, 41.469754], [-87.712752, 41.46962], [-87.717554, 41.469733], [-87.790303, 41.469846], [-87.790408, 41.528134], [-87.79056, 41.539916], [-87.792292, 41.538662], [-87.792793, 41.55854], [-87.909453, 41.556732], [-87.91193, 41.643933], [-88.027688, 41.641506], [-88.02916, 41.68553], [-87.914265, 41.716746], [-87.919333, 41.847679], [-87.919532, 41.851854], [-87.91964, 41.852621], [-87.919872, 41.859781], [-87.920082, 41.862199], [-87.920441, 41.906869], [-87.92, 41.958151], [-87.92067, 41.994031], [-88.080223, 41.990752], [-88.207356, 41.987127], [-88.210764, 41.987023], [-88.216575, 41.987127], [-88.217875, 41.987027], [-88.232275, 41.986627], [-88.233475, 41.986727], [-88.262876, 41.986227], [-88.238369, 42.154253], [-88.237402, 42.154281], [-88.199584, 42.15426], [-88.121545, 42.154193], [-88.004466, 42.153645], [-87.759327, 42.152362], [-87.75639, 42.14835], [-87.755826, 42.147579], [-87.754767, 42.146132], [-87.754444, 42.145691], [-87.754358, 42.145573], [-87.750396, 42.14016], [-87.748486, 42.13755], [-87.746421, 42.134729], [-87.741662, 42.128227], [-87.741318, 42.127812], [-87.740787, 42.127172], [-87.740718, 42.127089], [-87.739735, 42.125903], [-87.739529, 42.125655], [-87.733929, 42.118903], [-87.730463, 42.114723], [-87.729387, 42.113426], [-87.729378, 42.113414], [-87.728335, 42.112157], [-87.728191, 42.111984], [-87.727248, 42.110847], [-87.727005, 42.110554], [-87.725196, 42.108373], [-87.724661, 42.107727], [-87.724603, 42.107674], [-87.723723, 42.106879], [-87.722306, 42.105596], [-87.72222, 42.105518], [-87.7215, 42.104866], [-87.720407, 42.103878], [-87.720303, 42.103783], [-87.718065, 42.101758], [-87.717504, 42.10125], [-87.717276, 42.101044], [-87.717169, 42.100947], [-87.712206, 42.096455], [-87.71096, 42.095328], [-87.706415, 42.092213], [-87.704594, 42.090966], [-87.703882, 42.090478], [-87.70237, 42.089442], [-87.682359, 42.075729], [-87.682179, 42.075441], [-87.68075, 42.07316], [-87.679843, 42.071713], [-87.671462, 42.058334], [-87.670512, 42.05298], [-87.670699, 42.052305], [-87.671119, 42.050781], [-87.671184, 42.050548], [-87.671894, 42.047972], [-87.671094, 42.042802], [-87.668982, 42.029142], [-87.630953, 41.933132], [-87.63087, 41.932784], [-87.627038, 41.916738], [-87.624763, 41.907209], [-87.624134, 41.904574], [-87.624052, 41.904232], [-87.622944, 41.90202], [-87.619852, 41.901392], [-87.617433, 41.898032], [-87.614163, 41.893418], [-87.612291, 41.893335], [-87.611659, 41.892216], [-87.611659, 41.890708], [-87.61268, 41.889248], [-87.614188, 41.888421], [-87.613556, 41.88448], [-87.613654, 41.884412], [-87.615734, 41.882958], [-87.616537, 41.882396], [-87.616251, 41.868933], [-87.60945, 41.845233], [-87.600549, 41.826833], [-87.587123, 41.811422], [-87.587054, 41.811342], [-87.580948, 41.804334], [-87.58092, 41.804225], [-87.58055, 41.80275], [-87.576347, 41.786034], [-87.560646, 41.766034], [-87.542845, 41.752135], [-87.530745, 41.748235], [-87.524141, 41.72399], [-87.524044, 41.708335]]]}, "bbox": [-88.262876, 41.46962, -87.524044, 42.154281]}, {"id": "17037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.588657, 42.15359], [-88.601291, 41.981336], [-88.601933, 41.719563], [-88.60362, 41.719546], [-88.60224, 41.631389], [-88.818462, 41.631352], [-88.938618, 41.628319], [-88.941279, 41.891752], [-88.939732, 42.15232], [-88.705633, 42.153561], [-88.588657, 42.15359]]]}, "bbox": [-88.941279, 41.628319, -88.588657, 42.15359]}, {"id": "17043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.080223, 41.990752], [-87.92067, 41.994031], [-87.92, 41.958151], [-87.920441, 41.906869], [-87.920082, 41.862199], [-87.919872, 41.859781], [-87.91964, 41.852621], [-87.919532, 41.851854], [-87.919333, 41.847679], [-87.914265, 41.716746], [-88.02916, 41.68553], [-88.030561, 41.72893], [-88.261468, 41.724529], [-88.261952, 41.724652], [-88.26247, 41.777429], [-88.26267, 41.779629], [-88.263071, 41.799328], [-88.263068, 41.81229], [-88.262876, 41.986227], [-88.233475, 41.986727], [-88.232275, 41.986627], [-88.217875, 41.987027], [-88.216575, 41.987127], [-88.210764, 41.987023], [-88.207356, 41.987127], [-88.080223, 41.990752]]]}, "bbox": [-88.263071, 41.68553, -87.914265, 41.994031]}, {"id": "17049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.360654, 39.171118], [-88.361745, 38.910847], [-88.620486, 38.915303], [-88.693531, 38.914617], [-88.806794, 38.911656], [-88.805325, 39.216263], [-88.804484, 39.216131], [-88.470906, 39.215029], [-88.470865, 39.171463], [-88.360654, 39.171118]]]}, "bbox": [-88.806794, 38.910847, -88.360654, 39.216263]}, {"id": "17057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.215267, 40.713598], [-89.986068, 40.712257], [-89.989018, 40.625835], [-89.873506, 40.624588], [-89.872463, 40.513127], [-89.92468, 40.435921], [-90.033026, 40.377806], [-90.118966, 40.235263], [-90.199556, 40.183945], [-90.451502, 40.188892], [-90.450227, 40.276335], [-90.445506, 40.627843], [-90.445217, 40.65687], [-90.445084, 40.657202], [-90.445009, 40.662406], [-90.444877, 40.663944], [-90.44475, 40.677479], [-90.444875, 40.677784], [-90.444606, 40.695505], [-90.444429, 40.697371], [-90.444343, 40.714667], [-90.215267, 40.713598]]]}, "bbox": [-90.451502, 40.183945, -89.872463, 40.714667]}, {"id": "17077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.521407, 37.572143], [-89.521274, 37.578971], [-89.518007, 37.583962], [-89.511936, 37.584564], [-89.506563, 37.62505], [-89.515436, 37.67137], [-89.671255, 37.801144], [-89.674304, 37.803179], [-89.595084, 37.95531], [-89.177597, 37.950311], [-89.150834, 37.950196], [-89.151176, 37.861999], [-89.153668, 37.600469], [-89.450594, 37.600022], [-89.521407, 37.572143]]]}, "bbox": [-89.674304, 37.572143, -89.150834, 37.95531]}, {"id": "17081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.698961, 38.474914], [-88.702391, 38.256661], [-88.704606, 38.125195], [-89.129637, 38.124747], [-89.149739, 38.124945], [-89.147416, 38.212896], [-89.144388, 38.473878], [-88.698961, 38.474914]]]}, "bbox": [-89.149739, 38.124747, -88.698961, 38.474914]}, {"id": "17089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.263068, 41.81229], [-88.263071, 41.799328], [-88.26267, 41.779629], [-88.26247, 41.777429], [-88.261952, 41.724652], [-88.601933, 41.719563], [-88.601291, 41.981336], [-88.588657, 42.15359], [-88.238369, 42.154253], [-88.262876, 41.986227], [-88.263068, 41.81229]]]}, "bbox": [-88.601933, 41.719563, -88.238369, 42.154253]}, {"id": "17091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.526768, 41.298052], [-87.52657, 41.166097], [-87.526567, 41.163865], [-87.52666, 41.16009], [-87.526719, 41.159448], [-87.526693, 41.153958], [-87.526696, 41.149222], [-87.5267, 41.139658], [-87.526711, 41.121485], [-87.52652, 41.024837], [-87.526346, 41.010583], [-87.526307, 41.010355], [-88.131938, 40.997839], [-88.133741, 40.997605], [-88.236498, 40.995218], [-88.245975, 40.994607], [-88.2473, 40.99456], [-88.248258, 41.023547], [-88.25113, 41.10353], [-88.251995, 41.114229], [-88.240889, 41.114383], [-88.244155, 41.201546], [-88.011812, 41.205604], [-88.013919, 41.292447], [-87.526768, 41.298052]]]}, "bbox": [-88.251995, 40.99456, -87.526307, 41.298052]}, {"id": "17097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.049782, 42.495319], [-87.99018, 42.494519], [-87.971279, 42.494019], [-87.900242, 42.49302], [-87.843594, 42.492307], [-87.815872, 42.49192], [-87.800561, 42.49192], [-87.800477, 42.49192], [-87.800317, 42.490578], [-87.798971, 42.479278], [-87.79823, 42.473054], [-87.798071, 42.471721], [-87.800752, 42.445867], [-87.80337, 42.420621], [-87.803529, 42.417759], [-87.80375, 42.413793], [-87.80537, 42.384721], [-87.80613, 42.383357], [-87.81557, 42.366416], [-87.81657, 42.364621], [-87.820858, 42.361584], [-87.820871, 42.361544], [-87.826717, 42.343497], [-87.830646, 42.331368], [-87.830986, 42.330317], [-87.831221, 42.32853], [-87.834769, 42.301522], [-87.833468, 42.294892], [-87.832738, 42.291173], [-87.83253, 42.290109], [-87.831286, 42.283772], [-87.828569, 42.269922], [-87.828034, 42.268673], [-87.82772, 42.267937], [-87.826944, 42.266125], [-87.825313, 42.262313], [-87.812461, 42.232278], [-87.812422, 42.232185], [-87.812315, 42.231935], [-87.812267, 42.231823], [-87.808395, 42.224271], [-87.803873, 42.215449], [-87.800066, 42.208024], [-87.798589, 42.206007], [-87.7983, 42.205611], [-87.797497, 42.204514], [-87.797444, 42.204442], [-87.796937, 42.203748], [-87.796779, 42.203533], [-87.788313, 42.191966], [-87.787241, 42.190501], [-87.775295, 42.174179], [-87.759327, 42.152362], [-88.004466, 42.153645], [-88.121545, 42.154193], [-88.199584, 42.15426], [-88.19875, 42.25422], [-88.199521, 42.496013], [-88.049782, 42.495319]]]}, "bbox": [-88.199584, 42.152362, -87.759327, 42.496013]}, {"id": "17099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.166561, 41.585289], [-89.1672, 41.628707], [-88.938618, 41.628319], [-88.818462, 41.631352], [-88.60224, 41.631389], [-88.59596, 41.457034], [-88.58624, 41.108293], [-88.930881, 41.1059], [-88.93139, 40.92774], [-89.047718, 40.925749], [-89.047856, 41.104781], [-89.162238, 41.10408], [-89.163705, 41.310187], [-89.166561, 41.585289]]]}, "bbox": [-89.1672, 40.925749, -88.58624, 41.631389]}, {"id": "17103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.628371, 41.585014], [-89.631494, 41.584949], [-89.631368, 41.771297], [-89.62933, 41.901617], [-89.360682, 41.88807], [-88.941279, 41.891752], [-88.938618, 41.628319], [-89.1672, 41.628707], [-89.166561, 41.585289], [-89.628371, 41.585014]]]}, "bbox": [-89.631494, 41.584949, -88.938618, 41.901617]}, {"id": "17109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.789652, 40.63575], [-90.445506, 40.627843], [-90.450227, 40.276335], [-90.909756, 40.284394], [-90.904216, 40.639201], [-90.894339, 40.638683], [-90.789652, 40.63575]]]}, "bbox": [-90.909756, 40.276335, -90.445506, 40.639201]}, {"id": "17111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.304692, 42.494773], [-88.271691, 42.494818], [-88.2169, 42.495923], [-88.200172, 42.496016], [-88.199521, 42.496013], [-88.19875, 42.25422], [-88.199584, 42.15426], [-88.237402, 42.154281], [-88.238369, 42.154253], [-88.588657, 42.15359], [-88.705633, 42.153561], [-88.707378, 42.493587], [-88.506912, 42.494883], [-88.470597, 42.494672], [-88.461397, 42.494618], [-88.417396, 42.494618], [-88.304692, 42.494773]]]}, "bbox": [-88.707378, 42.153561, -88.19875, 42.496016]}, {"id": "17113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.814487, 40.75506], [-88.584272, 40.757608], [-88.574502, 40.61655], [-88.459475, 40.617345], [-88.459957, 40.39885], [-88.460418, 40.281935], [-88.4809, 40.281216], [-88.574885, 40.281501], [-88.689271, 40.282148], [-89.148764, 40.282038], [-89.26265, 40.280919], [-89.26374, 40.325344], [-89.26939, 40.594329], [-89.155175, 40.596417], [-89.145649, 40.662057], [-88.9847, 40.664954], [-88.986896, 40.752297], [-88.929331, 40.753337], [-88.814487, 40.75506]]]}, "bbox": [-89.26939, 40.280919, -88.459475, 40.757608]}, {"id": "17115", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.025691, 39.654637], [-89.139125, 39.655131], [-89.141817, 39.80091], [-89.217523, 39.813224], [-89.21747, 39.85296], [-89.217546, 39.872392], [-89.21781, 39.873818], [-89.217846, 39.91699], [-89.143457, 39.91792], [-89.144764, 40.048853], [-88.745164, 40.055191], [-88.745957, 39.858136], [-88.745671, 39.792146], [-88.812709, 39.740486], [-88.810575, 39.653222], [-89.02568, 39.654183], [-89.025691, 39.654637]]]}, "bbox": [-89.217846, 39.653222, -88.745164, 40.055191]}, {"id": "17119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.117707, 38.805748], [-90.114707, 38.815048], [-90.109107, 38.837448], [-90.109407, 38.843548], [-90.113327, 38.849306], [-90.207035, 38.898954], [-90.22585, 38.908923], [-90.250248, 38.919344], [-90.275932, 38.926453], [-90.273686, 38.999347], [-90.145991, 39.000046], [-89.81462, 38.998349], [-89.811673, 38.998462], [-89.707911, 38.999009], [-89.707266, 38.999012], [-89.705675, 38.999161], [-89.705349, 38.998963], [-89.70402, 38.99894], [-89.698555, 38.998979], [-89.653446, 38.999191], [-89.652405, 38.999581], [-89.648846, 38.999167], [-89.639265, 38.999129], [-89.636874, 38.874278], [-89.599593, 38.87453], [-89.597321, 38.743236], [-89.595103, 38.655948], [-89.707024, 38.655152], [-90.037105, 38.658449], [-90.17772, 38.660536], [-90.181399, 38.660378], [-90.18641, 38.67475], [-90.19521, 38.68755], [-90.20221, 38.69345], [-90.20921, 38.70275], [-90.21201, 38.71175], [-90.20991, 38.72605], [-90.171309, 38.766549], [-90.165082, 38.770618], [-90.123107, 38.798048], [-90.117707, 38.805748]]]}, "bbox": [-90.275932, 38.655152, -89.595103, 39.000046]}, {"id": "17121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.144388, 38.473878], [-89.144258, 38.474861], [-89.143898, 38.503088], [-89.138393, 38.736331], [-89.138138, 38.824244], [-88.695165, 38.826299], [-88.698457, 38.606304], [-88.698961, 38.474914], [-89.144388, 38.473878]]]}, "bbox": [-89.144388, 38.473878, -88.695165, 38.826299]}, {"id": "17127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.564152, 37.07844], [-88.576718, 37.085852], [-88.589207, 37.099655], [-88.625889, 37.119458], [-88.809206, 37.189235], [-88.916934, 37.224291], [-88.928021, 37.226281], [-88.929129, 37.302647], [-88.904003, 37.335629], [-88.71065, 37.33709], [-88.490336, 37.159358], [-88.490297, 37.066669], [-88.514356, 37.065231], [-88.531576, 37.067192], [-88.545403, 37.070003], [-88.560032, 37.07601], [-88.564152, 37.07844]]]}, "bbox": [-88.929129, 37.065231, -88.490297, 37.33709]}, {"id": "17133", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.203847, 38.088753], [-90.243116, 38.112669], [-90.254112, 38.12199], [-90.334258, 38.189932], [-90.353902, 38.213855], [-90.363926, 38.236355], [-90.373929, 38.281853], [-90.372519, 38.323354], [-90.370819, 38.333554], [-90.350918, 38.375053], [-90.346118, 38.381853], [-90.340297, 38.386998], [-90.295316, 38.426753], [-90.285215, 38.443453], [-90.279215, 38.472453], [-90.263064, 38.52022], [-90.036018, 38.30885], [-89.913226, 38.307829], [-89.899061, 38.220755], [-90.036385, 38.223125], [-90.035999, 38.13563], [-90.203847, 38.088753]]]}, "bbox": [-90.373929, 38.088753, -89.899061, 38.52022]}, {"id": "17137", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.571754, 39.839326], [-90.582435, 39.854574], [-90.583534, 39.87675], [-89.994405, 39.87286], [-89.984745, 39.718079], [-89.926037, 39.522104], [-90.15375, 39.520315], [-90.301801, 39.520192], [-90.300666, 39.636541], [-90.372969, 39.665781], [-90.371253, 39.753388], [-90.599105, 39.79006], [-90.566976, 39.826883], [-90.571754, 39.839326]]]}, "bbox": [-90.599105, 39.520192, -89.926037, 39.87675]}, {"id": "17143", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.986068, 40.712257], [-89.985333, 40.800032], [-89.985226, 40.848699], [-89.985376, 40.850576], [-89.985429, 40.887645], [-89.985479, 40.974495], [-89.982549, 40.974707], [-89.638727, 40.973707], [-89.447693, 40.973246], [-89.47233, 40.921206], [-89.552766, 40.810469], [-89.554994, 40.747637], [-89.658003, 40.567438], [-89.872463, 40.513127], [-89.873506, 40.624588], [-89.989018, 40.625835], [-89.986068, 40.712257]]]}, "bbox": [-89.989018, 40.513127, -89.447693, 40.974707]}, {"id": "17159", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.953898, 38.570094], [-88.147814, 38.569086], [-88.148044, 38.597988], [-88.253851, 38.599502], [-88.258608, 38.847521], [-87.945923, 38.850108], [-87.908113, 38.850107], [-87.912286, 38.570104], [-87.912351, 38.569909], [-87.953014, 38.57014], [-87.953898, 38.570094]]]}, "bbox": [-88.258608, 38.569086, -87.908113, 38.850108]}, {"id": "17163", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.18451, 38.611551], [-90.182625, 38.617989], [-90.17801, 38.63375], [-90.17771, 38.64275], [-90.18111, 38.65955], [-90.181399, 38.660378], [-90.17772, 38.660536], [-90.037105, 38.658449], [-89.707024, 38.655152], [-89.704417, 38.415667], [-89.703256, 38.219404], [-89.899061, 38.220755], [-89.913226, 38.307829], [-90.036018, 38.30885], [-90.263064, 38.52022], [-90.260314, 38.528352], [-90.257773, 38.532008], [-90.248913, 38.544752], [-90.224512, 38.574651], [-90.202511, 38.588651], [-90.196011, 38.594451], [-90.18451, 38.611551]]]}, "bbox": [-90.263064, 38.219404, -89.703256, 38.660536]}, {"id": "17167", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.701645, 39.523369], [-89.795316, 39.522939], [-89.800366, 39.523025], [-89.804458, 39.522876], [-89.813147, 39.522838], [-89.926037, 39.522104], [-89.984745, 39.718079], [-89.994405, 39.87286], [-89.994506, 39.901925], [-89.701864, 39.916787], [-89.698259, 39.975309], [-89.578289, 39.976127], [-89.483419, 39.93314], [-89.217846, 39.91699], [-89.21781, 39.873818], [-89.217546, 39.872392], [-89.21747, 39.85296], [-89.217523, 39.813224], [-89.233523, 39.813159], [-89.240092, 39.823137], [-89.248609, 39.825723], [-89.252325, 39.820416], [-89.392858, 39.74385], [-89.425051, 39.683696], [-89.535028, 39.641138], [-89.533655, 39.524592], [-89.701645, 39.523369]]]}, "bbox": [-89.994506, 39.522104, -89.21747, 39.976127]}, {"id": "17177", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.837587, 42.505543], [-89.801897, 42.505444], [-89.799704, 42.505421], [-89.793957, 42.505466], [-89.780302, 42.505349], [-89.769643, 42.505322], [-89.742395, 42.505382], [-89.693487, 42.505099], [-89.690088, 42.505191], [-89.667596, 42.50496], [-89.650324, 42.504613], [-89.644176, 42.50452], [-89.61341, 42.503942], [-89.603523, 42.503557], [-89.600001, 42.503672], [-89.594779, 42.503468], [-89.564407, 42.502628], [-89.522542, 42.501889], [-89.493216, 42.501514], [-89.492612, 42.501514], [-89.4843, 42.501426], [-89.425162, 42.500726], [-89.423926, 42.500818], [-89.422567, 42.50068], [-89.420991, 42.500589], [-89.401432, 42.500433], [-89.401416, 42.500433], [-89.396192, 42.201916], [-89.688486, 42.199112], [-89.919657, 42.196305], [-89.926224, 42.505788], [-89.837587, 42.505543]]]}, "bbox": [-89.926224, 42.196305, -89.396192, 42.505788]}, {"id": "17179", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.26939, 40.594329], [-89.26374, 40.325344], [-89.602979, 40.320129], [-89.714927, 40.319218], [-89.717104, 40.435655], [-89.92468, 40.435921], [-89.872463, 40.513127], [-89.658003, 40.567438], [-89.554994, 40.747637], [-89.330167, 40.748257], [-89.327343, 40.615566], [-89.26939, 40.594329]]]}, "bbox": [-89.92468, 40.319218, -89.26374, 40.748257]}, {"id": "17183", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.526379, 40.491237], [-87.526502, 40.477158], [-87.526511, 40.476879], [-87.526549, 40.475659], [-87.526809, 40.46217], [-87.530054, 40.250671], [-87.529992, 40.250036], [-87.530828, 40.191812], [-87.531133, 40.17003], [-87.531438, 40.148123], [-87.531439, 40.148027], [-87.531759, 40.144273], [-87.531561, 40.133005], [-87.532308, 40.011587], [-87.532308, 40.011492], [-87.532287, 40.000037], [-87.532331, 39.997776], [-87.532542, 39.987462], [-87.532683, 39.977691], [-87.53279, 39.97501], [-87.532776, 39.971077], [-87.533227, 39.883127], [-87.533227, 39.883], [-87.937645, 39.879803], [-87.932858, 40.399401], [-87.931758, 40.400187], [-87.935309, 40.485923], [-87.526379, 40.491237]]]}, "bbox": [-87.937645, 39.879803, -87.526379, 40.491237]}, {"id": "17195", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.20844, 41.797176], [-90.187969, 41.803163], [-90.181973, 41.80707], [-90.152104, 41.928947], [-89.685366, 41.93034], [-89.628907, 41.930044], [-89.62933, 41.901617], [-89.631368, 41.771297], [-89.631494, 41.584949], [-89.862351, 41.584005], [-90.185609, 41.584653], [-90.181412, 41.590993], [-90.170427, 41.591761], [-90.164842, 41.597322], [-90.165057, 41.602933], [-90.229749, 41.675375], [-90.242747, 41.783767], [-90.222263, 41.793133], [-90.20844, 41.797176]]]}, "bbox": [-90.242747, 41.584005, -89.628907, 41.93034]}, {"id": "17197", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.525669, 41.470283], [-87.525671, 41.470115], [-87.525623, 41.453619], [-87.526768, 41.298177], [-87.526768, 41.298052], [-88.013919, 41.292447], [-88.011812, 41.205604], [-88.244155, 41.201546], [-88.252098, 41.463096], [-88.257274, 41.593469], [-88.261468, 41.724529], [-88.030561, 41.72893], [-88.02916, 41.68553], [-88.027688, 41.641506], [-87.91193, 41.643933], [-87.909453, 41.556732], [-87.792793, 41.55854], [-87.792292, 41.538662], [-87.79056, 41.539916], [-87.790408, 41.528134], [-87.790303, 41.469846], [-87.717554, 41.469733], [-87.712752, 41.46962], [-87.653236, 41.469754], [-87.525669, 41.470283]]]}, "bbox": [-88.261468, 41.201546, -87.525623, 41.72893]}, {"id": "17199", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.708546, 37.599277], [-88.851487, 37.597236], [-89.041401, 37.596576], [-89.153668, 37.600469], [-89.151176, 37.861999], [-88.70676, 37.863338], [-88.708546, 37.599277]]]}, "bbox": [-89.153668, 37.596576, -88.70676, 37.863338]}, {"id": "17201", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.013667, 42.496087], [-88.992977, 42.496026], [-88.992659, 42.496025], [-88.943264, 42.495114], [-88.940391, 42.495046], [-88.940388, 42.495046], [-88.939732, 42.15232], [-89.172799, 42.150297], [-89.173, 42.204241], [-89.396192, 42.201916], [-89.401416, 42.500433], [-89.366031, 42.500274], [-89.361561, 42.500012], [-89.290896, 42.498853], [-89.250759, 42.497994], [-89.246972, 42.49813], [-89.228279, 42.498047], [-89.22627, 42.497957], [-89.166728, 42.497256], [-89.164905, 42.497347], [-89.125111, 42.496957], [-89.120365, 42.496992], [-89.116949, 42.49691], [-89.099012, 42.496499], [-89.071141, 42.496208], [-89.042898, 42.496255], [-89.013804, 42.496097], [-89.013667, 42.496087]]]}, "bbox": [-89.401416, 42.150297, -88.939732, 42.500433]}, {"id": "18003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.803582, 41.271273], [-84.803581, 41.271079], [-84.80358, 41.270942], [-84.803492, 41.252562], [-84.803492, 41.252531], [-84.803472, 41.173889], [-84.803594, 41.173203], [-84.803413, 41.164649], [-84.803378, 41.096867], [-84.803374, 41.089302], [-84.803313, 40.989394], [-84.803313, 40.989209], [-84.802936, 40.922568], [-85.073861, 40.917823], [-85.167063, 40.916585], [-85.33603, 40.917082], [-85.335374, 41.002047], [-85.335643, 41.00525], [-85.338552, 41.17912], [-85.307781, 41.264158], [-85.192094, 41.264209], [-84.806471, 41.270904], [-84.803582, 41.271273]]]}, "bbox": [-85.338552, 40.916585, -84.802936, 41.271273]}, {"id": "18005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.952005, 39.347373], [-85.85746, 39.349312], [-85.854064, 39.349498], [-85.684515, 39.350049], [-85.687295, 39.190076], [-85.687161, 39.189026], [-85.687294, 39.185605], [-85.686783, 39.130859], [-85.799834, 39.128897], [-85.798804, 39.068536], [-85.860573, 39.04091], [-86.080272, 39.05027], [-86.080294, 39.152543], [-86.085601, 39.344189], [-86.081531, 39.344446], [-85.952005, 39.347373]]]}, "bbox": [-86.085601, 39.04091, -85.684515, 39.350049]}, {"id": "18011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.242365, 40.180778], [-86.239739, 39.926055], [-86.24109, 39.926092], [-86.263305, 39.924889], [-86.326293, 39.924029], [-86.695071, 39.92277], [-86.695804, 40.178657], [-86.39885, 40.17719], [-86.242365, 40.180778]]]}, "bbox": [-86.695804, 39.92277, -86.239739, 40.180778]}, {"id": "18017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.165024, 40.562649], [-86.184044, 40.562459], [-86.374417, 40.561361], [-86.373521, 40.69246], [-86.525164, 40.692419], [-86.581739, 40.735765], [-86.581532, 40.910925], [-86.468509, 40.909889], [-86.169012, 40.909836], [-86.165024, 40.562649]]]}, "bbox": [-86.581739, 40.561361, -86.165024, 40.910925]}, {"id": "18019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.638044, 38.38027], [-85.638777, 38.361443], [-85.653641, 38.327108], [-85.675017, 38.301317], [-85.683561, 38.295469], [-85.744862, 38.26717], [-85.750962, 38.26787], [-85.761062, 38.27257], [-85.766563, 38.27767], [-85.765963, 38.280469], [-85.773363, 38.286169], [-85.780963, 38.288469], [-85.791563, 38.288569], [-85.791575, 38.288566], [-85.760844, 38.350218], [-85.807704, 38.404443], [-85.99462, 38.418345], [-85.993317, 38.48854], [-85.884776, 38.503469], [-85.847893, 38.561269], [-85.793584, 38.604814], [-85.56998, 38.606155], [-85.427467, 38.586735], [-85.415821, 38.563558], [-85.4156, 38.546341], [-85.417322, 38.540763], [-85.423077, 38.531581], [-85.432928, 38.524072], [-85.433136, 38.523914], [-85.462518, 38.512602], [-85.607629, 38.439295], [-85.620521, 38.423105], [-85.632937, 38.395666], [-85.638041, 38.380338], [-85.638044, 38.38027]]]}, "bbox": [-85.99462, 38.26717, -85.4156, 38.606155]}, {"id": "18035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.44433, 40.37914], [-85.219901, 40.379034], [-85.220028, 40.375043], [-85.218758, 40.306706], [-85.214386, 40.076889], [-85.216033, 40.076828], [-85.576197, 40.077143], [-85.578589, 40.379524], [-85.552303, 40.378666], [-85.44433, 40.37914]]]}, "bbox": [-85.578589, 40.076828, -85.214386, 40.379524]}, {"id": "18037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.679511, 38.263086], [-86.792152, 38.2491], [-86.791497, 38.20513], [-87.01749, 38.20358], [-87.073141, 38.203821], [-87.073067, 38.232596], [-87.072369, 38.5147], [-86.924186, 38.505358], [-86.682359, 38.526378], [-86.681424, 38.394767], [-86.679511, 38.263086]]]}, "bbox": [-87.073141, 38.20358, -86.679511, 38.526378]}, {"id": "18039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.791335, 41.759051], [-85.775039, 41.759147], [-85.750469, 41.75909], [-85.749992, 41.759091], [-85.724534, 41.759085], [-85.65975, 41.759101], [-85.654747, 41.523347], [-85.654274, 41.515695], [-85.653507, 41.436856], [-86.05923, 41.435812], [-86.059237, 41.442753], [-86.059052, 41.445236], [-86.059451, 41.479154], [-86.060652, 41.6084], [-86.060516, 41.608959], [-86.062572, 41.760283], [-86.003683, 41.760007], [-85.991302, 41.759949], [-85.97498, 41.759849], [-85.974901, 41.759849], [-85.888825, 41.759422], [-85.874997, 41.759341], [-85.872041, 41.759365], [-85.791363, 41.759051], [-85.791335, 41.759051]]]}, "bbox": [-86.062572, 41.435812, -85.653507, 41.760283]}, {"id": "18041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.036087, 39.526213], [-85.29811, 39.525476], [-85.301584, 39.787579], [-85.221118, 39.788449], [-85.185089, 39.715515], [-85.034575, 39.714764], [-85.036087, 39.526213]]]}, "bbox": [-85.301584, 39.525476, -85.034575, 39.788449]}, {"id": "18043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.816164, 38.282969], [-85.823764, 38.280569], [-85.829364, 38.276769], [-85.897664, 38.184269], [-85.89955, 38.180343], [-86.032559, 38.33066], [-86.032817, 38.417898], [-86.014446, 38.418683], [-86.014139, 38.419079], [-85.99462, 38.418345], [-85.807704, 38.404443], [-85.760844, 38.350218], [-85.791575, 38.288566], [-85.816164, 38.282969]]]}, "bbox": [-86.032817, 38.180343, -85.760844, 38.419079]}, {"id": "18053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.863641, 40.565525], [-85.864791, 40.651693], [-85.857147, 40.651364], [-85.638587, 40.653129], [-85.448825, 40.653607], [-85.448993, 40.651271], [-85.447014, 40.566929], [-85.44433, 40.37914], [-85.552303, 40.378666], [-85.578589, 40.379524], [-85.587859, 40.379757], [-85.862296, 40.378367], [-85.862117, 40.406889], [-85.863641, 40.565525]]]}, "bbox": [-85.864791, 40.378367, -85.44433, 40.653607]}, {"id": "18057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.172237, 39.926895], [-86.239739, 39.926055], [-86.242365, 40.180778], [-86.242743, 40.215834], [-85.861903, 40.218936], [-85.862489, 39.943618], [-85.862395, 39.928943], [-85.937587, 39.927137], [-86.172237, 39.926895]]]}, "bbox": [-86.242743, 39.926055, -85.861903, 40.218936]}, {"id": "18059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.938077, 39.887183], [-85.938084, 39.923196], [-85.937587, 39.927137], [-85.862395, 39.928943], [-85.862489, 39.943618], [-85.576192, 39.945756], [-85.596916, 39.786519], [-85.633491, 39.786177], [-85.633228, 39.698462], [-85.951721, 39.697136], [-85.951699, 39.726419], [-85.938077, 39.887183]]]}, "bbox": [-85.951721, 39.697136, -85.576192, 39.945756]}, {"id": "18063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.326576, 39.682896], [-86.326341, 39.632177], [-86.465605, 39.600769], [-86.65665, 39.601395], [-86.687406, 39.630437], [-86.695127, 39.864845], [-86.695071, 39.92277], [-86.326293, 39.924029], [-86.326576, 39.682896]]]}, "bbox": [-86.695127, 39.600769, -86.326293, 39.924029]}, {"id": "18067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.184044, 40.562459], [-86.165024, 40.562649], [-86.127424, 40.563098], [-85.863641, 40.565525], [-85.862117, 40.406889], [-86.242812, 40.402914], [-86.242992, 40.373661], [-86.375762, 40.431851], [-86.374417, 40.561361], [-86.184044, 40.562459]]]}, "bbox": [-86.375762, 40.373661, -85.862117, 40.565525]}, {"id": "18081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.952523, 39.60915], [-85.9508, 39.49522], [-85.95122, 39.436053], [-85.952545, 39.435921], [-85.95322, 39.38352], [-85.952005, 39.347373], [-86.081531, 39.344446], [-86.085601, 39.344189], [-86.251684, 39.341672], [-86.25131, 39.430595], [-86.249885, 39.633645], [-86.242924, 39.633744], [-86.044705, 39.637219], [-85.95208, 39.638345], [-85.952523, 39.60915]]]}, "bbox": [-86.251684, 39.341672, -85.9508, 39.638345]}, {"id": "18089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.526768, 41.298177], [-87.525623, 41.453619], [-87.525671, 41.470115], [-87.525669, 41.470283], [-87.524641, 41.563335], [-87.524642, 41.622535], [-87.524742, 41.632435], [-87.524642, 41.634935], [-87.524844, 41.691635], [-87.524944, 41.702635], [-87.524044, 41.708335], [-87.520544, 41.709935], [-87.515243, 41.704235], [-87.511043, 41.696535], [-87.505343, 41.691535], [-87.470742, 41.672835], [-87.463142, 41.675535], [-87.453041, 41.673035], [-87.446113, 41.66934], [-87.441987, 41.671905], [-87.43853, 41.670679], [-87.437191, 41.669006], [-87.434849, 41.666887], [-87.432953, 41.665102], [-87.432396, 41.66053], [-87.438941, 41.654335], [-87.42984, 41.646035], [-87.42344, 41.642835], [-87.394539, 41.637235], [-87.365439, 41.629536], [-87.324338, 41.623036], [-87.287637, 41.622236], [-87.278437, 41.619736], [-87.261536, 41.620336], [-87.222644, 41.624161], [-87.218862, 41.242027], [-87.226372, 41.235507], [-87.275882, 41.218595], [-87.414421, 41.162248], [-87.52657, 41.166097], [-87.526768, 41.298052], [-87.526768, 41.298177]]]}, "bbox": [-87.526768, 41.162248, -87.218862, 41.709935]}, {"id": "18091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.824828, 41.76024], [-86.823628, 41.76024], [-86.804427, 41.76024], [-86.801578, 41.76024], [-86.800707, 41.76024], [-86.800611, 41.760251], [-86.748096, 41.759967], [-86.746521, 41.759982], [-86.641186, 41.759633], [-86.640044, 41.759671], [-86.524223, 41.759456], [-86.526682, 41.65044], [-86.486433, 41.570545], [-86.524711, 41.432886], [-86.70063, 41.401982], [-86.783473, 41.285465], [-86.930079, 41.236798], [-86.930056, 41.449692], [-86.929364, 41.463209], [-86.932747, 41.71104], [-86.90913, 41.726938], [-86.875429, 41.737939], [-86.824828, 41.76024]]]}, "bbox": [-86.932747, 41.236798, -86.486433, 41.760251]}, {"id": "18095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.576192, 39.945756], [-85.862489, 39.943618], [-85.861903, 40.218936], [-85.86116, 40.22531], [-85.862296, 40.378367], [-85.587859, 40.379757], [-85.578589, 40.379524], [-85.576197, 40.077143], [-85.576192, 39.945756]]]}, "bbox": [-85.862489, 39.943618, -85.576192, 40.379757]}, {"id": "18097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.937587, 39.927137], [-85.938084, 39.923196], [-85.938077, 39.887183], [-85.951699, 39.726419], [-85.951721, 39.697136], [-85.95208, 39.638345], [-86.044705, 39.637219], [-86.242924, 39.633744], [-86.249885, 39.633645], [-86.268501, 39.633047], [-86.269239, 39.633267], [-86.326341, 39.632177], [-86.326576, 39.682896], [-86.326293, 39.924029], [-86.263305, 39.924889], [-86.24109, 39.926092], [-86.239739, 39.926055], [-86.172237, 39.926895], [-85.937587, 39.927137]]]}, "bbox": [-86.326576, 39.632177, -85.937587, 39.927137]}, {"id": "18105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.573548, 38.992147], [-86.682277, 38.992404], [-86.683002, 39.165746], [-86.68561, 39.336043], [-86.630818, 39.346948], [-86.630844, 39.340755], [-86.57428, 39.339681], [-86.381395, 39.339752], [-86.370066, 39.048375], [-86.318133, 39.04881], [-86.317799, 39.002733], [-86.31738, 39.00005], [-86.317474, 38.99087], [-86.573548, 38.992147]]]}, "bbox": [-86.68561, 38.99087, -86.31738, 39.346948]}, {"id": "18127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.932747, 41.71104], [-86.929364, 41.463209], [-86.930056, 41.449692], [-86.930079, 41.236798], [-86.968125, 41.219658], [-87.131653, 41.286155], [-87.218862, 41.242027], [-87.222644, 41.624161], [-87.22066, 41.624356], [-87.187651, 41.629653], [-87.160625, 41.637266], [-87.160784, 41.645385], [-87.125835, 41.650302], [-87.120322, 41.645701], [-87.066033, 41.661845], [-87.027888, 41.674661], [-87.00964, 41.68152], [-86.93483, 41.709638], [-86.932747, 41.71104]]]}, "bbox": [-87.222644, 41.219658, -86.929364, 41.71104]}, {"id": "18137", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.29654, 39.268291], [-85.217883, 39.308474], [-85.065574, 39.307232], [-85.132508, 38.948055], [-85.135832, 38.929578], [-85.202849, 38.928523], [-85.203166, 38.913803], [-85.444897, 38.912998], [-85.440054, 39.195617], [-85.43791, 39.197132], [-85.29654, 39.268291]]]}, "bbox": [-85.444897, 38.912998, -85.065574, 39.308474]}, {"id": "18141", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.524223, 41.759456], [-86.519318, 41.759447], [-86.501773, 41.759553], [-86.265496, 41.760207], [-86.226097, 41.760016], [-86.22607, 41.760016], [-86.21759, 41.760016], [-86.127844, 41.760592], [-86.12546, 41.76056], [-86.12506, 41.760576], [-86.062572, 41.760283], [-86.060516, 41.608959], [-86.060652, 41.6084], [-86.059451, 41.479154], [-86.467108, 41.476459], [-86.466603, 41.432968], [-86.488895, 41.43302], [-86.490753, 41.43291], [-86.519007, 41.432872], [-86.519751, 41.432792], [-86.524711, 41.432886], [-86.486433, 41.570545], [-86.526682, 41.65044], [-86.524223, 41.759456]]]}, "bbox": [-86.526682, 41.432792, -86.059451, 41.760592]}, {"id": "18153", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.52791, 38.908209], [-87.518826, 38.923205], [-87.512187, 38.954417], [-87.572588, 39.057286], [-87.614881, 39.102655], [-87.658746, 39.135997], [-87.651719, 39.150602], [-87.642174, 39.157097], [-87.628727, 39.157427], [-87.605173, 39.185897], [-87.587507, 39.249282], [-87.593486, 39.247452], [-87.604076, 39.259459], [-87.240379, 39.259064], [-87.240737, 39.171773], [-87.241027, 38.907874], [-87.528108, 38.908027], [-87.52791, 38.908209]]]}, "bbox": [-87.658746, 38.907874, -87.240379, 39.259459]}, {"id": "18157", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.093676, 40.475745], [-87.095357, 40.562895], [-86.771293, 40.562082], [-86.695353, 40.561874], [-86.694665, 40.432156], [-86.695637, 40.214367], [-87.092563, 40.214806], [-87.092148, 40.366612], [-87.09278, 40.475075], [-87.093676, 40.475745]]]}, "bbox": [-87.095357, 40.214367, -86.694665, 40.562895]}, {"id": "18163", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.451185, 37.941034], [-87.511499, 37.906426], [-87.550333, 37.92489], [-87.559342, 37.931146], [-87.57203, 37.947466], [-87.574287, 37.954842], [-87.573415, 37.962642], [-87.574715, 37.967742], [-87.581115, 37.973442], [-87.585916, 37.975442], [-87.592916, 37.975842], [-87.601416, 37.972542], [-87.62896, 37.926714], [-87.626256, 37.916138], [-87.620272, 37.906922], [-87.597118, 37.892394], [-87.591582, 37.887194], [-87.588426, 37.868791], [-87.588729, 37.860984], [-87.591504, 37.856642], [-87.606599, 37.838669], [-87.615399, 37.831974], [-87.645858, 37.825899], [-87.670889, 37.828429], [-87.679188, 37.836321], [-87.6819, 37.84641], [-87.681633, 37.855917], [-87.662865, 37.885578], [-87.666481, 37.895786], [-87.67573, 37.90193], [-87.684018, 37.903498], [-87.700421, 37.900858], [-87.688374, 38.168419], [-87.467284, 38.165403], [-87.451185, 37.941034]]]}, "bbox": [-87.700421, 37.825899, -87.451185, 38.168419]}, {"id": "18167", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.240379, 39.259064], [-87.604076, 39.259459], [-87.605543, 39.261122], [-87.61005, 39.282232], [-87.604043, 39.313526], [-87.589084, 39.333831], [-87.584852, 39.337329], [-87.544013, 39.352907], [-87.537271, 39.352089], [-87.531646, 39.347888], [-87.531355, 39.436656], [-87.531355, 39.437732], [-87.531489, 39.449474], [-87.531608, 39.466225], [-87.531624, 39.469378], [-87.531663, 39.47711], [-87.531663, 39.47712], [-87.531627, 39.491698], [-87.531692, 39.495516], [-87.531965, 39.526937], [-87.531939, 39.545853], [-87.532008, 39.564013], [-87.532196, 39.607306], [-87.382418, 39.607937], [-87.199012, 39.607137], [-87.238964, 39.52062], [-87.240379, 39.259064]]]}, "bbox": [-87.61005, 39.259064, -87.199012, 39.607937]}, {"id": "18173", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.269561, 37.877155], [-87.302324, 37.898445], [-87.380247, 37.935596], [-87.402632, 37.942267], [-87.418585, 37.944763], [-87.436859, 37.944192], [-87.450458, 37.941451], [-87.451185, 37.941034], [-87.467284, 38.165403], [-87.466744, 38.201286], [-87.31703, 38.201753], [-87.316893, 38.246077], [-87.073067, 38.232596], [-87.073141, 38.203821], [-87.01749, 38.20358], [-87.017453, 38.118301], [-87.072332, 38.11828], [-87.268003, 37.924766], [-87.269561, 37.877155]]]}, "bbox": [-87.467284, 37.877155, -87.017453, 38.246077]}, {"id": "18177", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.814189, 39.785569], [-84.814129, 39.72662], [-85.034575, 39.714764], [-85.185089, 39.715515], [-85.221118, 39.788449], [-85.201473, 40.004521], [-84.81067, 40.005074], [-84.812193, 39.92734], [-84.812357, 39.921764], [-84.812411, 39.916916], [-84.812411, 39.916915], [-84.812698, 39.891585], [-84.812787, 39.89083], [-84.81305, 39.872958], [-84.813464, 39.853261], [-84.813549, 39.850773], [-84.813674, 39.843173], [-84.813703, 39.843059], [-84.813793, 39.826771], [-84.813852, 39.824621], [-84.814179, 39.814212], [-84.81412, 39.811398], [-84.814209, 39.799755], [-84.814179, 39.786853], [-84.814189, 39.785569]]]}, "bbox": [-85.221118, 39.714764, -84.81067, 40.005074]}, {"id": "18179", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.33603, 40.917082], [-85.167063, 40.916585], [-85.073861, 40.917823], [-85.068479, 40.56824], [-85.201146, 40.567242], [-85.447014, 40.566929], [-85.448993, 40.651271], [-85.448825, 40.653607], [-85.334667, 40.654413], [-85.33603, 40.917082]]]}, "bbox": [-85.448993, 40.566929, -85.068479, 40.917823]}, {"id": "19013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.064766, 42.297259], [-92.298792, 42.297527], [-92.53351, 42.297001], [-92.5543, 42.555854], [-92.554561, 42.55935], [-92.554492, 42.642314], [-92.081661, 42.642056], [-92.064766, 42.297259]]]}, "bbox": [-92.554561, 42.297001, -92.064766, 42.642314]}, {"id": "19027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.858412, 42.209692], [-94.628806, 42.209396], [-94.628724, 41.862763], [-94.667977, 41.862682], [-94.671695, 41.862828], [-94.672368, 41.86289], [-94.673119, 41.86265], [-94.674259, 41.862657], [-94.67542, 41.862895], [-94.676942, 41.862994], [-94.744876, 41.862394], [-95.092861, 41.863374], [-95.090851, 42.210405], [-94.858412, 42.209692]]]}, "bbox": [-95.092861, 41.862394, -94.628724, 42.210405]}, {"id": "19033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.024143, 43.255538], [-93.024092, 43.212812], [-93.025144, 42.907549], [-93.498617, 42.908512], [-93.497635, 43.255468], [-93.024143, 43.255538]]]}, "bbox": [-93.498617, 42.907549, -93.024092, 43.255538]}, {"id": "19041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.388078, 43.255221], [-94.913723, 43.255054], [-94.91389, 42.9097], [-95.388182, 42.909897], [-95.388078, 43.255221]]]}, "bbox": [-95.388182, 42.9097, -94.913723, 43.255221]}, {"id": "19045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.152104, 41.928947], [-90.181973, 41.80707], [-90.187969, 41.803163], [-90.20844, 41.797176], [-90.222263, 41.793133], [-90.242747, 41.783767], [-90.278633, 41.767358], [-90.302782, 41.750031], [-90.309826, 41.743321], [-90.31522, 41.734264], [-90.317041, 41.729104], [-90.473617, 41.773465], [-90.898373, 41.771392], [-90.898484, 41.946245], [-90.898373, 42.033548], [-90.154221, 42.033073], [-90.150916, 42.02944], [-90.141167, 42.008931], [-90.140613, 41.995999], [-90.1516, 41.931002], [-90.152104, 41.928947]]]}, "bbox": [-90.898484, 41.729104, -90.140613, 42.033548]}, {"id": "19049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.28034, 41.862999], [-94.164138, 41.863244], [-93.815527, 41.863419], [-93.814282, 41.600448], [-93.790612, 41.511916], [-93.896807, 41.503098], [-94.241593, 41.503679], [-94.280057, 41.601312], [-94.28034, 41.862999]]]}, "bbox": [-94.28034, 41.503098, -93.790612, 41.863419]}, {"id": "19057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.37071, 41.074112], [-90.949383, 41.07271], [-90.948523, 41.070248], [-90.945549, 41.06173], [-90.942253, 41.034702], [-90.952233, 40.954047], [-90.962916, 40.924957], [-90.968995, 40.919127], [-90.9985, 40.90812], [-91.009536, 40.900565], [-91.092993, 40.821079], [-91.097553, 40.808433], [-91.097031, 40.802471], [-91.094728, 40.797833], [-91.11194, 40.697018], [-91.112258, 40.696218], [-91.182551, 40.7081], [-91.409324, 40.812682], [-91.372095, 40.812631], [-91.37071, 41.074112]]]}, "bbox": [-91.409324, 40.696218, -90.942253, 41.074112]}, {"id": "19061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.896961, 42.674407], [-90.84391, 42.663071], [-90.769495, 42.651443], [-90.720209, 42.640758], [-90.709204, 42.636078], [-90.702671, 42.630756], [-90.645627, 42.5441], [-90.636727, 42.518702], [-90.636927, 42.513202], [-90.640927, 42.508302], [-90.655927, 42.491703], [-90.656527, 42.489203], [-90.656327, 42.483603], [-90.654027, 42.478503], [-90.646727, 42.471904], [-90.624328, 42.458904], [-90.559451, 42.430695], [-90.477279, 42.383794], [-90.474834, 42.381473], [-90.665029, 42.382155], [-90.665551, 42.294699], [-90.89802, 42.295236], [-91.130079, 42.295761], [-91.132766, 42.645844], [-90.897415, 42.645714], [-90.896961, 42.674407]]]}, "bbox": [-91.132766, 42.294699, -90.474834, 42.674407]}, {"id": "19103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.829231, 41.511457], [-91.831379, 41.861851], [-91.366079, 41.860068], [-91.366448, 41.598373], [-91.368521, 41.423178], [-91.483995, 41.423848], [-91.52248, 41.511035], [-91.829231, 41.511457]]]}, "bbox": [-91.831379, 41.423178, -91.366079, 41.861851]}, {"id": "19113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.365789, 41.94741], [-91.366079, 41.860068], [-91.831379, 41.861851], [-91.831089, 42.299063], [-91.596981, 42.296408], [-91.363263, 42.296445], [-91.365789, 41.94741]]]}, "bbox": [-91.831379, 41.860068, -91.363263, 42.299063]}, {"id": "19139", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.366448, 41.598373], [-90.899853, 41.597133], [-90.783812, 41.596531], [-90.786282, 41.452888], [-90.847458, 41.455019], [-90.989976, 41.431962], [-91.027787, 41.423603], [-91.039872, 41.418523], [-91.047819, 41.4109], [-91.078682, 41.336089], [-91.079657, 41.333727], [-91.369332, 41.336063], [-91.368521, 41.423178], [-91.366448, 41.598373]]]}, "bbox": [-91.369332, 41.333727, -90.783812, 41.598373]}, {"id": "19153", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.328614, 41.507824], [-93.328486, 41.49134], [-93.328407, 41.490921], [-93.41226, 41.505549], [-93.790612, 41.511916], [-93.814282, 41.600448], [-93.815527, 41.863419], [-93.698032, 41.86337], [-93.347933, 41.863104], [-93.348681, 41.600999], [-93.328614, 41.507824]]]}, "bbox": [-93.815527, 41.490921, -93.328407, 41.863419]}, {"id": "19155", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.853396, 41.16028], [-95.852788, 41.165398], [-95.91459, 41.185098], [-95.92319, 41.190998], [-95.923219, 41.191046], [-95.92599, 41.195698], [-95.927491, 41.202198], [-95.924891, 41.211198], [-95.90249, 41.273398], [-95.91379, 41.320197], [-95.92569, 41.322197], [-95.939291, 41.328897], [-95.953091, 41.339896], [-95.956691, 41.345496], [-95.956791, 41.349196], [-95.93831, 41.392162], [-95.937346, 41.394403], [-95.930705, 41.433894], [-95.981319, 41.506837], [-95.497997, 41.506074], [-95.154722, 41.505211], [-95.155851, 41.159236], [-95.384349, 41.160011], [-95.853396, 41.16028]]]}, "bbox": [-95.981319, 41.159236, -95.154722, 41.506837]}, {"id": "19163", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.898373, 41.771392], [-90.473617, 41.773465], [-90.317041, 41.729104], [-90.334525, 41.679559], [-90.343162, 41.648141], [-90.34165, 41.621484], [-90.39793, 41.572233], [-90.461432, 41.523533], [-90.474332, 41.519733], [-90.499475, 41.518055], [-90.605937, 41.494232], [-90.655839, 41.462132], [-90.737537, 41.450127], [-90.771672, 41.450761], [-90.786282, 41.452888], [-90.783812, 41.596531], [-90.899853, 41.597133], [-90.898373, 41.771392]]]}, "bbox": [-90.899853, 41.450127, -90.317041, 41.773465]}, {"id": "19169", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.231858, 41.862711], [-93.347933, 41.863104], [-93.698032, 41.86337], [-93.69839, 42.209339], [-93.463043, 42.209302], [-93.231722, 42.208886], [-93.231858, 41.862711]]]}, "bbox": [-93.69839, 41.862711, -93.231722, 42.209339]}, {"id": "19179", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.410233, 41.161942], [-92.179974, 41.162662], [-92.179072, 40.89972], [-92.639091, 40.898886], [-92.640361, 41.161298], [-92.410233, 41.161942]]]}, "bbox": [-92.640361, 40.898886, -92.179072, 41.162662]}, {"id": "19187", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.443024, 42.558843], [-94.443083, 42.645164], [-93.971714, 42.644707], [-93.971583, 42.558139], [-93.931684, 42.472011], [-93.931581, 42.210095], [-94.164704, 42.20992], [-94.397526, 42.209161], [-94.397671, 42.4733], [-94.443024, 42.558843]]]}, "bbox": [-94.443083, 42.209161, -93.931581, 42.645164]}, {"id": "19193", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.356666, 42.215077], [-96.356591, 42.215182], [-96.336323, 42.218922], [-96.323723, 42.229887], [-96.322868, 42.233637], [-96.328905, 42.254734], [-96.348814, 42.282024], [-96.375307, 42.318339], [-96.384169, 42.325874], [-96.407998, 42.337408], [-96.413895, 42.343393], [-96.417786, 42.351449], [-96.415509, 42.400294], [-96.413609, 42.407894], [-96.387608, 42.432494], [-96.380707, 42.446394], [-96.381307, 42.461694], [-96.385407, 42.473094], [-96.396107, 42.484095], [-96.409408, 42.487595], [-96.443408, 42.489495], [-96.466253, 42.497702], [-96.476947, 42.508677], [-96.481308, 42.516556], [-96.479909, 42.524195], [-96.477709, 42.535595], [-96.476952, 42.556079], [-96.479685, 42.561238], [-95.859949, 42.56062], [-95.750287, 42.561106], [-95.741611, 42.561285], [-95.741821, 42.474865], [-95.669265, 42.474645], [-95.670822, 42.211408], [-96.356666, 42.215077]]]}, "bbox": [-96.481308, 42.211408, -95.669265, 42.561285]}, {"id": "20015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.522782, 38.08637], [-96.523755, 37.955899], [-96.5253, 37.607015], [-96.52569, 37.476405], [-97.153331, 37.475544], [-97.152476, 37.912733], [-97.152913, 38.087704], [-96.840772, 38.085622], [-96.522782, 38.08637]]]}, "bbox": [-97.153331, 37.475544, -96.522782, 38.087704]}, {"id": "20037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.617575, 37.653577], [-94.617477, 37.63717], [-94.6173, 37.610495], [-94.617428, 37.609522], [-94.617283, 37.571896], [-94.617315, 37.571499], [-94.617081, 37.567013], [-94.61716, 37.557308], [-94.617186, 37.553485], [-94.616908, 37.527804], [-94.616789, 37.52151], [-94.617023, 37.483765], [-94.617183, 37.469665], [-94.61718, 37.465203], [-94.617222, 37.460476], [-94.617205, 37.460373], [-94.617201, 37.454788], [-94.617132, 37.439818], [-94.617265, 37.425536], [-94.617511, 37.410909], [-94.617557, 37.396375], [-94.617625, 37.367576], [-94.617626, 37.367445], [-94.617537, 37.364355], [-94.617538, 37.364167], [-94.617636, 37.338417], [-94.617636, 37.338415], [-94.619202, 37.33836], [-95.075166, 37.339937], [-95.074972, 37.383823], [-95.088189, 37.383837], [-95.088012, 37.674519], [-94.617734, 37.673105], [-94.617576, 37.653671], [-94.617575, 37.653577]]]}, "bbox": [-95.088189, 37.33836, -94.616789, 37.674519]}, {"id": "20045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.056207, 38.811432], [-95.056412, 38.738587], [-95.500738, 38.738808], [-95.501038, 38.739721], [-95.500724, 38.869815], [-95.500254, 39.056656], [-95.285425, 39.032162], [-95.187103, 39.044109], [-95.164123, 38.98163], [-95.056258, 38.98212], [-95.056207, 38.811432]]]}, "bbox": [-95.501038, 38.738587, -95.056207, 39.056656]}, {"id": "20055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-100.227137, 38.262237], [-100.22661, 38.001015], [-100.664166, 38.00253], [-100.652251, 37.736275], [-101.089667, 37.736337], [-101.103778, 37.829035], [-101.103268, 38.264557], [-100.687836, 38.26415], [-100.244393, 38.26229], [-100.227137, 38.262237]]]}, "bbox": [-101.103778, 37.736275, -100.22661, 38.264557]}, {"id": "20059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.508267, 38.433933], [-95.500738, 38.738808], [-95.056412, 38.738587], [-95.065831, 38.389945], [-95.508328, 38.390278], [-95.508267, 38.433933]]]}, "bbox": [-95.508328, 38.389945, -95.056412, 38.738808]}, {"id": "20079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.701969, 37.911325], [-97.701841, 38.173814], [-97.37175, 38.173673], [-97.153093, 38.174634], [-97.152913, 38.087704], [-97.152476, 37.912733], [-97.701969, 37.911325]]]}, "bbox": [-97.701969, 37.911325, -97.152476, 38.174634]}, {"id": "20091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.608033, 38.847207], [-94.608041, 38.811064], [-94.609039, 38.760611], [-94.609399, 38.74244], [-94.609456, 38.7407], [-94.609509, 38.738102], [-95.056412, 38.738587], [-95.056207, 38.811432], [-95.056258, 38.98212], [-94.908765, 38.991401], [-94.872442, 39.059088], [-94.607391, 39.044086], [-94.608134, 38.942006], [-94.608134, 38.940006], [-94.607866, 38.937398], [-94.607978, 38.93687], [-94.608033, 38.883807], [-94.608033, 38.869207], [-94.608033, 38.868107], [-94.607993, 38.867271], [-94.608033, 38.861207], [-94.608033, 38.855007], [-94.608033, 38.847207]]]}, "bbox": [-95.056412, 38.738102, -94.607391, 39.059088]}, {"id": "20155", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.472257, 37.824497], [-98.472794, 38.172757], [-97.922136, 38.173713], [-97.701841, 38.173814], [-97.701969, 37.911325], [-97.698692, 37.735056], [-97.807823, 37.733855], [-98.464804, 37.732675], [-98.464899, 37.824512], [-98.472257, 37.824497]]]}, "bbox": [-98.472794, 37.732675, -97.698692, 38.173814]}, {"id": "20161", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.755786, 39.088006], [-96.851111, 39.088386], [-96.850991, 39.101307], [-96.849879, 39.219012], [-96.961387, 39.220073], [-96.958859, 39.5664], [-96.806544, 39.566423], [-96.581764, 39.566333], [-96.726865, 39.404012], [-96.638605, 39.292827], [-96.518329, 39.203877], [-96.554012, 39.178532], [-96.388884, 39.172724], [-96.390796, 39.043257], [-96.501174, 39.043666], [-96.501181, 39.072782], [-96.755786, 39.088006]]]}, "bbox": [-96.961387, 39.043257, -96.388884, 39.566423]}, {"id": "20169", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.928595, 38.871102], [-97.928967, 38.882176], [-97.928702, 38.886208], [-97.92856, 38.958395], [-97.371614, 38.957852], [-97.371911, 38.609353], [-97.924795, 38.60988], [-97.928595, 38.871102]]]}, "bbox": [-97.928967, 38.609353, -97.371614, 38.958395]}, {"id": "20173", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.8076, 37.474184], [-97.807823, 37.733855], [-97.698692, 37.735056], [-97.701969, 37.911325], [-97.152476, 37.912733], [-97.153331, 37.475544], [-97.8076, 37.474184]]]}, "bbox": [-97.807823, 37.474184, -97.152476, 37.912733]}, {"id": "20177", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.500254, 39.056656], [-95.500724, 38.869815], [-95.946587, 38.869973], [-95.946754, 39.098685], [-96.03906, 39.126527], [-96.035573, 39.21652], [-95.589472, 39.216081], [-95.596759, 39.064672], [-95.500254, 39.056656]]]}, "bbox": [-96.03906, 38.869815, -95.500254, 39.21652]}, {"id": "20209", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.607354, 39.113444], [-94.607234, 39.089604], [-94.607334, 39.081704], [-94.607234, 39.065704], [-94.607391, 39.044086], [-94.872442, 39.059088], [-94.908765, 38.991401], [-94.900191, 39.202911], [-94.793948, 39.201276], [-94.752338, 39.173203], [-94.736537, 39.169203], [-94.723637, 39.169003], [-94.714137, 39.170403], [-94.706723, 39.173801], [-94.601733, 39.159603], [-94.596033, 39.157703], [-94.591933, 39.155003], [-94.589933, 39.140403], [-94.607354, 39.113444]]]}, "bbox": [-94.908765, 38.991401, -94.589933, 39.202911]}, {"id": "21015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.632446, 39.07676], [-84.623732, 39.074427], [-84.598031, 38.87954], [-84.61574, 38.802192], [-84.630007, 38.802901], [-84.656167, 38.790117], [-84.660107, 38.777293], [-84.791078, 38.855859], [-84.785799, 38.869496], [-84.785111, 38.879988], [-84.789521, 38.884687], [-84.813182, 38.930583], [-84.849445, 39.000923], [-84.878614, 39.030296], [-84.889065, 39.04082], [-84.897171, 39.052407], [-84.897364, 39.057378], [-84.888873, 39.066376], [-84.831197, 39.10192], [-84.820157, 39.10548], [-84.78768, 39.115297], [-84.766749, 39.138558], [-84.754449, 39.146658], [-84.744149, 39.147458], [-84.732048, 39.144458], [-84.718548, 39.137059], [-84.689747, 39.104159], [-84.684847, 39.100459], [-84.632446, 39.07676]]]}, "bbox": [-84.897364, 38.777293, -84.598031, 39.147458]}, {"id": "21017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.19405, 38.37175], [-84.120185, 38.275516], [-83.977924, 38.192118], [-84.080527, 38.115118], [-84.286461, 38.067028], [-84.380928, 38.113563], [-84.401847, 38.207889], [-84.442661, 38.283236], [-84.345476, 38.285099], [-84.19405, 38.37175]]]}, "bbox": [-84.442661, 38.067028, -83.977924, 38.37175]}, {"id": "21019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.665485, 38.505734], [-82.593673, 38.421809], [-82.596281, 38.417681], [-82.597113, 38.412881], [-82.595369, 38.382722], [-82.595382, 38.382712], [-82.593008, 38.375082], [-82.571877, 38.315781], [-82.574656, 38.263873], [-82.578254, 38.254809], [-82.584001, 38.246371], [-82.59497, 38.245453], [-82.60423, 38.247303], [-82.794206, 38.243772], [-82.771737, 38.362588], [-82.817454, 38.373935], [-82.665485, 38.505734]]]}, "bbox": [-82.817454, 38.243772, -82.571877, 38.505734]}, {"id": "21021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.658296, 37.634501], [-84.801112, 37.568776], [-84.847326, 37.547894], [-85.039674, 37.545232], [-85.030172, 37.63127], [-85.025021, 37.678854], [-84.744888, 37.713075], [-84.658296, 37.634501]]]}, "bbox": [-85.039674, 37.545232, -84.658296, 37.713075]}, {"id": "21037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.506082, 39.095081], [-84.502062, 39.096641], [-84.493743, 39.10246], [-84.432841, 39.094261], [-84.326539, 39.027463], [-84.319936, 39.022081], [-84.31368, 39.016981], [-84.304698, 39.006455], [-84.234453, 38.893226], [-84.232132, 38.880483], [-84.232478, 38.874638], [-84.418107, 38.806596], [-84.4634, 38.852059], [-84.4508, 38.993609], [-84.506082, 39.095081]]]}, "bbox": [-84.506082, 38.806596, -84.232132, 39.10246]}, {"id": "21047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.344131, 36.64151], [-87.347796, 36.64144], [-87.414309, 36.641047], [-87.425009, 36.641047], [-87.436509, 36.640747], [-87.563052, 36.639113], [-87.564928, 36.639113], [-87.641146, 36.638036], [-87.64115, 36.638036], [-87.694186, 36.636838], [-87.659724, 36.966397], [-87.733368, 37.002103], [-87.710912, 37.021607], [-87.680617, 37.149239], [-87.521609, 37.105344], [-87.333741, 37.157186], [-87.259371, 37.072401], [-87.33598, 36.641543], [-87.344131, 36.64151]]]}, "bbox": [-87.733368, 36.636838, -87.259371, 37.157186]}, {"id": "21059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.408547, 37.683563], [-87.271608, 37.78012], [-87.323402, 37.819239], [-87.302324, 37.898445], [-87.269561, 37.877155], [-87.26293, 37.872846], [-87.20224, 37.843791], [-87.132621, 37.791008], [-87.128749, 37.785728], [-87.119229, 37.782848], [-87.111133, 37.782512], [-87.090636, 37.787808], [-87.077404, 37.796209], [-87.067836, 37.806065], [-87.057836, 37.827457], [-87.043854, 37.870796], [-87.043407, 37.87994], [-87.046237, 37.889866], [-87.042249, 37.898291], [-87.033444, 37.906593], [-87.010315, 37.919668], [-86.978957, 37.9302], [-86.97883, 37.930214], [-86.854035, 37.840811], [-86.823429, 37.737754], [-86.817514, 37.673814], [-86.94876, 37.630548], [-87.03826, 37.560803], [-87.26161, 37.622009], [-87.408547, 37.683563]]]}, "bbox": [-87.408547, 37.560803, -86.817514, 37.930214]}, {"id": "21067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.401847, 38.207889], [-84.380928, 38.113563], [-84.286461, 38.067028], [-84.337393, 37.892007], [-84.43572, 37.847202], [-84.479277, 37.940076], [-84.660135, 38.003745], [-84.657498, 38.017835], [-84.625079, 38.116397], [-84.62065, 38.129527], [-84.401847, 38.207889]]]}, "bbox": [-84.660135, 37.847202, -84.286461, 38.207889]}, {"id": "21071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.92546, 37.486525], [-82.878723, 37.540134], [-82.940763, 37.716338], [-82.763313, 37.75612], [-82.64075, 37.720182], [-82.563561, 37.684844], [-82.623112, 37.503541], [-82.584711, 37.466574], [-82.672375, 37.306841], [-82.710805, 37.285323], [-82.752346, 37.308039], [-82.767605, 37.427777], [-82.92546, 37.486525]]]}, "bbox": [-82.940763, 37.285323, -82.563561, 37.75612]}, {"id": "21073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.740594, 38.352415], [-84.739684, 38.338035], [-84.730289, 38.208302], [-84.725168, 38.195426], [-84.864908, 38.116926], [-85.023711, 38.129052], [-84.997667, 38.335586], [-84.870482, 38.356751], [-84.740594, 38.352415]]]}, "bbox": [-85.023711, 38.116926, -84.725168, 38.356751]}, {"id": "21083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.48921, 36.501068], [-88.51192, 36.501457], [-88.51227, 36.501506], [-88.516346, 36.501431], [-88.516427, 36.50143], [-88.545192, 36.501814], [-88.577283, 36.50194], [-88.661133, 36.502243], [-88.715255, 36.502662], [-88.747523, 36.502834], [-88.799594, 36.502757], [-88.816765, 36.502815], [-88.813229, 36.773115], [-88.812897, 36.946864], [-88.484103, 36.942096], [-88.485697, 36.750328], [-88.489075, 36.501068], [-88.48921, 36.501068]]]}, "bbox": [-88.816765, 36.501068, -88.484103, 36.946864]}, {"id": "21085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.612095, 37.395123], [-86.664055, 37.546105], [-86.59281, 37.56436], [-86.503369, 37.622191], [-86.34623, 37.562718], [-86.27527, 37.593519], [-86.114095, 37.567131], [-86.047598, 37.449933], [-86.019089, 37.394537], [-86.072351, 37.381071], [-86.064554, 37.348613], [-86.157589, 37.335649], [-86.469126, 37.321099], [-86.487152, 37.362501], [-86.612095, 37.395123]]]}, "bbox": [-86.664055, 37.321099, -86.019089, 37.622191]}, {"id": "21093", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.047598, 37.449933], [-86.114095, 37.567131], [-86.27527, 37.593519], [-86.151285, 37.798878], [-86.007432, 37.818439], [-85.975948, 37.875793], [-85.998609, 37.997775], [-85.951467, 38.005608], [-85.947952, 38.007083], [-85.945044, 38.002426], [-85.938321, 37.998756], [-85.854871, 37.945385], [-85.838198, 37.879284], [-85.737777, 37.81179], [-85.680488, 37.732284], [-85.876006, 37.543259], [-85.892804, 37.440308], [-86.047598, 37.449933]]]}, "bbox": [-86.27527, 37.440308, -85.680488, 38.007083]}, {"id": "21107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.680617, 37.149239], [-87.805029, 37.241083], [-87.85076, 37.322136], [-87.813413, 37.350645], [-87.593575, 37.461963], [-87.499968, 37.486741], [-87.375145, 37.569988], [-87.351893, 37.425655], [-87.295965, 37.391819], [-87.388826, 37.261395], [-87.333741, 37.157186], [-87.521609, 37.105344], [-87.680617, 37.149239]]]}, "bbox": [-87.85076, 37.105344, -87.295965, 37.569988]}, {"id": "21111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.623735, 38.079648], [-85.703163, 38.086499], [-85.712578, 38.087311], [-85.842259, 38.051485], [-85.938321, 37.998756], [-85.945044, 38.002426], [-85.947952, 38.007083], [-85.941403, 38.009831], [-85.930235, 38.018311], [-85.922395, 38.028679], [-85.911607, 38.06689], [-85.906163, 38.08617], [-85.904564, 38.10027], [-85.905164, 38.11107], [-85.909464, 38.14007], [-85.908764, 38.161169], [-85.89955, 38.180343], [-85.897664, 38.184269], [-85.829364, 38.276769], [-85.823764, 38.280569], [-85.816164, 38.282969], [-85.791575, 38.288566], [-85.791563, 38.288569], [-85.780963, 38.288469], [-85.773363, 38.286169], [-85.765963, 38.280469], [-85.766563, 38.27767], [-85.761062, 38.27257], [-85.750962, 38.26787], [-85.744862, 38.26717], [-85.683561, 38.295469], [-85.675017, 38.301317], [-85.653641, 38.327108], [-85.638777, 38.361443], [-85.638044, 38.38027], [-85.468206, 38.285309], [-85.404899, 38.26373], [-85.424054, 38.147438], [-85.42883, 38.118383], [-85.55727, 38.073841], [-85.623735, 38.079648]]]}, "bbox": [-85.947952, 37.998756, -85.404899, 38.38027]}, {"id": "21115", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.940763, 37.716338], [-83.004649, 37.859247], [-82.989014, 37.963968], [-82.947936, 38.000431], [-82.612393, 37.879272], [-82.670887, 37.851823], [-82.64075, 37.720182], [-82.763313, 37.75612], [-82.940763, 37.716338]]]}, "bbox": [-83.004649, 37.716338, -82.612393, 38.000431]}, {"id": "21117", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.510057, 39.093593], [-84.509743, 39.09366], [-84.506082, 39.095081], [-84.4508, 38.993609], [-84.4634, 38.852059], [-84.418107, 38.806596], [-84.420199, 38.805679], [-84.532288, 38.791937], [-84.597775, 38.79117], [-84.61574, 38.802192], [-84.598031, 38.87954], [-84.623732, 39.074427], [-84.620112, 39.073457], [-84.603444, 39.073699], [-84.510057, 39.093593]]]}, "bbox": [-84.623732, 38.79117, -84.418107, 39.095081]}, {"id": "21145", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.812897, 36.946864], [-88.815952, 36.9541], [-88.933399, 37.225007], [-88.933385, 37.225005], [-88.942111, 37.228811], [-88.928021, 37.226281], [-88.916934, 37.224291], [-88.809206, 37.189235], [-88.625889, 37.119458], [-88.589207, 37.099655], [-88.576718, 37.085852], [-88.564152, 37.07844], [-88.482957, 37.022566], [-88.485254, 37.001109], [-88.484103, 36.942096], [-88.812897, 36.946864]]]}, "bbox": [-88.942111, 36.942096, -88.482957, 37.228811]}, {"id": "21183", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.618233, 37.391348], [-86.759533, 37.304099], [-86.817168, 37.327616], [-86.899268, 37.212313], [-87.099803, 37.416042], [-87.103111, 37.4809], [-87.049376, 37.55186], [-87.03826, 37.560803], [-86.94876, 37.630548], [-86.817514, 37.673814], [-86.823429, 37.737754], [-86.638935, 37.661877], [-86.59281, 37.56436], [-86.664055, 37.546105], [-86.612095, 37.395123], [-86.618233, 37.391348]]]}, "bbox": [-87.103111, 37.212313, -86.59281, 37.737754]}, {"id": "21193", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.12209, 37.000997], [-83.124334, 37.005722], [-83.136701, 37.00415], [-83.144352, 37.013705], [-83.160106, 37.013859], [-83.160825, 37.020739], [-83.171706, 37.017192], [-83.182104, 37.021115], [-83.201887, 37.17413], [-83.32462, 37.225561], [-83.351774, 37.295682], [-83.460992, 37.293848], [-83.507886, 37.235877], [-83.511263, 37.255073], [-83.526907, 37.258529], [-83.547628, 37.334418], [-83.449454, 37.378853], [-83.38165, 37.338266], [-83.214735, 37.443538], [-83.124348, 37.404973], [-83.127249, 37.268401], [-83.000142, 37.19571], [-83.058818, 37.124079], [-83.054626, 37.02], [-83.12209, 37.000997]]]}, "bbox": [-83.547628, 37.000997, -83.000142, 37.443538]}, {"id": "21195", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.326404, 37.740815], [-82.325739, 37.735799], [-82.307235, 37.707669], [-82.297011, 37.687273], [-82.25028, 37.657776], [-82.21967, 37.643046], [-82.141814, 37.595052], [-82.125601, 37.579021], [-82.125892, 37.574031], [-82.116584, 37.559588], [-82.048521, 37.531078], [-82.008274, 37.533357], [-81.999844, 37.542579], [-81.998177, 37.543082], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.732693, 37.271502], [-82.724557, 37.281035], [-82.718852, 37.280276], [-82.710805, 37.285323], [-82.672375, 37.306841], [-82.584711, 37.466574], [-82.623112, 37.503541], [-82.563561, 37.684844], [-82.456134, 37.668795], [-82.326404, 37.740815]]]}, "bbox": [-82.732693, 37.196092, -81.968297, 37.740815]}, {"id": "21199", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.720712, 37.238328], [-84.648083, 37.290416], [-84.556461, 37.355729], [-84.502932, 37.328801], [-84.289076, 37.15174], [-84.358024, 36.9594], [-84.578158, 36.867133], [-84.679165, 36.980914], [-84.770172, 36.957735], [-84.835712, 36.997612], [-84.905778, 37.047187], [-84.901112, 37.116297], [-84.809338, 37.175034], [-84.720712, 37.238328]]]}, "bbox": [-84.905778, 36.867133, -84.289076, 37.355729]}, {"id": "21217", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.46625, 37.465595], [-85.340446, 37.469512], [-85.246759, 37.420205], [-85.17144, 37.465081], [-85.073772, 37.413669], [-85.165174, 37.310396], [-85.314663, 37.24074], [-85.352771, 37.192432], [-85.478081, 37.363673], [-85.584477, 37.432091], [-85.583497, 37.469917], [-85.46625, 37.465595]]]}, "bbox": [-85.584477, 37.192432, -85.073772, 37.469917]}, {"id": "21227", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.399165, 37.169896], [-86.28175, 37.080597], [-86.218607, 37.104029], [-86.113512, 37.061072], [-86.16674, 36.934015], [-86.405769, 36.776187], [-86.400518, 36.807226], [-86.583289, 36.830282], [-86.611586, 36.883057], [-86.674462, 36.999766], [-86.618158, 37.183906], [-86.399165, 37.169896]]]}, "bbox": [-86.674462, 36.776187, -86.113512, 37.183906]}, {"id": "22001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.284675, 30.147443], [-92.426039, 30.049369], [-92.534638, 30.107852], [-92.625484, 30.09233], [-92.591129, 30.182365], [-92.626612, 30.230272], [-92.631987, 30.481147], [-92.629063, 30.480614], [-92.493259, 30.480499], [-92.244795, 30.480193], [-92.176444, 30.436852], [-92.142184, 30.298817], [-92.284675, 30.147443]]]}, "bbox": [-92.631987, 30.049369, -92.142184, 30.481147]}, {"id": "22009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.815258, 30.848107], [-92.212711, 30.848607], [-92.280738, 30.965071], [-92.208299, 30.96243], [-92.234258, 31.131466], [-92.23323, 31.321545], [-92.086718, 31.335374], [-92.008121, 31.325797], [-91.994828, 31.229561], [-91.926854, 31.29483], [-91.83428, 31.266344], [-91.677302, 31.188047], [-91.750119, 31.018814], [-91.805963, 30.972558], [-91.815258, 30.848107]]]}, "bbox": [-92.280738, 30.848107, -91.677302, 31.335374]}, {"id": "22015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.42819, 32.235897], [-93.457933, 32.23597], [-93.463338, 32.237159], [-93.471249, 32.237186], [-93.659041, 32.406058], [-93.685569, 32.395498], [-93.661396, 32.427624], [-93.699506, 32.49748], [-93.767444, 32.538401], [-93.739474, 32.590773], [-93.782111, 32.712212], [-93.819169, 32.736002], [-93.783233, 32.78436], [-93.824253, 32.792451], [-93.785181, 32.857353], [-93.842597, 32.946764], [-93.814553, 33.019372], [-93.80493, 33.019347], [-93.531499, 33.018643], [-93.524916, 33.018637], [-93.520994, 33.018616], [-93.530405, 32.975397], [-93.448039, 32.866321], [-93.441212, 32.410431], [-93.372781, 32.410153], [-93.42819, 32.235897]]]}, "bbox": [-93.842597, 32.235897, -93.372781, 33.019372]}, {"id": "22017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.043147, 32.69303], [-94.043147, 32.693031], [-94.042947, 32.767991], [-94.043027, 32.776863], [-94.042938, 32.780558], [-94.042829, 32.785277], [-94.042747, 32.786973], [-94.043026, 32.797476], [-94.042785, 32.871486], [-94.043025, 32.880446], [-94.042886, 32.880965], [-94.042886, 32.881089], [-94.042859, 32.892771], [-94.042885, 32.898911], [-94.043092, 32.910021], [-94.043067, 32.937903], [-94.043088, 32.955592], [-94.042964, 33.019219], [-94.041444, 33.019188], [-94.035839, 33.019145], [-94.027983, 33.019139], [-94.024475, 33.019207], [-93.814553, 33.019372], [-93.842597, 32.946764], [-93.785181, 32.857353], [-93.824253, 32.792451], [-93.783233, 32.78436], [-93.819169, 32.736002], [-93.782111, 32.712212], [-93.739474, 32.590773], [-93.767444, 32.538401], [-93.699506, 32.49748], [-93.661396, 32.427624], [-93.685569, 32.395498], [-93.659041, 32.406058], [-93.471249, 32.237186], [-93.61469, 32.237526], [-93.666472, 32.317444], [-93.791282, 32.340224], [-93.951085, 32.195545], [-94.042621, 32.196005], [-94.042662, 32.218146], [-94.042732, 32.26962], [-94.042733, 32.269696], [-94.042739, 32.363559], [-94.042763, 32.373332], [-94.042901, 32.392283], [-94.042923, 32.399918], [-94.042899, 32.400659], [-94.042986, 32.435507], [-94.042908, 32.439891], [-94.042903, 32.470386], [-94.042875, 32.471348], [-94.042902, 32.472906], [-94.042995, 32.478004], [-94.042955, 32.480261], [-94.043072, 32.4843], [-94.043089, 32.486561], [-94.042911, 32.492852], [-94.042885, 32.505145], [-94.043081, 32.513613], [-94.043142, 32.559502], [-94.043083, 32.564261], [-94.042919, 32.610142], [-94.042929, 32.61826], [-94.042926, 32.622015], [-94.042824, 32.640305], [-94.04278, 32.643466], [-94.042913, 32.655127], [-94.043147, 32.69303]]]}, "bbox": [-94.043147, 32.195545, -93.471249, 33.019372]}, {"id": "22019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.722481, 30.050898], [-93.721589, 30.051939], [-93.712101, 30.067346], [-93.695684, 30.135729], [-93.695252, 30.1476], [-93.712008, 30.194304], [-93.716223, 30.244318], [-93.720575, 30.295961], [-93.723586, 30.294951], [-93.735896, 30.29944], [-93.765822, 30.333318], [-93.757654, 30.390423], [-93.751437, 30.396288], [-93.741701, 30.403007], [-93.486116, 30.4025], [-93.486384, 30.490523], [-93.384673, 30.490109], [-93.38515, 30.40263], [-93.131109, 30.403057], [-93.030955, 30.37939], [-92.9963, 30.156955], [-92.893324, 30.156314], [-92.887605, 30.082475], [-92.996371, 30.038479], [-93.128475, 30.052587], [-93.722481, 30.050898]]]}, "bbox": [-93.765822, 30.038479, -92.887605, 30.490523]}, {"id": "22029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.379935, 31.733013], [-91.397915, 31.709364], [-91.400115, 31.688164], [-91.398059, 31.655922], [-91.404668, 31.637898], [-91.42209, 31.63129], [-91.441315, 31.63129], [-91.45273, 31.63129], [-91.464746, 31.628886], [-91.474959, 31.621677], [-91.477963, 31.610863], [-91.477963, 31.604855], [-91.477963, 31.598247], [-91.477362, 31.592239], [-91.470754, 31.58563], [-91.458679, 31.583226], [-91.44862, 31.583032], [-91.437711, 31.580824], [-91.425094, 31.57782], [-91.415482, 31.567006], [-91.416683, 31.561599], [-91.422691, 31.55439], [-91.437616, 31.546166], [-91.450017, 31.539666], [-91.479718, 31.530366], [-91.511217, 31.532612], [-91.51581, 31.530894], [-91.52292, 31.519841], [-91.51513, 31.449206], [-91.510356, 31.438928], [-91.505301, 31.432945], [-91.500406, 31.419008], [-91.505093, 31.400933], [-91.513795, 31.386875], [-91.525386, 31.378904], [-91.541242, 31.35675], [-91.539904, 31.337336], [-91.531201, 31.326625], [-91.51982, 31.311228], [-91.508858, 31.291644], [-91.515614, 31.27821], [-91.522397, 31.273423], [-91.547588, 31.264444], [-91.574493, 31.261289], [-91.59849, 31.205485], [-91.599965, 31.192318], [-91.604197, 31.154545], [-91.577373, 31.078179], [-91.56415, 31.06683], [-91.561283, 31.060906], [-91.559907, 31.054119], [-91.562468, 31.043213], [-91.571695, 31.029782], [-91.58467, 31.020185], [-91.636942, 30.999416], [-91.640613, 30.996125], [-91.646409, 30.986146], [-91.662506, 30.970362], [-91.750119, 31.018814], [-91.677302, 31.188047], [-91.83428, 31.266344], [-91.862168, 31.302314], [-91.845019, 31.375916], [-91.776779, 31.385215], [-91.855889, 31.423831], [-91.857083, 31.494527], [-91.807098, 31.438794], [-91.738331, 31.431572], [-91.824426, 31.599671], [-91.775836, 31.648626], [-91.705948, 31.642863], [-91.694469, 31.735286], [-91.601622, 31.761864], [-91.544791, 31.751731], [-91.379935, 31.733013]]]}, "bbox": [-91.862168, 30.970362, -91.379935, 31.761864]}, {"id": "22033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.021014, 30.321489], [-91.142305, 30.319893], [-91.142332, 30.320437], [-91.142088, 30.322028], [-91.142042, 30.322718], [-91.142105, 30.323293], [-91.241508, 30.357592], [-91.197208, 30.507088], [-91.262734, 30.505238], [-91.297658, 30.649548], [-91.254419, 30.705294], [-90.849041, 30.719311], [-90.910701, 30.649385], [-90.980939, 30.589988], [-90.991529, 30.461818], [-90.891728, 30.345244], [-91.021014, 30.321489]]]}, "bbox": [-91.297658, 30.319893, -90.849041, 30.719311]}, {"id": "22045", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-92.000371, 29.613143], [-92.000003, 29.613013], [-91.965031, 29.608019], [-91.939903, 29.610291], [-91.935024, 29.612239], [-91.929567, 29.61884], [-91.922825, 29.633173], [-91.898996, 29.63701], [-91.896763, 29.634618], [-91.882318, 29.62977], [-91.866113, 29.631583], [-91.863018, 29.633739], [-91.841294, 29.62962], [-91.838981, 29.624475], [-91.840921, 29.619913], [-91.838297, 29.616041], [-91.821693, 29.606049], [-91.803831, 29.599562], [-91.784976, 29.595204], [-91.7785, 29.58922], [-91.774805, 29.582113], [-91.774686, 29.576387], [-91.74632, 29.574337], [-91.719102, 29.565568], [-91.715642, 29.565844], [-91.712002, 29.56474], [-91.709205, 29.561012], [-91.711654, 29.55427], [-91.733956, 29.539504], [-91.747058, 29.535144], [-91.765448, 29.520844], [-91.771927, 29.504871], [-91.772529, 29.499016], [-91.770069, 29.493812], [-91.770516, 29.488953], [-91.782387, 29.482882], [-91.789119, 29.482081], [-91.800121, 29.486828], [-91.803448, 29.486851], [-91.814609, 29.482061], [-91.821576, 29.473925], [-91.8385, 29.478874], [-91.848665, 29.484144], [-91.852598, 29.494984], [-91.862324, 29.502393], [-91.878746, 29.502937], [-91.886815, 29.505577], [-91.906175, 29.518052], [-91.915322, 29.518513], [-91.947007, 29.53316], [-91.969312, 29.536893], [-91.985726, 29.547708], [-92.02681, 29.566805], [-92.035462, 29.57864], [-92.041168, 29.581648], [-92.038618, 29.585048], [-92.02915, 29.584432], [-92.025388, 29.585386], [-92.019499, 29.592973], [-92.009765, 29.598395], [-92.006448, 29.608158], [-92.000371, 29.613143]]], [[[-91.368835, 30.058824], [-91.224356, 30.025336], [-91.235889, 30.001128], [-91.259388, 30.0002], [-91.255229, 29.971457], [-91.471951, 29.955989], [-91.624709, 29.945275], [-91.711149, 29.846065], [-91.875637, 29.722316], [-91.87557, 29.722471], [-91.87557, 29.728043], [-91.878355, 29.735007], [-91.879748, 29.742668], [-91.878355, 29.751025], [-91.874761, 29.760083], [-91.859151, 29.783331], [-91.854677, 29.807436], [-91.869998, 29.828328], [-91.889118, 29.836023], [-91.90689, 29.83094], [-91.915989, 29.815654], [-91.919143, 29.815379], [-91.940723, 29.817008], [-91.96123, 29.810221], [-91.970443, 29.80431], [-91.990396, 29.970326], [-91.964458, 30.036918], [-91.963827, 30.038175], [-91.96279, 30.04137], [-91.950998, 30.073213], [-91.819216, 30.044013], [-91.765168, 30.108495], [-91.658886, 30.108226], [-91.600354, 30.033169], [-91.368835, 30.058824]]]]}, "bbox": [-92.041168, 29.473925, -91.224356, 30.108495]}, {"id": "22051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.228157, 29.692028], [-90.173202, 29.827524], [-90.240173, 29.862117], [-90.279533, 29.967971], [-90.280296, 29.972618], [-90.280143, 29.992744], [-90.27951, 30.006448], [-90.279739, 30.013338], [-90.27922, 30.049118], [-90.277855, 30.230888], [-90.243034, 30.224447], [-90.105456, 30.191801], [-90.119373, 30.036637], [-90.118541, 30.029845], [-90.120959, 30.021975], [-90.124775, 29.975791], [-90.126559, 29.970265], [-90.140074, 29.947904], [-90.058547, 29.945334], [-90.008056, 29.895528], [-90.075683, 29.77185], [-89.980018, 29.607582], [-89.96195, 29.432874], [-89.964563, 29.434615], [-89.972934, 29.443748], [-89.991961, 29.463536], [-90.01251, 29.462775], [-90.018598, 29.45212], [-90.022404, 29.444509], [-90.029466, 29.432015], [-90.137504, 29.477163], [-90.186172, 29.563341], [-90.155807, 29.67753], [-90.228157, 29.692028]]]}, "bbox": [-90.280296, 29.432015, -89.96195, 30.230888]}, {"id": "22055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.284675, 30.147443], [-92.142184, 30.298817], [-92.056066, 30.378237], [-91.988718, 30.368598], [-91.942818, 30.236599], [-91.980328, 30.185248], [-91.905544, 30.154616], [-91.950998, 30.073213], [-91.96279, 30.04137], [-91.963827, 30.038175], [-91.964458, 30.036918], [-92.12812, 30.115904], [-92.284675, 30.147443]]]}, "bbox": [-92.284675, 30.036918, -91.905544, 30.378237]}, {"id": "22057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.029466, 29.432015], [-90.032298, 29.427005], [-90.031536, 29.412545], [-90.033295, 29.393274], [-90.029468, 29.388136], [-90.029614, 29.386658], [-90.029967, 29.383087], [-90.030761, 29.375043], [-90.030764, 29.375008], [-90.030855, 29.374876], [-90.033604, 29.370851], [-90.035415, 29.368201], [-90.036374, 29.363661], [-90.032842, 29.348624], [-90.031815, 29.344251], [-90.034275, 29.322661], [-90.028536, 29.307083], [-90.013778, 29.30271], [-90.009678, 29.294785], [-90.016288, 29.284257], [-90.019517, 29.282213], [-90.032088, 29.280027], [-90.043293, 29.282487], [-90.057094, 29.281331], [-90.061057, 29.276748], [-90.059691, 29.272648], [-90.060511, 29.267729], [-90.070622, 29.262537], [-90.086747, 29.259257], [-90.091119, 29.261443], [-90.097678, 29.26199], [-90.101231, 29.259804], [-90.096038, 29.240673], [-90.073355, 29.227282], [-90.073355, 29.210611], [-90.070622, 29.208698], [-90.06361, 29.209474], [-90.04291, 29.211765], [-90.019772, 29.231903], [-90.005718, 29.240627], [-89.969981, 29.255753], [-89.965667, 29.259126], [-89.959509, 29.267677], [-89.951175, 29.266124], [-89.949925, 29.263154], [-89.950756, 29.260801], [-89.95646, 29.253744], [-90.022029, 29.216065], [-90.058512, 29.183687], [-90.079276, 29.16997], [-90.088684, 29.162574], [-90.104162, 29.150407], [-90.174273, 29.105301], [-90.223587, 29.085075], [-90.231984, 29.08773], [-90.245283, 29.085824], [-90.343293, 29.057062], [-90.348768, 29.057817], [-90.349891, 29.063681], [-90.325514, 29.075138], [-90.304129, 29.077332], [-90.29293, 29.078761], [-90.282983, 29.082326], [-90.26629, 29.089421], [-90.258145, 29.091627], [-90.253141, 29.093772], [-90.249806, 29.100919], [-90.250044, 29.108067], [-90.243849, 29.11045], [-90.234235, 29.110268], [-90.234405, 29.128824], [-90.243435, 29.136311], [-90.248629, 29.13837], [-90.26901, 29.139242], [-90.280516, 29.142521], [-90.27832, 29.150691], [-90.297, 29.171317], [-90.302846, 29.175098], [-90.302948, 29.187948], [-90.300885, 29.196171], [-90.293183, 29.199789], [-90.2828, 29.192545], [-90.275851, 29.193668], [-90.271251, 29.204639], [-90.286621, 29.225694], [-90.300304, 29.231241], [-90.311663, 29.237954], [-90.311523, 29.256374], [-90.316093, 29.264777], [-90.332796, 29.276956], [-90.367166, 29.274128], [-90.368154, 29.270736], [-90.367012, 29.264956], [-90.372565, 29.258923], [-90.387924, 29.252786], [-90.383857, 29.235606], [-90.399465, 29.201046], [-90.408578, 29.196421], [-90.409416, 29.196135], [-90.376666, 29.302883], [-90.384285, 29.365755], [-90.574611, 29.559141], [-90.766849, 29.695477], [-90.807692, 29.775908], [-90.880194, 29.716809], [-91.006743, 29.714771], [-90.885589, 29.905353], [-90.785659, 29.921592], [-90.656312, 29.889246], [-90.541943, 29.891522], [-90.475418, 29.81221], [-90.371978, 29.759239], [-90.346191, 29.693302], [-90.228157, 29.692028], [-90.155807, 29.67753], [-90.186172, 29.563341], [-90.137504, 29.477163], [-90.029466, 29.432015]]]}, "bbox": [-91.006743, 29.057062, -89.949925, 29.921592]}, {"id": "22061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.415071, 32.582845], [-92.41535, 32.495486], [-92.622335, 32.496406], [-92.621678, 32.452999], [-92.777197, 32.453455], [-92.879268, 32.454118], [-92.880805, 32.585277], [-92.828535, 32.758814], [-92.725439, 32.75954], [-92.571295, 32.748579], [-92.518356, 32.67072], [-92.41505, 32.670056], [-92.415071, 32.582845]]]}, "bbox": [-92.880805, 32.452999, -92.41505, 32.75954]}, {"id": "22069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.441171, 31.845233], [-93.44057, 31.91373], [-93.355452, 31.932222], [-93.239501, 31.90352], [-93.23847, 31.972781], [-93.122686, 31.972728], [-93.187162, 32.148412], [-92.93908, 32.147942], [-92.872174, 31.945856], [-92.9668, 31.781299], [-92.973529, 31.708922], [-92.908313, 31.625169], [-92.806206, 31.598548], [-92.718983, 31.517594], [-92.913019, 31.368236], [-92.981464, 31.346644], [-93.236104, 31.364507], [-93.236662, 31.538339], [-93.337456, 31.53811], [-93.338972, 31.714259], [-93.441743, 31.714485], [-93.441171, 31.845233]]]}, "bbox": [-93.441743, 31.346644, -92.718983, 32.148412]}, {"id": "22071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.124775, 29.975791], [-90.120959, 30.021975], [-90.118541, 30.029845], [-90.119373, 30.036637], [-90.105456, 30.191801], [-89.99426, 30.150039], [-89.878689, 30.199193], [-89.794106, 30.151326], [-89.749211, 30.176429], [-89.62288, 30.152368], [-89.625053, 30.150717], [-89.640989, 30.138612], [-89.64455, 30.134108], [-89.650467, 30.126625], [-89.656986, 30.118381], [-89.658594, 30.117364], [-89.668164, 30.111311], [-89.668638, 30.111011], [-89.669157, 30.110683], [-89.669182, 30.110667], [-89.672881, 30.11049], [-89.674124, 30.11043], [-89.674633, 30.110406], [-89.674956, 30.110212], [-89.675762, 30.109728], [-89.676117, 30.109515], [-89.678156, 30.10829], [-89.678163, 30.108286], [-89.678293, 30.107746], [-89.678457, 30.107059], [-89.678499, 30.106886], [-89.679655, 30.102067], [-89.679823, 30.101367], [-89.679838, 30.101304], [-89.680042, 30.100452], [-89.68035, 30.099171], [-89.680485, 30.098605], [-89.681265, 30.095355], [-89.681906, 30.092682], [-89.682057, 30.092052], [-89.682181, 30.091536], [-89.682181, 30.091531], [-89.682277, 30.090565], [-89.68228, 30.090531], [-89.682331, 30.090015], [-89.682371, 30.089607], [-89.682393, 30.089391], [-89.682409, 30.089225], [-89.682691, 30.086365], [-89.683051, 30.082718], [-89.683168, 30.08153], [-89.683712, 30.076018], [-89.697556, 30.070842], [-89.698461, 30.070504], [-89.698496, 30.070491], [-89.698909, 30.070451], [-89.699144, 30.070428], [-89.699629, 30.070381], [-89.711848, 30.069194], [-89.712942, 30.069088], [-89.713003, 30.069061], [-89.714085, 30.068582], [-89.714827, 30.068253], [-89.715494, 30.067958], [-89.715884, 30.067785], [-89.716237, 30.067628], [-89.716425, 30.067545], [-89.71675, 30.067402], [-89.716887, 30.067341], [-89.721992, 30.06508], [-89.724433, 30.063999], [-89.72633, 30.063158], [-89.727453, 30.062661], [-89.728026, 30.061841], [-89.72957, 30.059628], [-89.72968, 30.05947], [-89.72979, 30.059314], [-89.729911, 30.059139], [-89.73099, 30.057594], [-89.730999, 30.057581], [-89.731208, 30.054558], [-89.731428, 30.051377], [-89.731452, 30.05104], [-89.731545, 30.049694], [-89.731545, 30.049691], [-89.731544, 30.04969], [-89.7163, 30.02811], [-89.7163, 30.028106], [-89.716301, 30.028088], [-89.716328, 30.027415], [-89.716336, 30.02723], [-89.716358, 30.026686], [-89.716377, 30.026222], [-89.724649, 30.022454], [-89.724669, 30.022453], [-89.72576, 30.022403], [-89.733323, 30.022054], [-89.734361, 30.022884], [-89.739028, 30.026618], [-89.739574, 30.027055], [-89.740886, 30.028104], [-89.745827, 30.032056], [-89.746313, 30.032445], [-89.746505, 30.032599], [-89.746506, 30.0326], [-89.757138, 30.03865], [-89.763216, 30.042108], [-89.782534, 30.045372], [-89.78463, 30.045253], [-89.813684, 30.043605], [-89.818561, 30.043328], [-89.829762, 30.033275], [-89.830442, 30.032664], [-89.832213, 30.031075], [-89.832965, 30.0304], [-89.833794, 30.029656], [-89.834644, 30.028893], [-89.835202, 30.028393], [-89.839926, 30.024153], [-89.839933, 30.024146], [-89.840963, 30.022995], [-89.841739, 30.022127], [-89.854533, 30.007821], [-89.989882, 29.98949], [-90.012102, 29.94598], [-89.921019, 29.915729], [-89.911037, 29.868543], [-90.008056, 29.895528], [-90.058547, 29.945334], [-90.140074, 29.947904], [-90.126559, 29.970265], [-90.124775, 29.975791]]]}, "bbox": [-90.140074, 29.868543, -89.62288, 30.199193]}, {"id": "22073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.065179, 32.723003], [-91.910952, 32.661119], [-91.913057, 32.505902], [-92.00434, 32.380499], [-92.034397, 32.277068], [-92.311851, 32.277441], [-92.311829, 32.320755], [-92.415418, 32.407812], [-92.41535, 32.495486], [-92.415071, 32.582845], [-92.272313, 32.580975], [-92.065179, 32.723003]]]}, "bbox": [-92.415418, 32.277068, -91.910952, 32.723003]}, {"id": "22079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.597741, 30.896101], [-92.823932, 30.89], [-92.829651, 31.252281], [-92.879756, 31.317373], [-92.981464, 31.346644], [-92.913019, 31.368236], [-92.718983, 31.517594], [-92.694666, 31.40724], [-92.631944, 31.390478], [-92.196131, 31.477877], [-92.086718, 31.335374], [-92.23323, 31.321545], [-92.234258, 31.131466], [-92.208299, 30.96243], [-92.280738, 30.965071], [-92.382742, 31.001431], [-92.48033, 30.952271], [-92.508854, 30.896003], [-92.597741, 30.896101]]]}, "bbox": [-92.981464, 30.89, -92.086718, 31.517594]}, {"id": "22097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.493259, 30.480499], [-92.42078, 30.53882], [-92.262719, 30.538738], [-92.211243, 30.568125], [-92.17255, 30.713365], [-92.212711, 30.848607], [-91.815258, 30.848107], [-91.733673, 30.70173], [-91.756193, 30.497738], [-91.678896, 30.394731], [-91.869273, 30.417235], [-91.988718, 30.368598], [-92.056066, 30.378237], [-92.142184, 30.298817], [-92.176444, 30.436852], [-92.244795, 30.480193], [-92.493259, 30.480499]]]}, "bbox": [-92.493259, 30.298817, -91.678896, 30.848607]}, {"id": "22103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.69058, 30.458773], [-89.68341, 30.451793], [-89.629941, 30.339449], [-89.629877, 30.321017], [-89.640694, 30.301313], [-89.643575, 30.293099], [-89.64344, 30.287682], [-89.607655, 30.217096], [-89.580754, 30.186197], [-89.572654, 30.180897], [-89.524504, 30.180753], [-89.531213, 30.177099], [-89.537493, 30.171745], [-89.555013, 30.170798], [-89.562825, 30.168667], [-89.56827, 30.163932], [-89.572093, 30.160362], [-89.587062, 30.150648], [-89.595021, 30.149891], [-89.598027, 30.152409], [-89.617542, 30.156422], [-89.62288, 30.152368], [-89.749211, 30.176429], [-89.794106, 30.151326], [-89.878689, 30.199193], [-89.99426, 30.150039], [-90.105456, 30.191801], [-90.243034, 30.224447], [-90.255648, 30.711905], [-89.994201, 30.66543], [-89.842585, 30.666005], [-89.823384, 30.608535], [-89.806843, 30.572039], [-89.76057, 30.515761], [-89.732577, 30.492502], [-89.724614, 30.491902], [-89.69058, 30.458773]]]}, "bbox": [-90.255648, 30.149891, -89.524504, 30.711905]}, {"id": "22105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.369371, 31.000335], [-90.347241, 31.000359], [-90.255648, 30.711905], [-90.243034, 30.224447], [-90.277855, 30.230888], [-90.297375, 30.293658], [-90.401254, 30.285534], [-90.546118, 30.430283], [-90.567165, 30.650023], [-90.565857, 30.663902], [-90.567195, 30.999733], [-90.547615, 30.999723], [-90.486749, 30.999693], [-90.485876, 30.99974], [-90.477284, 30.999717], [-90.475928, 30.99974], [-90.474094, 30.999798], [-90.442479, 30.999722], [-90.441725, 30.999729], [-90.437351, 30.99973], [-90.426849, 30.999776], [-90.422117, 30.99981], [-90.369371, 31.000335]]]}, "bbox": [-90.567195, 30.224447, -90.243034, 31.000359]}, {"id": "22109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.006743, 29.714771], [-90.880194, 29.716809], [-90.807692, 29.775908], [-90.766849, 29.695477], [-90.574611, 29.559141], [-90.384285, 29.365755], [-90.376666, 29.302883], [-90.409416, 29.196135], [-90.432912, 29.188132], [-90.435907, 29.188449], [-90.443954, 29.19583], [-90.472489, 29.192688], [-90.473273, 29.195224], [-90.468773, 29.198469], [-90.467233, 29.202549], [-90.485786, 29.209843], [-90.494928, 29.216713], [-90.490987, 29.220883], [-90.46832, 29.227532], [-90.465764, 29.242951], [-90.462866, 29.249809], [-90.450674, 29.263739], [-90.452186, 29.26625], [-90.472779, 29.272556], [-90.495299, 29.287277], [-90.510555, 29.290925], [-90.517277, 29.282719], [-90.526216, 29.276492], [-90.552005, 29.278512], [-90.565436, 29.285111], [-90.582525, 29.276037], [-90.589724, 29.248521], [-90.58847, 29.245863], [-90.583924, 29.242886], [-90.576506, 29.243986], [-90.565378, 29.242475], [-90.544547, 29.230683], [-90.543245, 29.227843], [-90.544311, 29.224292], [-90.556501, 29.219913], [-90.55739, 29.207881], [-90.560889, 29.204261], [-90.575277, 29.206827], [-90.618413, 29.20329], [-90.624161, 29.210366], [-90.62742, 29.211004], [-90.633819, 29.209128], [-90.640223, 29.196554], [-90.645612, 29.175867], [-90.645169, 29.172958], [-90.640863, 29.171261], [-90.636973, 29.164572], [-90.647042, 29.12858], [-90.677724, 29.118742], [-90.691109, 29.121722], [-90.700893, 29.12147], [-90.718035, 29.116611], [-90.731239, 29.122886], [-90.764189, 29.113374], [-90.773458, 29.100133], [-90.799444, 29.087377], [-90.802053, 29.083322], [-90.803699, 29.063709], [-90.79872, 29.054841], [-90.781981, 29.049431], [-90.765188, 29.049403], [-90.750092, 29.053247], [-90.7253, 29.066616], [-90.709105, 29.064305], [-90.70535, 29.062679], [-90.702102, 29.060275], [-90.692205, 29.059607], [-90.683645, 29.060944], [-90.676958, 29.063619], [-90.665589, 29.06723], [-90.652348, 29.069237], [-90.644189, 29.07151], [-90.641247, 29.072313], [-90.63924, 29.072848], [-90.637623, 29.072084], [-90.636033, 29.069792], [-90.637495, 29.066608], [-90.648058, 29.062649], [-90.730899, 29.042259], [-90.755677, 29.038997], [-90.79768, 29.039741], [-90.811473, 29.03658], [-90.839345, 29.039167], [-90.842762, 29.042947], [-90.844849, 29.048721], [-90.841226, 29.054266], [-90.844593, 29.06728], [-90.862757, 29.094863], [-90.867766, 29.095434], [-90.877583, 29.104891], [-90.885351, 29.117016], [-90.898215, 29.131342], [-90.925797, 29.153116], [-90.941877, 29.162373], [-90.948091, 29.174104], [-90.961278, 29.180817], [-90.981458, 29.171211], [-91.000096, 29.169481], [-91.023955, 29.174784], [-91.031786, 29.182188], [-91.05863, 29.181734], [-91.094015, 29.187711], [-91.11476, 29.207918], [-91.129141, 29.215863], [-91.199647, 29.221287], [-91.219032, 29.226051], [-91.278792, 29.247776], [-91.302677, 29.265958], [-91.334885, 29.298775], [-91.33275, 29.305816], [-91.309314, 29.305698], [-91.299054, 29.309017], [-91.291821, 29.311357], [-91.29042, 29.313062], [-91.279742, 29.326058], [-91.276647, 29.329825], [-91.276187, 29.332783], [-91.274308, 29.344878], [-91.270582, 29.355415], [-91.270053, 29.356912], [-91.26994, 29.357231], [-91.266589, 29.361218], [-91.265479, 29.361767], [-91.251546, 29.368659], [-91.251232, 29.368814], [-91.249517, 29.369662], [-91.249109, 29.369864], [-91.245558, 29.37058], [-91.238515, 29.371999], [-91.235348, 29.370638], [-91.222377, 29.360703], [-91.207299, 29.360703], [-91.197465, 29.369882], [-91.200087, 29.38955], [-91.218463, 29.407235], [-91.215976, 29.412505], [-91.214284, 29.416089], [-91.211999, 29.420931], [-91.2151, 29.427542], [-91.217448, 29.432549], [-91.218067, 29.433193], [-91.219242, 29.434418], [-91.221166, 29.436421], [-91.24164, 29.441021], [-91.251319, 29.444483], [-91.258226, 29.446954], [-91.259537, 29.458001], [-91.259844, 29.460582], [-91.259988, 29.461803], [-91.260024, 29.462102], [-91.261588, 29.464954], [-91.265649, 29.472362], [-91.260661, 29.54451], [-91.178048, 29.609703], [-91.082602, 29.626368], [-91.006743, 29.714771]]]}, "bbox": [-91.334885, 29.03658, -90.376666, 29.775908]}, {"id": "22115", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.554576, 30.87747], [-93.530936, 30.924534], [-93.540354, 31.008135], [-93.527644, 31.074509], [-93.531744, 31.180817], [-93.535097, 31.185614], [-93.548931, 31.186601], [-93.55254, 31.185605], [-93.534919, 31.276579], [-93.442554, 31.276716], [-93.390495, 31.364147], [-93.236104, 31.364507], [-92.981464, 31.346644], [-92.879756, 31.317373], [-92.829651, 31.252281], [-92.823932, 30.89], [-92.978453, 30.878175], [-93.554576, 30.87747]]]}, "bbox": [-93.554576, 30.87747, -92.823932, 31.364507]}, {"id": "23001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-70.080839, 43.926458], [-70.229244, 43.974064], [-70.315374, 44.037807], [-70.363874, 43.986445], [-70.480078, 44.032078], [-70.391735, 44.153562], [-70.334094, 44.210753], [-70.325218, 44.208399], [-70.265223, 44.362913], [-70.276752, 44.407534], [-70.26835, 44.416398], [-70.274412, 44.440632], [-70.238904, 44.458942], [-70.201276, 44.477976], [-70.12939, 44.487217], [-70.100491, 44.383854], [-70.07426, 44.290154], [-70.075747, 44.206168], [-69.993792, 44.180594], [-70.010329, 44.168651], [-70.027386, 44.130577], [-70.005471, 44.124519], [-70.051824, 43.990982], [-70.047002, 43.988078], [-70.046586, 43.985642], [-70.036399, 43.978721], [-70.034238, 43.975661], [-70.080839, 43.926458]]]}, "bbox": [-70.480078, 43.926458, -69.993792, 44.487217]}, {"id": "23003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-68.433001, 45.581204], [-68.436443, 46.382121], [-68.694877, 46.382612], [-68.69492, 46.395505], [-68.819401, 46.395782], [-68.821414, 46.57251], [-69.721109, 46.574053], [-70.023016, 46.573486], [-69.997086, 46.69523], [-69.818552, 46.87503], [-69.566383, 47.125032], [-69.22442, 47.459686], [-69.146439, 47.44886], [-69.055465, 47.432274], [-69.042702, 47.426651], [-69.032909, 47.407907], [-69.031127, 47.403106], [-69.04079, 47.39808], [-69.041733, 47.397326], [-69.03928, 47.385052], [-69.043958, 47.383682], [-69.046448, 47.383934], [-69.053819, 47.375036], [-69.050334, 47.256621], [-69.0402, 47.2451], [-69.033456, 47.240984], [-68.982002, 47.220295], [-68.941948, 47.206248], [-68.926421, 47.19786], [-68.900985, 47.178519], [-68.85343, 47.193443], [-68.723168, 47.239569], [-68.580398, 47.286957], [-68.474851, 47.297534], [-68.361559, 47.355605], [-68.33368, 47.36007], [-68.284101, 47.360389], [-68.240168, 47.354217], [-68.224005, 47.348456], [-68.153509, 47.314038], [-67.955669, 47.199542], [-67.952269, 47.196142], [-67.949369, 47.182542], [-67.935868, 47.164843], [-67.889155, 47.118772], [-67.846865, 47.092404], [-67.816345, 47.081188], [-67.790515, 47.067921], [-67.789461, 47.062544], [-67.78938, 46.765528], [-67.789284, 46.758219], [-67.782114, 46.279381], [-67.781095, 45.943032], [-67.768709, 45.901997], [-67.763955, 45.829983], [-67.763767, 45.820315], [-67.780443, 45.816206], [-67.801989, 45.803546], [-67.806598, 45.794723], [-67.817892, 45.693705], [-67.805483, 45.680241], [-68.048012, 45.639897], [-68.410884, 45.573337], [-68.414389, 45.572848], [-68.433028, 45.578482], [-68.433001, 45.581204]]]}, "bbox": [-70.023016, 45.572848, -67.763767, 47.459686]}, {"id": "23005", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-70.119671, 43.748621], [-70.113059, 43.74913], [-70.097318, 43.757292], [-70.094986, 43.753211], [-70.100233, 43.742134], [-70.107812, 43.734555], [-70.109561, 43.730474], [-70.108978, 43.722312], [-70.124136, 43.70832], [-70.129383, 43.70832], [-70.138128, 43.718231], [-70.138711, 43.727559], [-70.127051, 43.742717], [-70.119671, 43.748621]]], [[[-70.171245, 43.663498], [-70.171136, 43.6633], [-70.190323, 43.642986], [-70.205934, 43.633633], [-70.207165, 43.63369], [-70.211062, 43.641842], [-70.200116, 43.662978], [-70.188047, 43.673762], [-70.184659, 43.674699], [-70.171245, 43.663498]]], [[[-70.186213, 43.682655], [-70.187536, 43.678669], [-70.192574, 43.673139], [-70.207341, 43.662562], [-70.210825, 43.661695], [-70.21313, 43.662973], [-70.213948, 43.666161], [-70.209627, 43.676308], [-70.201893, 43.685483], [-70.196535, 43.688784], [-70.191041, 43.689071], [-70.186213, 43.682655]]], [[[-70.163884, 43.692404], [-70.156787, 43.694706], [-70.146115, 43.701635], [-70.135563, 43.700658], [-70.154503, 43.680933], [-70.168227, 43.675136], [-70.170284, 43.675441], [-70.173571, 43.683734], [-70.171339, 43.687546], [-70.163884, 43.692404]]], [[[-70.087621, 43.699913], [-70.093704, 43.6918], [-70.099594, 43.695366], [-70.115908, 43.682978], [-70.118291, 43.683343], [-70.118174, 43.686375], [-70.115961, 43.689202], [-70.100683, 43.705962], [-70.095727, 43.709278], [-70.093113, 43.710524], [-70.092137, 43.709468], [-70.097184, 43.700929], [-70.091929, 43.698111], [-70.087621, 43.699913]]], [[[-70.595631, 44.032057], [-70.480078, 44.032078], [-70.363874, 43.986445], [-70.315374, 44.037807], [-70.229244, 43.974064], [-70.080839, 43.926458], [-70.034238, 43.975661], [-69.976226, 43.915276], [-69.857032, 43.944742], [-69.88739, 43.777052], [-69.903164, 43.77239], [-69.915593, 43.775112], [-69.927011, 43.780174], [-69.948539, 43.765948], [-69.953246, 43.768806], [-69.958056, 43.767786], [-69.982574, 43.750801], [-69.989131, 43.743227], [-69.994479, 43.728451], [-69.992396, 43.726852], [-69.992615, 43.724793], [-70.001645, 43.717666], [-70.006954, 43.717065], [-70.005205, 43.727559], [-70.001125, 43.733389], [-69.998793, 43.740385], [-70.001708, 43.744466], [-70.041351, 43.738053], [-70.040768, 43.745049], [-70.034355, 43.759041], [-70.02561, 43.769534], [-70.005205, 43.787607], [-69.99821, 43.798684], [-69.999376, 43.805097], [-70.002874, 43.812093], [-70.011035, 43.810927], [-70.026193, 43.822587], [-70.026193, 43.829], [-70.023278, 43.834247], [-70.006954, 43.844158], [-70.002874, 43.848239], [-70.002874, 43.852903], [-70.009869, 43.859315], [-70.019197, 43.858733], [-70.022845, 43.856245], [-70.032023, 43.849988], [-70.053594, 43.828417], [-70.053011, 43.821421], [-70.064671, 43.813259], [-70.06642, 43.819672], [-70.080995, 43.819672], [-70.107229, 43.809178], [-70.142792, 43.791688], [-70.153869, 43.781194], [-70.153869, 43.774781], [-70.176023, 43.76079], [-70.177772, 43.764871], [-70.172525, 43.773615], [-70.17544, 43.777113], [-70.190014, 43.771866], [-70.194678, 43.766037], [-70.197593, 43.753211], [-70.194095, 43.745632], [-70.194678, 43.742134], [-70.217998, 43.71998], [-70.219164, 43.715899], [-70.215666, 43.707737], [-70.216832, 43.704822], [-70.227909, 43.701907], [-70.23199, 43.704822], [-70.251812, 43.683251], [-70.254144, 43.676839], [-70.252961, 43.67501], [-70.247321, 43.671973], [-70.242289, 43.669544], [-70.239512, 43.665986], [-70.240119, 43.664685], [-70.241942, 43.663296], [-70.240987, 43.659132], [-70.22299, 43.639023], [-70.211204, 43.625765], [-70.217087, 43.596717], [-70.214369, 43.590445], [-70.20112, 43.586515], [-70.196911, 43.565146], [-70.206123, 43.557627], [-70.216782, 43.556874], [-70.219784, 43.562149], [-70.231963, 43.561118], [-70.244331, 43.551849], [-70.261917, 43.553687], [-70.272497, 43.562616], [-70.299184, 43.550589], [-70.307764, 43.544315], [-70.341793, 43.540484], [-70.352826, 43.535855], [-70.353392, 43.535405], [-70.492009, 43.606769], [-70.457743, 43.642372], [-70.549965, 43.715796], [-70.659622, 43.710902], [-70.652986, 43.787544], [-70.782984, 43.814147], [-70.72978, 43.92833], [-70.747507, 43.945901], [-70.715418, 43.961815], [-70.821803, 44.077089], [-70.624329, 44.171036], [-70.587331, 44.122516], [-70.595631, 44.032057]]]]}, "bbox": [-70.821803, 43.535405, -69.857032, 44.171036]}, {"id": "23009", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-68.499465, 44.12419], [-68.492892, 44.116921], [-68.491521, 44.109833], [-68.502942, 44.099722], [-68.51706, 44.10341], [-68.518703, 44.113222], [-68.511266, 44.125082], [-68.506979, 44.127237], [-68.499465, 44.12419]]], [[[-68.358388, 44.125082], [-68.35301, 44.127884], [-68.346724, 44.127749], [-68.330716, 44.110598], [-68.331032, 44.10758], [-68.338012, 44.101473], [-68.365176, 44.101464], [-68.376593, 44.112207], [-68.376591, 44.113762], [-68.375382, 44.11646], [-68.365514, 44.124079], [-68.358388, 44.125082]]], [[[-68.453236, 44.189998], [-68.437789, 44.188216], [-68.424441, 44.190753], [-68.416434, 44.187047], [-68.408207, 44.176298], [-68.384903, 44.154955], [-68.396634, 44.14069], [-68.427534, 44.119266], [-68.438518, 44.11618], [-68.448646, 44.125581], [-68.447505, 44.133493], [-68.456813, 44.145268], [-68.479934, 44.1478], [-68.484696, 44.146495], [-68.496639, 44.146855], [-68.502096, 44.152388], [-68.500817, 44.160026], [-68.495511, 44.162429], [-68.474365, 44.181875], [-68.453236, 44.189998]]], [[[-68.680773, 44.279242], [-68.675416, 44.279753], [-68.668213, 44.276511], [-68.658849, 44.268588], [-68.623554, 44.255622], [-68.611669, 44.244818], [-68.605906, 44.230772], [-68.612749, 44.207722], [-68.624994, 44.197637], [-68.625715, 44.194756], [-68.619592, 44.189354], [-68.618511, 44.186472], [-68.618872, 44.18107], [-68.643002, 44.15766], [-68.652366, 44.153698], [-68.670014, 44.151537], [-68.671454, 44.138572], [-68.675056, 44.137131], [-68.681899, 44.138212], [-68.686581, 44.147216], [-68.692343, 44.153698], [-68.700987, 44.15838], [-68.709631, 44.158741], [-68.713232, 44.160541], [-68.716474, 44.162702], [-68.720435, 44.169185], [-68.718995, 44.183231], [-68.715033, 44.191154], [-68.714313, 44.20376], [-68.721156, 44.212404], [-68.722956, 44.219607], [-68.722956, 44.223568], [-68.718635, 44.228611], [-68.711792, 44.228971], [-68.700627, 44.234013], [-68.694144, 44.248779], [-68.680458, 44.262105], [-68.677577, 44.268948], [-68.677577, 44.275431], [-68.680773, 44.279242]]], [[[-68.355279, 44.199096], [-68.333227, 44.207308], [-68.32423, 44.205732], [-68.31606, 44.200244], [-68.314789, 44.197157], [-68.318476, 44.196608], [-68.321178, 44.199032], [-68.332639, 44.192131], [-68.339029, 44.171839], [-68.347416, 44.169459], [-68.378872, 44.184222], [-68.371235, 44.193003], [-68.364469, 44.197534], [-68.355279, 44.199096]]], [[[-68.472831, 44.219767], [-68.460205, 44.212498], [-68.453843, 44.201683], [-68.454224, 44.199534], [-68.459182, 44.197681], [-68.48452, 44.202886], [-68.487227, 44.209517], [-68.482726, 44.227058], [-68.480565, 44.228591], [-68.470323, 44.22832], [-68.468572, 44.223999], [-68.472831, 44.219767]]], [[[-68.792139, 44.237819], [-68.769833, 44.222787], [-68.769047, 44.213351], [-68.780055, 44.203129], [-68.789884, 44.203915], [-68.801285, 44.208633], [-68.809149, 44.212565], [-68.815439, 44.214137], [-68.822909, 44.216496], [-68.829593, 44.21689], [-68.837849, 44.227112], [-68.839422, 44.236547], [-68.833524, 44.240872], [-68.827627, 44.242838], [-68.825631, 44.242556], [-68.792139, 44.237819]]], [[[-68.23638, 44.266254], [-68.214641, 44.263156], [-68.211329, 44.257074], [-68.212474, 44.255405], [-68.221383, 44.257254], [-68.231469, 44.256016], [-68.23713, 44.25343], [-68.24031, 44.251622], [-68.241545, 44.247543], [-68.240806, 44.239723], [-68.248913, 44.235443], [-68.266669, 44.234033], [-68.274427, 44.237099], [-68.276857, 44.240794], [-68.274719, 44.258675], [-68.262128, 44.260774], [-68.254153, 44.257836], [-68.246598, 44.257836], [-68.241142, 44.260354], [-68.23638, 44.266254]]], [[[-68.498637, 44.369686], [-68.478785, 44.319563], [-68.489641, 44.313705], [-68.515173, 44.324797], [-68.530394, 44.333583], [-68.528635, 44.344605], [-68.520671, 44.358357], [-68.52193, 44.367591], [-68.518573, 44.381022], [-68.512697, 44.384799], [-68.50766, 44.385219], [-68.501364, 44.382281], [-68.498637, 44.369686]]], [[[-68.841821, 44.611062], [-68.846945, 44.625307], [-68.822416, 44.664005], [-68.811815, 44.670465], [-68.815793, 44.683754], [-68.69093, 44.721668], [-68.647134, 44.703636], [-68.616673, 44.740992], [-68.528542, 44.752167], [-68.445219, 44.763014], [-68.454889, 44.80155], [-68.477952, 44.889091], [-68.501095, 44.980718], [-68.375892, 44.997373], [-68.396903, 45.083296], [-68.270497, 45.100121], [-68.295438, 45.190443], [-68.303714, 45.221531], [-68.054985, 45.252577], [-67.981851, 44.955885], [-68.105017, 44.939088], [-67.993551, 44.592162], [-67.957089, 44.415408], [-67.961613, 44.4125], [-67.961613, 44.39907], [-67.978876, 44.387034], [-67.985668, 44.386917], [-67.997288, 44.399909], [-68.000646, 44.406624], [-68.006102, 44.409562], [-68.010719, 44.407464], [-68.019533, 44.396971], [-68.01399, 44.390255], [-68.034223, 44.360456], [-68.039679, 44.360876], [-68.044296, 44.357938], [-68.044716, 44.351222], [-68.043037, 44.343667], [-68.049334, 44.33073], [-68.060356, 44.331988], [-68.067047, 44.335692], [-68.076066, 44.347925], [-68.077873, 44.373047], [-68.086268, 44.376405], [-68.090045, 44.371369], [-68.092983, 44.370949], [-68.103818, 44.385111], [-68.11229, 44.401588], [-68.11271, 44.421314], [-68.116487, 44.429289], [-68.119845, 44.445658], [-68.119425, 44.459508], [-68.115228, 44.467903], [-68.117746, 44.475038], [-68.123203, 44.478815], [-68.150904, 44.482383], [-68.159298, 44.479445], [-68.162656, 44.477346], [-68.163075, 44.473149], [-68.17105, 44.470211], [-68.194554, 44.47189], [-68.189517, 44.478605], [-68.189937, 44.484901], [-68.192036, 44.487419], [-68.213861, 44.492456], [-68.223934, 44.487], [-68.227292, 44.479865], [-68.224354, 44.464335], [-68.22939, 44.463496], [-68.2445, 44.471051], [-68.252474, 44.483222], [-68.261708, 44.484062], [-68.268004, 44.47147], [-68.270522, 44.459718], [-68.281015, 44.451324], [-68.298223, 44.449225], [-68.299063, 44.437893], [-68.294865, 44.432857], [-68.268423, 44.440411], [-68.247438, 44.433276], [-68.2445, 44.429919], [-68.24366, 44.420685], [-68.249956, 44.417747], [-68.249956, 44.414809], [-68.21554, 44.390466], [-68.209664, 44.392984], [-68.20354, 44.392365], [-68.196937, 44.386352], [-68.184532, 44.369145], [-68.174687, 44.343604], [-68.173608, 44.328397], [-68.191924, 44.306675], [-68.233435, 44.288578], [-68.275139, 44.288895], [-68.289409, 44.283858], [-68.298223, 44.276303], [-68.298643, 44.26665], [-68.297641, 44.263035], [-68.295265, 44.261722], [-68.290818, 44.247673], [-68.317588, 44.225101], [-68.339498, 44.222893], [-68.343132, 44.229505], [-68.365364, 44.237871], [-68.369759, 44.243311], [-68.377982, 44.247563], [-68.389848, 44.247066], [-68.401268, 44.252244], [-68.41965, 44.274612], [-68.421302, 44.284468], [-68.426107, 44.295102], [-68.430946, 44.298624], [-68.430853, 44.312609], [-68.411965, 44.322262], [-68.409027, 44.32562], [-68.409867, 44.329397], [-68.421619, 44.336113], [-68.421471, 44.337754], [-68.409867, 44.356259], [-68.406089, 44.356679], [-68.396552, 44.363941], [-68.395516, 44.369561], [-68.398035, 44.376191], [-68.367565, 44.39071], [-68.36372, 44.388935], [-68.360318, 44.389674], [-68.3581, 44.392337], [-68.359082, 44.402847], [-68.372445, 44.42369], [-68.3791, 44.430049], [-68.387678, 44.430936], [-68.390932, 44.427387], [-68.392559, 44.41807], [-68.416412, 44.397973], [-68.421783, 44.396411], [-68.427874, 44.3968], [-68.433901, 44.401534], [-68.432556, 44.426594], [-68.429648, 44.439136], [-68.439281, 44.448043], [-68.448006, 44.449497], [-68.455095, 44.447498], [-68.460003, 44.443317], [-68.46382, 44.436592], [-68.458849, 44.412141], [-68.464106, 44.398078], [-68.464262, 44.391081], [-68.461072, 44.385639], [-68.461072, 44.378504], [-68.466109, 44.377245], [-68.47828, 44.378084], [-68.483317, 44.388157], [-68.480798, 44.397391], [-68.472824, 44.404106], [-68.480379, 44.432647], [-68.485415, 44.434326], [-68.494649, 44.429709], [-68.499686, 44.414179], [-68.505562, 44.411661], [-68.51452, 44.41334], [-68.529905, 44.39907], [-68.534522, 44.397811], [-68.555088, 44.403687], [-68.560964, 44.402847], [-68.565161, 44.39907], [-68.56642, 44.394453], [-68.564741, 44.385219], [-68.559285, 44.374307], [-68.550051, 44.371788], [-68.545434, 44.355], [-68.553873, 44.346256], [-68.563209, 44.333039], [-68.566936, 44.317603], [-68.566203, 44.313007], [-68.564005, 44.308022], [-68.556236, 44.300819], [-68.538595, 44.299902], [-68.531532, 44.290388], [-68.532266, 44.28634], [-68.528611, 44.276117], [-68.519516, 44.265046], [-68.519819, 44.260209], [-68.529802, 44.249594], [-68.528153, 44.241263], [-68.52348, 44.235819], [-68.525302, 44.227554], [-68.534595, 44.229331], [-68.550802, 44.236534], [-68.551162, 44.238335], [-68.562687, 44.248059], [-68.572772, 44.252741], [-68.603385, 44.27471], [-68.61563, 44.275431], [-68.626075, 44.280473], [-68.627515, 44.284435], [-68.630036, 44.286235], [-68.682979, 44.299201], [-68.725657, 44.321591], [-68.733004, 44.328388], [-68.746164, 44.331148], [-68.762021, 44.329597], [-68.766197, 44.327015], [-68.771489, 44.320523], [-68.795063, 44.30786], [-68.827197, 44.31216], [-68.828377, 44.316549], [-68.825419, 44.334547], [-68.821311, 44.349594], [-68.817647, 44.353093], [-68.814811, 44.362194], [-68.818703, 44.375077], [-68.821767, 44.40894], [-68.815325, 44.42808], [-68.801634, 44.434803], [-68.785898, 44.462611], [-68.783679, 44.473879], [-68.796206, 44.471437], [-68.841821, 44.611062]]]]}, "bbox": [-68.846945, 44.099722, -67.957089, 45.252577]}, {"id": "23011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-69.792813, 44.57733], [-69.776294, 44.608236], [-69.744282, 44.602607], [-69.742091, 44.598246], [-69.605746, 44.577264], [-69.579094, 44.626971], [-69.62848, 44.671969], [-69.632971, 44.698763], [-69.471712, 44.692899], [-69.475599, 44.676678], [-69.442936, 44.672381], [-69.460558, 44.655611], [-69.460606, 44.647054], [-69.393123, 44.640375], [-69.395987, 44.457078], [-69.4354, 44.462422], [-69.445498, 44.463839], [-69.506382, 44.34287], [-69.521258, 44.280683], [-69.528223, 44.275447], [-69.534405, 44.272213], [-69.534837, 44.267363], [-69.542176, 44.262737], [-69.547398, 44.260988], [-69.650171, 44.279625], [-69.665441, 44.227576], [-69.656942, 44.125461], [-69.656742, 44.122392], [-69.666298, 44.124003], [-69.758208, 44.139334], [-69.763566, 44.153217], [-69.854983, 44.167862], [-69.897783, 44.107662], [-70.005471, 44.124519], [-70.027386, 44.130577], [-70.010329, 44.168651], [-69.993792, 44.180594], [-70.075747, 44.206168], [-70.07426, 44.290154], [-70.100491, 44.383854], [-70.12939, 44.487217], [-70.04235, 44.485235], [-70.030536, 44.508786], [-69.944082, 44.537828], [-69.930451, 44.610852], [-69.792813, 44.57733]]]}, "bbox": [-70.12939, 44.107662, -69.393123, 44.698763]}, {"id": "23013", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-68.880242, 43.863398], [-68.882554, 43.848525], [-68.876224, 43.836597], [-68.886725, 43.822195], [-68.898319, 43.820987], [-68.899108, 43.821925], [-68.893537, 43.831498], [-68.8947, 43.84397], [-68.898045, 43.849545], [-68.903957, 43.848684], [-68.908222, 43.849852], [-68.902618, 43.868855], [-68.889367, 43.87553], [-68.880242, 43.863398]]], [[[-69.043981, 44.005684], [-69.0782, 43.974132], [-69.092994, 43.979063], [-69.061966, 44.015023], [-69.047583, 44.013995], [-69.043981, 44.005684]]], [[[-68.618212, 44.012367], [-68.635315, 44.018886], [-68.64736, 44.0145], [-68.651863, 44.009859], [-68.652881, 44.003845], [-68.657031, 44.003823], [-68.659972, 44.016013], [-68.659874, 44.022758], [-68.657369, 44.024404], [-68.650767, 44.039908], [-68.654783, 44.059599], [-68.661594, 44.075837], [-68.627893, 44.088128], [-68.62535, 44.092906], [-68.6181, 44.096706], [-68.609722, 44.094674], [-68.602863, 44.08665], [-68.589563, 44.075585], [-68.585916, 44.075335], [-68.584074, 44.070578], [-68.588098, 44.06127], [-68.590792, 44.058662], [-68.601099, 44.058362], [-68.611473, 44.025176], [-68.610703, 44.013422], [-68.615896, 44.009761], [-68.618212, 44.012367]]], [[[-68.785601, 44.053503], [-68.790595, 44.053832], [-68.807315, 44.035796], [-68.818441, 44.032046], [-68.828465, 44.032118], [-68.862845, 44.025037], [-68.874139, 44.025359], [-68.889717, 44.032516], [-68.899997, 44.06696], [-68.905098, 44.077344], [-68.913406, 44.08519], [-68.907812, 44.105518], [-68.908984, 44.110001], [-68.943105, 44.10973], [-68.944597, 44.11284], [-68.935327, 44.13038], [-68.917286, 44.148239], [-68.888597, 44.15955], [-68.87868, 44.166612], [-68.847249, 44.183017], [-68.825067, 44.186338], [-68.819156, 44.180462], [-68.822206, 44.178815], [-68.82284, 44.173693], [-68.818423, 44.160978], [-68.792221, 44.145998], [-68.786886, 44.143961], [-68.782375, 44.14531], [-68.780693, 44.143274], [-68.792065, 44.136759], [-68.802162, 44.137857], [-68.818039, 44.136852], [-68.819659, 44.135434], [-68.820515, 44.130198], [-68.81953, 44.122056], [-68.815562, 44.115836], [-68.806832, 44.116339], [-68.790525, 44.09292], [-68.781772, 44.084274], [-68.772639, 44.078439], [-68.77029, 44.069566], [-68.77965, 44.057754], [-68.785601, 44.053503]]], [[[-69.321529, 44.1729], [-69.528223, 44.275447], [-69.521258, 44.280683], [-69.506382, 44.34287], [-69.394361, 44.342934], [-69.346616, 44.308337], [-69.268882, 44.364653], [-69.121622, 44.255644], [-69.02859, 44.249139], [-69.029434, 44.248558], [-69.040193, 44.233673], [-69.043599, 44.225029], [-69.042807, 44.215173], [-69.05181, 44.19592], [-69.05269, 44.188082], [-69.054546, 44.171542], [-69.06124, 44.165498], [-69.077776, 44.165043], [-69.079835, 44.160953], [-69.080978, 44.156768], [-69.079608, 44.143962], [-69.075667, 44.129991], [-69.080331, 44.117824], [-69.100863, 44.104529], [-69.101107, 44.093601], [-69.092, 44.085734], [-69.089078, 44.085326], [-69.076452, 44.090634], [-69.056303, 44.095162], [-69.050814, 44.094888], [-69.043403, 44.092164], [-69.031878, 44.079036], [-69.048917, 44.062506], [-69.050566, 44.063152], [-69.050622, 44.068017], [-69.056093, 44.06949], [-69.064299, 44.069911], [-69.067876, 44.067596], [-69.079805, 44.055256], [-69.073767, 44.046135], [-69.081131, 44.041295], [-69.094177, 44.038981], [-69.113113, 44.028881], [-69.125738, 44.019623], [-69.128052, 44.017309], [-69.124475, 44.007419], [-69.128611, 44.005922], [-69.148883, 43.998582], [-69.162559, 43.999003], [-69.170345, 43.995637], [-69.193805, 43.975543], [-69.197803, 43.967547], [-69.193805, 43.959762], [-69.19633, 43.950504], [-69.203668, 43.941806], [-69.214205, 43.935583], [-69.237368, 43.931596], [-69.24271, 43.925465], [-69.259838, 43.921427], [-69.265257, 43.933393], [-69.267515, 43.943667], [-69.280498, 43.95744], [-69.282559, 43.958105], [-69.283998, 43.958569], [-69.288513, 43.957665], [-69.307776, 43.943451], [-69.31427, 43.942951], [-69.319751, 43.94487], [-69.305176, 43.956676], [-69.304301, 43.962068], [-69.321808, 43.969975], [-69.281839, 44.022532], [-69.321529, 44.1729]]]]}, "bbox": [-69.528223, 43.820987, -68.584074, 44.364653]}, {"id": "23019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-68.815793, 44.683754], [-69.014167, 44.671794], [-69.183732, 44.644023], [-69.2052, 44.729586], [-69.266785, 44.721928], [-69.305521, 44.895988], [-69.355667, 45.073469], [-69.232021, 45.090166], [-68.856587, 45.142783], [-68.880923, 45.224947], [-68.776061, 45.240317], [-68.800906, 45.329148], [-68.857297, 45.527301], [-68.964653, 45.512367], [-68.95891, 45.662195], [-68.827039, 45.684826], [-68.819401, 46.395782], [-68.69492, 46.395505], [-68.694877, 46.382612], [-68.436443, 46.382121], [-68.433001, 45.581204], [-68.433028, 45.578482], [-68.414389, 45.572848], [-68.410884, 45.573337], [-68.048012, 45.639897], [-67.93976, 45.267845], [-68.054985, 45.252577], [-68.303714, 45.221531], [-68.295438, 45.190443], [-68.270497, 45.100121], [-68.396903, 45.083296], [-68.375892, 44.997373], [-68.501095, 44.980718], [-68.477952, 44.889091], [-68.454889, 44.80155], [-68.445219, 44.763014], [-68.528542, 44.752167], [-68.616673, 44.740992], [-68.647134, 44.703636], [-68.69093, 44.721668], [-68.815793, 44.683754]]]}, "bbox": [-69.355667, 44.644023, -67.93976, 46.395782]}, {"id": "23023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-70.051824, 43.990982], [-70.005471, 44.124519], [-69.897783, 44.107662], [-69.854983, 44.167862], [-69.763566, 44.153217], [-69.758208, 44.139334], [-69.813549, 44.026011], [-69.700097, 44.006685], [-69.743634, 43.893256], [-69.692076, 43.857175], [-69.689652, 43.843814], [-69.697236, 43.832721], [-69.697858, 43.824918], [-69.705838, 43.823024], [-69.714873, 43.810264], [-69.717804, 43.801047], [-69.717074, 43.792403], [-69.719723, 43.786685], [-69.752801, 43.75594], [-69.761587, 43.757], [-69.780097, 43.755397], [-69.782429, 43.753794], [-69.782283, 43.75117], [-69.778494, 43.747089], [-69.778348, 43.744612], [-69.835323, 43.721125], [-69.838689, 43.70514], [-69.851297, 43.703581], [-69.855081, 43.704746], [-69.857927, 43.723915], [-69.855595, 43.73266], [-69.858947, 43.740531], [-69.868673, 43.742701], [-69.862155, 43.758962], [-69.869732, 43.775656], [-69.884066, 43.778035], [-69.88739, 43.777052], [-69.857032, 43.944742], [-69.976226, 43.915276], [-70.034238, 43.975661], [-70.036399, 43.978721], [-70.046586, 43.985642], [-70.047002, 43.988078], [-70.051824, 43.990982]]]}, "bbox": [-70.051824, 43.703581, -69.689652, 44.167862]}, {"id": "23031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-70.536702, 43.335605], [-70.553854, 43.321886], [-70.562779, 43.310614], [-70.585184, 43.270113], [-70.593907, 43.249295], [-70.591022, 43.237851], [-70.575787, 43.221859], [-70.576692, 43.217651], [-70.587814, 43.199858], [-70.618973, 43.163625], [-70.634455, 43.127603], [-70.634311, 43.122162], [-70.638355, 43.114182], [-70.654213, 43.099065], [-70.655322, 43.098008], [-70.656223, 43.093164], [-70.665958, 43.076234], [-70.673114, 43.070314], [-70.703936, 43.059621], [-70.756397, 43.079988], [-70.784108, 43.098963], [-70.819549, 43.123231], [-70.8281, 43.129086], [-70.8338, 43.146886], [-70.829174, 43.180365], [-70.828301, 43.186685], [-70.816232, 43.234997], [-70.817773, 43.237408], [-70.817865, 43.237911], [-70.822959, 43.240187], [-70.823309, 43.240343], [-70.825071, 43.24093], [-70.826711, 43.241301], [-70.828022, 43.241597], [-70.83365, 43.242868], [-70.839717, 43.250393], [-70.839213, 43.251224], [-70.863231, 43.265098], [-70.86323, 43.265109], [-70.909805, 43.306682], [-70.91246, 43.308289], [-70.916751, 43.317731], [-70.930783, 43.329569], [-70.952356, 43.333983], [-70.967229, 43.343777], [-70.984335, 43.376128], [-70.984305, 43.376814], [-70.987733, 43.391513], [-70.986812, 43.414264], [-70.964433, 43.473276], [-70.964542, 43.473262], [-70.963742, 43.476248], [-70.954755, 43.509802], [-70.962556, 43.53431], [-70.958958, 43.537634], [-70.955337, 43.54098], [-70.955346, 43.540697], [-70.953322, 43.552718], [-70.972716, 43.570255], [-70.979985, 43.673195], [-70.980758, 43.684141], [-70.981946, 43.70096], [-70.981978, 43.701965], [-70.982238, 43.711865], [-70.982083, 43.715043], [-70.989041, 43.792152], [-70.782984, 43.814147], [-70.652986, 43.787544], [-70.659622, 43.710902], [-70.549965, 43.715796], [-70.457743, 43.642372], [-70.492009, 43.606769], [-70.353392, 43.535405], [-70.361214, 43.52919], [-70.379123, 43.507202], [-70.384885, 43.49604], [-70.385615, 43.487031], [-70.382928, 43.469674], [-70.380233, 43.46423], [-70.37223, 43.45508], [-70.349684, 43.442032], [-70.362015, 43.439077], [-70.370514, 43.434133], [-70.384949, 43.418839], [-70.383981, 43.41294], [-70.39089, 43.402607], [-70.400035, 43.399927], [-70.401666, 43.401262], [-70.406416, 43.400942], [-70.421282, 43.395777], [-70.427672, 43.389254], [-70.424421, 43.379656], [-70.424986, 43.375928], [-70.442438, 43.356487], [-70.460717, 43.34325], [-70.465975, 43.340246], [-70.472933, 43.343972], [-70.485312, 43.346391], [-70.517695, 43.344037], [-70.535244, 43.336771], [-70.536702, 43.335605]]]}, "bbox": [-70.989041, 43.059621, -70.349684, 43.814147]}, {"id": "24001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.468639, 39.516789], [-78.565929, 39.519444], [-78.655984, 39.534695], [-78.657324, 39.535087], [-78.676219, 39.540622], [-78.689455, 39.54577], [-78.760196, 39.582154], [-78.76749, 39.587487], [-78.772048, 39.593833], [-78.769029, 39.599871], [-78.760497, 39.609984], [-78.787461, 39.627492], [-78.824788, 39.590233], [-78.874744, 39.522611], [-78.968996, 39.441543], [-79.025681, 39.465539], [-79.04244, 39.479339], [-79.067072, 39.474658], [-79.067933, 39.479189], [-78.931175, 39.722775], [-78.808387, 39.722726], [-78.380599, 39.722554], [-78.342834, 39.722539], [-78.334044, 39.63577], [-78.355218, 39.640576], [-78.43025, 39.62329], [-78.457187, 39.587379], [-78.458456, 39.581158], [-78.454376, 39.574319], [-78.450207, 39.570889], [-78.432033, 39.561053], [-78.436939, 39.538959], [-78.468639, 39.516789]]]}, "bbox": [-79.067933, 39.441543, -78.334044, 39.722775]}, {"id": "24003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.438845, 39.0529], [-76.438928, 39.052788], [-76.437044, 39.051698], [-76.422933, 39.043536], [-76.407398, 39.034551], [-76.407213, 39.034444], [-76.407205, 39.034439], [-76.405338, 39.03336], [-76.405081, 39.033211], [-76.405021, 39.033124], [-76.4026, 39.029609], [-76.39778, 39.022611], [-76.397738, 39.022482], [-76.396417, 39.018449], [-76.396395, 39.01838], [-76.395639, 39.016074], [-76.395338, 39.015154], [-76.394699, 39.0132], [-76.394358, 39.01216], [-76.39408, 39.011311], [-76.412326, 38.996832], [-76.414631, 38.995002], [-76.421535, 38.989524], [-76.422181, 38.989011], [-76.427301, 38.987827], [-76.448928, 38.982823], [-76.448981, 38.982811], [-76.449188, 38.982092], [-76.450152, 38.978751], [-76.450481, 38.977612], [-76.451599, 38.976767], [-76.454581, 38.974512], [-76.474198, 38.972647], [-76.474198, 38.972646], [-76.47445, 38.970683], [-76.474882, 38.967312], [-76.474743, 38.966895], [-76.473243, 38.962397], [-76.471281, 38.956512], [-76.463081, 38.948612], [-76.460234, 38.948505], [-76.457781, 38.948412], [-76.457229, 38.947875], [-76.451695, 38.94249], [-76.45028, 38.941113], [-76.450756, 38.940412], [-76.46188, 38.924013], [-76.461747, 38.923674], [-76.460272, 38.919909], [-76.458991, 38.916639], [-76.458759, 38.916045], [-76.45808, 38.914313], [-76.459479, 38.907113], [-76.460253, 38.907152], [-76.460716, 38.907175], [-76.462312, 38.907256], [-76.46528, 38.907406], [-76.46938, 38.907613], [-76.46948, 38.911513], [-76.475761, 38.914469], [-76.49368, 38.910013], [-76.493791, 38.904225], [-76.493798, 38.903865], [-76.493806, 38.903443], [-76.493856, 38.900846], [-76.49388, 38.899614], [-76.49278, 38.895614], [-76.49088, 38.894514], [-76.490403, 38.892254], [-76.490339, 38.891955], [-76.489933, 38.890031], [-76.489713, 38.888991], [-76.489675, 38.888811], [-76.489667, 38.888772], [-76.48938, 38.887414], [-76.49068, 38.884814], [-76.491107, 38.884492], [-76.491442, 38.884239], [-76.4944, 38.88201], [-76.494588, 38.881868], [-76.494858, 38.881665], [-76.498467, 38.878944], [-76.507858, 38.871866], [-76.511135, 38.869396], [-76.519442, 38.863135], [-76.516944, 38.851157], [-76.516582, 38.851026], [-76.509285, 38.848388], [-76.509211, 38.848416], [-76.499158, 38.852156], [-76.497562, 38.852749], [-76.496579, 38.853115], [-76.496474, 38.852953], [-76.493639, 38.848595], [-76.492761, 38.847246], [-76.492017, 38.846102], [-76.491581, 38.845433], [-76.491494, 38.845299], [-76.489919, 38.842878], [-76.489878, 38.842815], [-76.489878, 38.838715], [-76.490107, 38.838176], [-76.491387, 38.835161], [-76.491606, 38.834644], [-76.491684, 38.834462], [-76.491831, 38.834116], [-76.496965, 38.822022], [-76.497692, 38.820309], [-76.498878, 38.817516], [-76.499056, 38.817258], [-76.50291, 38.811648], [-76.50653, 38.80638], [-76.506876, 38.805875], [-76.509314, 38.802328], [-76.510078, 38.801216], [-76.51113, 38.800769], [-76.514296, 38.799425], [-76.51583, 38.798774], [-76.523405, 38.795557], [-76.524679, 38.795016], [-76.524806, 38.794871], [-76.524999, 38.79465], [-76.525039, 38.794605], [-76.52521, 38.794409], [-76.525531, 38.794043], [-76.527455, 38.791844], [-76.527479, 38.791816], [-76.527463, 38.791667], [-76.527372, 38.790788], [-76.52737, 38.790774], [-76.527105, 38.788223], [-76.527045, 38.787645], [-76.526979, 38.787016], [-76.527315, 38.78666], [-76.528136, 38.78579], [-76.532487, 38.781181], [-76.533975, 38.779604], [-76.535207, 38.778298], [-76.535352, 38.778145], [-76.535379, 38.778116], [-76.535426, 38.778095], [-76.535642, 38.778], [-76.536284, 38.777719], [-76.536819, 38.777484], [-76.536849, 38.777471], [-76.53723, 38.777304], [-76.539088, 38.776488], [-76.542973, 38.774783], [-76.544372, 38.774169], [-76.544413, 38.774151], [-76.554443, 38.769749], [-76.554693, 38.769639], [-76.559697, 38.767443], [-76.559884, 38.767361], [-76.559778, 38.766342], [-76.558933, 38.758177], [-76.557535, 38.744687], [-76.5573, 38.744229], [-76.557091, 38.743823], [-76.556954, 38.743554], [-76.553978, 38.737756], [-76.552743, 38.73535], [-76.551971, 38.734636], [-76.544561, 38.727784], [-76.544475, 38.727705], [-76.543853, 38.727736], [-76.54357, 38.72775], [-76.543435, 38.727757], [-76.542053, 38.727826], [-76.539769, 38.72794], [-76.529868, 38.728435], [-76.529284, 38.728137], [-76.52718, 38.727062], [-76.526655, 38.72443], [-76.529237, 38.713561], [-76.615902, 38.720804], [-76.623079, 38.767278], [-76.686203, 38.74861], [-76.686358, 38.748475], [-76.710639, 38.815694], [-76.693286, 38.951416], [-76.840362, 39.103142], [-76.824608, 39.117217], [-76.786966, 39.128782], [-76.776962, 39.150883], [-76.763738, 39.166229], [-76.740631, 39.179221], [-76.722606, 39.182857], [-76.719217, 39.19148], [-76.697085, 39.214092], [-76.69675, 39.217399], [-76.687745, 39.221292], [-76.680177, 39.220163], [-76.668744, 39.228989], [-76.66173, 39.231135], [-76.647219, 39.229036], [-76.639404, 39.224029], [-76.630674, 39.224187], [-76.618612, 39.237398], [-76.611695, 39.2344], [-76.582386, 39.207151], [-76.550086, 39.197207], [-76.533103, 39.20763], [-76.533085, 39.207608], [-76.533349, 39.207172], [-76.53476, 39.204841], [-76.535385, 39.203808], [-76.534185, 39.190608], [-76.525785, 39.177908], [-76.525454, 39.177746], [-76.525031, 39.17754], [-76.524221, 39.177144], [-76.52027, 39.175214], [-76.519292, 39.174736], [-76.511834, 39.171093], [-76.508384, 39.169408], [-76.500926, 39.161286], [-76.500512, 39.161362], [-76.484023, 39.164407], [-76.483845, 39.164334], [-76.475983, 39.161109], [-76.474807, 39.159436], [-76.473802, 39.158007], [-76.471483, 39.154709], [-76.468898, 39.153161], [-76.459119, 39.147304], [-76.458873, 39.147157], [-76.458649, 39.147023], [-76.45835, 39.146844], [-76.458192, 39.146749], [-76.452782, 39.143509], [-76.44011, 39.137305], [-76.430946, 39.132818], [-76.43013, 39.132419], [-76.428681, 39.131709], [-76.432481, 39.126709], [-76.432702, 39.120752], [-76.432981, 39.113209], [-76.432942, 39.113098], [-76.427196, 39.096685], [-76.427065, 39.096309], [-76.426456, 39.094571], [-76.426283, 39.094076], [-76.426276, 39.094057], [-76.423609, 39.086438], [-76.423321, 39.085615], [-76.423271, 39.085473], [-76.422714, 39.083881], [-76.422212, 39.082448], [-76.42208, 39.08207], [-76.42186, 39.081442], [-76.423081, 39.07421], [-76.432374, 39.061648], [-76.438845, 39.0529]]]}, "bbox": [-76.840362, 38.713561, -76.39408, 39.237398]}, {"id": "24005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.711894, 39.721103], [-76.569475, 39.721203], [-76.540573, 39.572236], [-76.536098, 39.561822], [-76.5324, 39.561556], [-76.531058, 39.555399], [-76.534063, 39.554618], [-76.531012, 39.54378], [-76.43698, 39.501964], [-76.377613, 39.424328], [-76.375991, 39.423786], [-76.374011, 39.422307], [-76.373519, 39.421432], [-76.370198, 39.413411], [-76.37223, 39.405576], [-76.361055, 39.400255], [-76.359269, 39.394046], [-76.358781, 39.390305], [-76.357753, 39.38979], [-76.32368, 39.374407], [-76.330027, 39.356139], [-76.341443, 39.354217], [-76.339942, 39.350169], [-76.335412, 39.337949], [-76.334401, 39.335222], [-76.334021, 39.334197], [-76.333924, 39.333935], [-76.338898, 39.325783], [-76.33957, 39.324681], [-76.33382, 39.319611], [-76.327579, 39.314108], [-76.337858, 39.305799], [-76.339817, 39.304216], [-76.341432, 39.30291], [-76.353205, 39.31065], [-76.354817, 39.311709], [-76.355495, 39.312155], [-76.36439, 39.31184], [-76.365532, 39.31095], [-76.380662, 39.299161], [-76.380734, 39.298765], [-76.383021, 39.286231], [-76.383345, 39.284455], [-76.383891, 39.281465], [-76.384901, 39.275928], [-76.385151, 39.275766], [-76.395136, 39.269293], [-76.395301, 39.269042], [-76.400094, 39.261753], [-76.400187, 39.261612], [-76.401103, 39.260219], [-76.402047, 39.258783], [-76.402355, 39.258315], [-76.401911, 39.258053], [-76.386937, 39.249216], [-76.38138, 39.249508], [-76.382358, 39.247292], [-76.38438, 39.242708], [-76.384699, 39.242242], [-76.38938, 39.235408], [-76.389563, 39.235261], [-76.393626, 39.232012], [-76.394381, 39.231408], [-76.398314, 39.22945], [-76.399122, 39.229048], [-76.41762, 39.219838], [-76.417681, 39.219808], [-76.41829, 39.218677], [-76.419201, 39.216988], [-76.425281, 39.205708], [-76.425413, 39.205629], [-76.441411, 39.196049], [-76.442482, 39.195408], [-76.447621, 39.197977], [-76.46156, 39.204947], [-76.462679, 39.205506], [-76.463483, 39.205908], [-76.471126, 39.20554], [-76.480083, 39.205108], [-76.482153, 39.204426], [-76.485527, 39.203314], [-76.486371, 39.203036], [-76.488883, 39.202208], [-76.489505, 39.202378], [-76.489777, 39.202453], [-76.49077, 39.202724], [-76.497977, 39.204697], [-76.498384, 39.204808], [-76.500086, 39.207798], [-76.500834, 39.209113], [-76.500984, 39.209376], [-76.519804, 39.222946], [-76.520584, 39.223508], [-76.520941, 39.22324], [-76.528587, 39.217492], [-76.529486, 39.218408], [-76.529623, 39.272307], [-76.529781, 39.273101], [-76.529787, 39.281872], [-76.529934, 39.283082], [-76.529663, 39.284203], [-76.529592, 39.284852], [-76.529681, 39.288152], [-76.529552, 39.289337], [-76.529499, 39.290168], [-76.529689, 39.290993], [-76.529708, 39.291895], [-76.529793, 39.292783], [-76.52951, 39.29718], [-76.529624, 39.298179], [-76.529775, 39.298731], [-76.529611, 39.302911], [-76.529685, 39.304661], [-76.529686, 39.305506], [-76.529743, 39.305964], [-76.529693, 39.306474], [-76.529697, 39.307717], [-76.529786, 39.308534], [-76.529786, 39.310391], [-76.529785, 39.356552], [-76.529793, 39.372058], [-76.609778, 39.372202], [-76.711313, 39.371933], [-76.711191, 39.362771], [-76.711342, 39.361225], [-76.711186, 39.354383], [-76.711054, 39.277889], [-76.688667, 39.268195], [-76.686048, 39.266885], [-76.685153, 39.266697], [-76.681644, 39.265032], [-76.678801, 39.263997], [-76.673432, 39.261281], [-76.667349, 39.258858], [-76.665567, 39.257982], [-76.653393, 39.252703], [-76.651491, 39.251983], [-76.647256, 39.25006], [-76.644212, 39.248924], [-76.639428, 39.246568], [-76.637267, 39.245648], [-76.632589, 39.243406], [-76.631132, 39.242899], [-76.618612, 39.237398], [-76.630674, 39.224187], [-76.639404, 39.224029], [-76.647219, 39.229036], [-76.66173, 39.231135], [-76.668744, 39.228989], [-76.680177, 39.220163], [-76.687745, 39.221292], [-76.69675, 39.217399], [-76.697085, 39.214092], [-76.705184, 39.215548], [-76.723811, 39.228181], [-76.739528, 39.232163], [-76.76383, 39.251312], [-76.882274, 39.350185], [-76.879738, 39.356846], [-76.873378, 39.35715], [-76.880701, 39.360469], [-76.879788, 39.365858], [-76.868387, 39.494074], [-76.8667, 39.500902], [-76.787096, 39.720802], [-76.715594, 39.721103], [-76.711894, 39.721103]]]}, "bbox": [-76.882274, 39.195408, -76.32368, 39.721203]}, {"id": "24015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.233259, 39.721305], [-76.224191, 39.721328], [-76.135584, 39.721556], [-76.027618, 39.721833], [-76.013067, 39.72192], [-75.810068, 39.721906], [-75.799563, 39.721882], [-75.788359, 39.721811], [-75.788395, 39.700287], [-75.788395, 39.700031], [-75.788658, 39.681911], [-75.788616, 39.680742], [-75.78745, 39.637455], [-75.78689, 39.630575], [-75.779383, 39.536522], [-75.77924, 39.534737], [-75.766693, 39.377537], [-75.766714, 39.377537], [-75.766731, 39.377537], [-75.7668, 39.377586], [-75.767044, 39.377739], [-75.767105, 39.377796], [-75.767253, 39.377833], [-75.767358, 39.377871], [-75.767413, 39.3779], [-75.767542, 39.377937], [-75.767665, 39.377913], [-75.767769, 39.377875], [-75.767831, 39.377937], [-75.767985, 39.378079], [-75.768059, 39.378126], [-75.768102, 39.378117], [-75.768249, 39.378007], [-75.768304, 39.377978], [-75.768365, 39.377968], [-75.768439, 39.37804], [-75.768489, 39.378101], [-75.768526, 39.378111], [-75.768569, 39.378106], [-75.768642, 39.378053], [-75.768691, 39.378034], [-75.768783, 39.378043], [-75.7689, 39.378086], [-75.768999, 39.378114], [-75.769116, 39.378166], [-75.769165, 39.378209], [-75.769233, 39.378228], [-75.769294, 39.378213], [-75.769331, 39.378194], [-75.769386, 39.378237], [-75.769423, 39.378294], [-75.769455, 39.378394], [-75.769461, 39.378461], [-75.769443, 39.378489], [-75.769437, 39.378532], [-75.769474, 39.37857], [-75.769535, 39.37857], [-75.769621, 39.378546], [-75.769695, 39.378603], [-75.769792, 39.378622], [-75.769865, 39.378622], [-75.770047, 39.37864], [-75.770388, 39.378743], [-75.770485, 39.378724], [-75.770545, 39.378657], [-75.770836, 39.378647], [-75.770994, 39.378684], [-75.771116, 39.378693], [-75.771334, 39.378664], [-75.77148, 39.378739], [-75.771578, 39.378833], [-75.771699, 39.378899], [-75.771845, 39.378927], [-75.77187, 39.379002], [-75.77187, 39.379115], [-75.771968, 39.379143], [-75.77199, 39.37915], [-75.772462, 39.379431], [-75.772688, 39.379525], [-75.773112, 39.379544], [-75.773171, 39.379497], [-75.773305, 39.37945], [-75.773451, 39.379515], [-75.773508, 39.379549], [-75.773651, 39.379486], [-75.77387, 39.379371], [-75.773962, 39.379294], [-75.77414, 39.379003], [-75.774253, 39.378916], [-75.774387, 39.378921], [-75.774635, 39.379042], [-75.775045, 39.37907], [-75.775088, 39.37907], [-75.775449, 39.37896], [-75.775668, 39.37896], [-75.775909, 39.379015], [-75.776093, 39.378971], [-75.776312, 39.378993], [-75.776369, 39.379059], [-75.776213, 39.380026], [-75.776248, 39.38019], [-75.776304, 39.380256], [-75.776355, 39.380268], [-75.776503, 39.380306], [-75.776757, 39.3803], [-75.776998, 39.380405], [-75.777671, 39.38024], [-75.777918, 39.380246], [-75.77806, 39.38029], [-75.77922, 39.380916], [-75.779503, 39.381169], [-75.780126, 39.381471], [-75.780331, 39.381653], [-75.780409, 39.381889], [-75.780473, 39.381944], [-75.781095, 39.382125], [-75.781131, 39.382125], [-75.781548, 39.381966], [-75.781753, 39.381954], [-75.781846, 39.38195], [-75.782023, 39.381867], [-75.782235, 39.381856], [-75.782957, 39.382164], [-75.78365, 39.382439], [-75.783891, 39.382505], [-75.784224, 39.382549], [-75.784415, 39.382527], [-75.784443, 39.3825], [-75.784465, 39.38231], [-75.784486, 39.382143], [-75.78433, 39.381385], [-75.784309, 39.38094], [-75.78433, 39.380687], [-75.784415, 39.380363], [-75.784656, 39.380165], [-75.784968, 39.380088], [-75.78538, 39.380091], [-75.785732, 39.380094], [-75.786036, 39.380061], [-75.786383, 39.380105], [-75.786567, 39.380155], [-75.786585, 39.380158], [-75.787202, 39.380267], [-75.78731, 39.380287], [-75.78741, 39.380296], [-75.788032, 39.380353], [-75.78823, 39.380424], [-75.788351, 39.380512], [-75.788381, 39.38061], [-75.788478, 39.380919], [-75.788584, 39.381061], [-75.788768, 39.381111], [-75.789398, 39.381128], [-75.78949, 39.381095], [-75.789667, 39.381012], [-75.789865, 39.380891], [-75.789971, 39.380815], [-75.790531, 39.380342], [-75.790996, 39.380043], [-75.791182, 39.379925], [-75.791833, 39.379843], [-75.792043, 39.379822], [-75.792279, 39.379799], [-75.792357, 39.379804], [-75.792484, 39.379826], [-75.792534, 39.379843], [-75.79288, 39.380096], [-75.79295, 39.380116], [-75.792994, 39.380129], [-75.7938, 39.37998], [-75.793907, 39.379936], [-75.794239, 39.379744], [-75.79431, 39.379641], [-75.794381, 39.379541], [-75.794423, 39.379102], [-75.794494, 39.378959], [-75.794664, 39.378756], [-75.79482, 39.378009], [-75.795018, 39.377789], [-75.795216, 39.377701], [-75.795443, 39.377586], [-75.795606, 39.377317], [-75.795726, 39.37724], [-75.795825, 39.377245], [-75.796038, 39.377322], [-75.79625, 39.377229], [-75.796356, 39.377229], [-75.796441, 39.377542], [-75.796483, 39.377575], [-75.796547, 39.377586], [-75.79666, 39.377564], [-75.796965, 39.377295], [-75.79729, 39.377273], [-75.797566, 39.377268], [-75.797779, 39.377141], [-75.797998, 39.377251], [-75.798225, 39.377279], [-75.798607, 39.37724], [-75.798748, 39.37713], [-75.798847, 39.377119], [-75.799222, 39.377224], [-75.799605, 39.377372], [-75.799678, 39.377368], [-75.799852, 39.377361], [-75.800263, 39.377224], [-75.800461, 39.377202], [-75.800567, 39.377229], [-75.800617, 39.377317], [-75.800588, 39.377608], [-75.800701, 39.377691], [-75.800907, 39.377746], [-75.801098, 39.377867], [-75.801695, 39.377912], [-75.80182, 39.377922], [-75.802237, 39.377653], [-75.802605, 39.377592], [-75.802752, 39.377493], [-75.802761, 39.377488], [-75.802874, 39.377334], [-75.802917, 39.377318], [-75.80337, 39.377219], [-75.803794, 39.376972], [-75.804162, 39.376576], [-75.804304, 39.376291], [-75.804311, 39.375939], [-75.804354, 39.375818], [-75.804495, 39.375609], [-75.804686, 39.375434], [-75.804757, 39.375417], [-75.804955, 39.375456], [-75.805141, 39.375464], [-75.805514, 39.375483], [-75.805684, 39.375505], [-75.805741, 39.3755], [-75.805861, 39.375467], [-75.805925, 39.375439], [-75.806073, 39.375258], [-75.806201, 39.375198], [-75.806378, 39.375274], [-75.806484, 39.375384], [-75.806498, 39.375467], [-75.806472, 39.375483], [-75.806318, 39.375583], [-75.806229, 39.375897], [-75.806333, 39.376206], [-75.806184, 39.37673], [-75.806165, 39.376799], [-75.806417, 39.377096], [-75.806552, 39.377135], [-75.806958, 39.377254], [-75.806992, 39.377264], [-75.807076, 39.377328], [-75.807139, 39.377376], [-75.807328, 39.377522], [-75.807392, 39.377571], [-75.807435, 39.377604], [-75.807564, 39.377703], [-75.807608, 39.377737], [-75.807696, 39.377804], [-75.807898, 39.37796], [-75.807976, 39.377972], [-75.808087, 39.377991], [-75.808631, 39.378081], [-75.808741, 39.378066], [-75.808879, 39.378048], [-75.8092, 39.378101], [-75.809396, 39.378425], [-75.809425, 39.378832], [-75.809359, 39.378894], [-75.809237, 39.379495], [-75.809259, 39.379521], [-75.809452, 39.379749], [-75.809634, 39.379758], [-75.809817, 39.379768], [-75.809989, 39.379806], [-75.810108, 39.37983], [-75.811537, 39.379984], [-75.812984, 39.380026], [-75.814614, 39.38027], [-75.816313, 39.380654], [-75.816356, 39.380681], [-75.816968, 39.381064], [-75.817365, 39.3814], [-75.817646, 39.381638], [-75.817925, 39.381874], [-75.817975, 39.381916], [-75.818345, 39.382081], [-75.818696, 39.382239], [-75.818829, 39.382299], [-75.819576, 39.382141], [-75.819956, 39.382061], [-75.821266, 39.381755], [-75.822289, 39.381609], [-75.823658, 39.381413], [-75.823761, 39.381354], [-75.824392, 39.380998], [-75.824458, 39.380961], [-75.825426, 39.379846], [-75.82742, 39.378236], [-75.827991, 39.377921], [-75.828161, 39.377762], [-75.829369, 39.376632], [-75.829513, 39.376499], [-75.829736, 39.376173], [-75.830031, 39.375742], [-75.830062, 39.375659], [-75.830183, 39.375337], [-75.830023, 39.375086], [-75.830523, 39.374689], [-75.830661, 39.374579], [-75.8308, 39.374469], [-75.831173, 39.374173], [-75.831533, 39.374109], [-75.832316, 39.37397], [-75.8334, 39.373834], [-75.834014, 39.373757], [-75.835534, 39.373174], [-75.835719, 39.373103], [-75.836593, 39.37277], [-75.836611, 39.372763], [-75.839605, 39.371978], [-75.840283, 39.371734], [-75.841682, 39.37123], [-75.841727, 39.371213], [-75.842385, 39.370978], [-75.843785, 39.369951], [-75.844304, 39.369571], [-75.84432, 39.369544], [-75.845476, 39.367698], [-75.846048, 39.367628], [-75.846611, 39.367561], [-75.846694, 39.367551], [-75.846776, 39.367541], [-75.846901, 39.367526], [-75.847037, 39.367584], [-75.848501, 39.368208], [-75.84872, 39.368065], [-75.848845, 39.367984], [-75.84897, 39.367902], [-75.849392, 39.367627], [-75.851468, 39.366866], [-75.852394, 39.366527], [-75.853064, 39.36589], [-75.853652, 39.365333], [-75.85543, 39.364562], [-75.856646, 39.364892], [-75.857246, 39.365055], [-75.858592, 39.36593], [-75.859169, 39.366306], [-75.860832, 39.367466], [-75.861038, 39.36761], [-75.861415, 39.367549], [-75.862518, 39.36737], [-75.863754, 39.366436], [-75.864978, 39.366503], [-75.865669, 39.366542], [-75.866206, 39.366893], [-75.86678, 39.367268], [-75.867355, 39.367644], [-75.867614, 39.367813], [-75.868066, 39.367759], [-75.868377, 39.367721], [-75.872062, 39.366344], [-75.872575, 39.366223], [-75.873341, 39.366043], [-75.874412, 39.365791], [-75.875024, 39.365789], [-75.875801, 39.365787], [-75.876636, 39.365707], [-75.877848, 39.36559], [-75.877952, 39.365581], [-75.877965, 39.36558], [-75.879463, 39.365467], [-75.879839, 39.365329], [-75.880935, 39.364929], [-75.882131, 39.364327], [-75.882141, 39.364322], [-75.882827, 39.363452], [-75.883628, 39.362251], [-75.884391, 39.361354], [-75.885101, 39.360843], [-75.885864, 39.360797], [-75.888499, 39.361889], [-75.888542, 39.361907], [-75.888874, 39.362131], [-75.890174, 39.36301], [-75.891222, 39.363808], [-75.892288, 39.36462], [-75.894523, 39.365638], [-75.894855, 39.365691], [-75.894911, 39.3657], [-75.89598, 39.365871], [-75.897376, 39.365567], [-75.897782, 39.365478], [-75.898187, 39.36539], [-75.898292, 39.365367], [-75.899827, 39.364914], [-75.90036, 39.364757], [-75.902687, 39.364478], [-75.903793, 39.364345], [-75.908035, 39.364501], [-75.90847, 39.364601], [-75.909337, 39.3648], [-75.910202, 39.364999], [-75.911805, 39.365367], [-75.912002, 39.365413], [-75.913581, 39.366096], [-75.915008, 39.366584], [-75.915029, 39.366587], [-75.916557, 39.366817], [-75.916699, 39.366821], [-75.917606, 39.366844], [-75.918515, 39.366868], [-75.918914, 39.366878], [-75.919789, 39.366948], [-75.919914, 39.366958], [-75.92115, 39.367057], [-75.922775, 39.367248], [-75.923884, 39.367968], [-75.92395, 39.368011], [-75.925285, 39.36975], [-75.926589, 39.370994], [-75.927154, 39.371187], [-75.92794, 39.371456], [-75.929962, 39.371681], [-75.930638, 39.371623], [-75.932022, 39.371505], [-75.934112, 39.370857], [-75.936424, 39.369544], [-75.937728, 39.368743], [-75.93779, 39.368715], [-75.939849, 39.367786], [-75.941032, 39.367675], [-75.942337, 39.367752], [-75.94375, 39.368064], [-75.943893, 39.368095], [-75.944429, 39.368272], [-75.945365, 39.368583], [-75.94616, 39.369266], [-75.946425, 39.369494], [-75.94683, 39.369842], [-75.947769, 39.371032], [-75.949246, 39.372421], [-75.94934, 39.372509], [-75.950401, 39.373153], [-75.951219, 39.373432], [-75.95182, 39.373638], [-75.954299, 39.374145], [-75.95697, 39.374603], [-75.958488, 39.374553], [-75.960083, 39.374698], [-75.960143, 39.374697], [-75.961448, 39.374694], [-75.964065, 39.374725], [-75.964388, 39.374688], [-75.966011, 39.374504], [-75.968269, 39.373973], [-75.96941, 39.373424], [-75.970603, 39.372852], [-75.971952, 39.371644], [-75.972793, 39.370891], [-75.97364, 39.369632], [-75.974418, 39.368621], [-75.976249, 39.367458], [-75.977714, 39.366874], [-75.979034, 39.366577], [-75.980539, 39.366571], [-75.981109, 39.366569], [-75.981506, 39.36684], [-75.982696, 39.367492], [-75.983985, 39.369182], [-75.984054, 39.36927], [-75.985267, 39.370807], [-75.987136, 39.372577], [-75.988998, 39.373771], [-75.990951, 39.37471], [-75.991996, 39.375129], [-75.992193, 39.375263], [-75.992317, 39.375347], [-75.993125, 39.375667], [-75.993932, 39.375848], [-75.994178, 39.375904], [-75.995094, 39.376106], [-75.996147, 39.376235], [-75.99855, 39.376453], [-75.999397, 39.376636], [-76.000221, 39.376651], [-76.001113, 39.376579], [-76.001541, 39.376522], [-76.001704, 39.376507], [-76.002197, 39.376462], [-76.002361, 39.376448], [-76.002463, 39.37644], [-76.002514, 39.384805], [-76.002515, 39.385024], [-76.006805, 39.385174], [-76.022304, 39.385716], [-76.035464, 39.386176], [-76.035568, 39.38618], [-76.035644, 39.386213], [-76.039279, 39.387796], [-76.039932, 39.38808], [-76.039973, 39.388327], [-76.040854, 39.393594], [-76.040962, 39.394237], [-76.040612, 39.394692], [-76.035298, 39.401609], [-76.035002, 39.401994], [-76.03472, 39.402093], [-76.018726, 39.407696], [-76.018061, 39.407929], [-76.016531, 39.408465], [-76.015763, 39.408947], [-76.012567, 39.410955], [-76.009693, 39.41276], [-76.00688, 39.414527], [-76.002856, 39.421225], [-75.998586, 39.428333], [-75.997396, 39.430314], [-75.996697, 39.430549], [-75.992742, 39.431877], [-75.992425, 39.431983], [-75.98884, 39.433187], [-75.982585, 39.435287], [-75.977751, 39.44302], [-75.976747, 39.444627], [-75.976698, 39.44569], [-75.976601, 39.447808], [-75.990005, 39.458646], [-75.990128, 39.458624], [-75.991779, 39.458332], [-75.994432, 39.457862], [-75.998276, 39.457182], [-76.002497, 39.450231], [-76.002513, 39.450204], [-76.002579, 39.450194], [-76.009071, 39.449256], [-76.009452, 39.449201], [-76.009536, 39.449316], [-76.01188, 39.452524], [-76.012312, 39.453115], [-76.011716, 39.454165], [-76.010009, 39.45717], [-76.002926, 39.469642], [-75.99657, 39.476658], [-75.995289, 39.483014], [-75.994135, 39.488743], [-75.993469, 39.490583], [-75.986298, 39.510398], [-75.985403, 39.512108], [-75.985238, 39.512424], [-75.980279, 39.5219], [-75.976105, 39.529876], [-75.976057, 39.529968], [-75.975313, 39.530678], [-75.973678, 39.532237], [-75.966955, 39.53865], [-75.966959, 39.538839], [-75.967093, 39.544623], [-75.967173, 39.548047], [-75.967186, 39.548627], [-75.967221, 39.55014], [-75.970337, 39.557637], [-75.992633, 39.563098], [-75.999669, 39.560488], [-76.00019, 39.559696], [-76.001244, 39.558096], [-76.002793, 39.555741], [-76.003434, 39.554768], [-76.004207, 39.553594], [-76.006213, 39.550546], [-76.006272, 39.550457], [-76.006341, 39.550352], [-76.03042, 39.548784], [-76.046876, 39.547713], [-76.063379, 39.546638], [-76.063811, 39.54661], [-76.075714, 39.543032], [-76.085972, 39.559011], [-76.106161, 39.58061], [-76.135674, 39.613108], [-76.144081, 39.617709], [-76.233259, 39.721305]]]}, "bbox": [-76.233259, 39.360797, -75.766693, 39.72192]}, {"id": "24021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.570182, 39.619998], [-77.469145, 39.720018], [-77.459427, 39.720017], [-77.243307, 39.719998], [-77.239807, 39.719998], [-77.217024, 39.719998], [-77.287747, 39.604516], [-77.200125, 39.578588], [-77.106839, 39.491661], [-77.16808, 39.353957], [-77.168558, 39.353719], [-77.168801, 39.353502], [-77.171459, 39.352487], [-77.313839, 39.286462], [-77.337016, 39.275696], [-77.454934, 39.221584], [-77.458779, 39.22028]]]}, "bbox": [-77.677505, 39.22028, -77.106839, 39.720018]}, {"id": "24025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.569475, 39.721203], [-76.569389, 39.721203], [-76.517087, 39.721304], [-76.491887, 39.721304], [-76.418784, 39.721204], [-76.418684, 39.721304], [-76.395583, 39.721204], [-76.380583, 39.721304], [-76.380083, 39.721304], [-76.239805, 39.721305], [-76.233277, 39.721305], [-76.233259, 39.721305], [-76.144081, 39.617709], [-76.135674, 39.613108], [-76.106161, 39.58061], [-76.085972, 39.559011], [-76.075714, 39.543032], [-76.096072, 39.536912], [-76.102955, 39.523639], [-76.105571, 39.518595], [-76.105678, 39.518388], [-76.106215, 39.517353], [-76.107126, 39.515597], [-76.111583, 39.507001], [-76.116831, 39.496882], [-76.117253, 39.496068], [-76.11461, 39.488619], [-76.113929, 39.486701], [-76.108813, 39.482333], [-76.104665, 39.478792], [-76.100218, 39.476918], [-76.099506, 39.476618], [-76.098315, 39.476116], [-76.083286, 39.47786], [-76.083082, 39.477809], [-76.08159, 39.477438], [-76.073119, 39.475331], [-76.072309, 39.47513], [-76.071975, 39.475047], [-76.071836, 39.47476], [-76.069814, 39.470577], [-76.063874, 39.458295], [-76.062259, 39.454955], [-76.060931, 39.452208], [-76.060944, 39.451174], [-76.060988, 39.447775], [-76.060989, 39.447722], [-76.081176, 39.436712], [-76.081409, 39.436891], [-76.083269, 39.438321], [-76.083405, 39.438302], [-76.093595, 39.436871], [-76.102232, 39.435659], [-76.112761, 39.429852], [-76.115096, 39.428565], [-76.11682, 39.427614], [-76.117172, 39.42717], [-76.120991, 39.422358], [-76.121754, 39.421396], [-76.121889, 39.421226], [-76.132114, 39.414579], [-76.142224, 39.408007], [-76.146373, 39.40531], [-76.147048, 39.405364], [-76.150249, 39.405623], [-76.150516, 39.405644], [-76.150934, 39.405678], [-76.151948, 39.40576], [-76.152059, 39.405769], [-76.152357, 39.405793], [-76.157108, 39.406176], [-76.158592, 39.406295], [-76.158774, 39.40631], [-76.159358, 39.405661], [-76.171134, 39.392588], [-76.171474, 39.39221], [-76.171747, 39.391747], [-76.175121, 39.386019], [-76.175597, 39.38521], [-76.175928, 39.384648], [-76.180057, 39.377638], [-76.180074, 39.377609], [-76.199356, 39.366221], [-76.202346, 39.364455], [-76.226976, 39.349908], [-76.227625, 39.350109], [-76.229614, 39.350723], [-76.233776, 39.352008], [-76.234743, 39.353498], [-76.234765, 39.353532], [-76.235795, 39.355119], [-76.23652, 39.356236], [-76.237943, 39.358429], [-76.239877, 39.361408], [-76.241268, 39.361567], [-76.243377, 39.361808], [-76.244443, 39.361731], [-76.244988, 39.361691], [-76.245273, 39.361671], [-76.250107, 39.36132], [-76.250483, 39.361136], [-76.266365, 39.353352], [-76.265277, 39.350008], [-76.263019, 39.348634], [-76.258377, 39.345808], [-76.258342, 39.345737], [-76.253928, 39.336768], [-76.262008, 39.334708], [-76.262471, 39.33459], [-76.263073, 39.334436], [-76.263577, 39.334308], [-76.263624, 39.334265], [-76.265615, 39.33245], [-76.265777, 39.332302], [-76.266094, 39.332013], [-76.266257, 39.331864], [-76.266407, 39.331727], [-76.272671, 39.326015], [-76.276078, 39.322908], [-76.277813, 39.318738], [-76.277866, 39.31861], [-76.278239, 39.317712], [-76.278351, 39.317444], [-76.278499, 39.317088], [-76.280599, 39.312037], [-76.280778, 39.311608], [-76.281088, 39.30793], [-76.281374, 39.304531], [-76.281429, 39.303872], [-76.281556, 39.302369], [-76.281578, 39.302108], [-76.2817, 39.30211], [-76.296546, 39.302383], [-76.297878, 39.302408], [-76.291078, 39.318108], [-76.298778, 39.329208], [-76.298778, 39.333958], [-76.298778, 39.339278], [-76.298778, 39.340208], [-76.297569, 39.342244], [-76.295558, 39.345631], [-76.294978, 39.346608], [-76.295678, 39.350008], [-76.30177, 39.352216], [-76.310618, 39.355423], [-76.310829, 39.3555], [-76.31136, 39.355693], [-76.311679, 39.355808], [-76.31261, 39.355917], [-76.312864, 39.355946], [-76.314356, 39.35612], [-76.322687, 39.357092], [-76.323679, 39.357208], [-76.330027, 39.356139], [-76.32368, 39.374407], [-76.357753, 39.38979], [-76.358781, 39.390305], [-76.359269, 39.394046], [-76.361055, 39.400255], [-76.37223, 39.405576], [-76.370198, 39.413411], [-76.373519, 39.421432], [-76.374011, 39.422307], [-76.375991, 39.423786], [-76.377613, 39.424328], [-76.43698, 39.501964], [-76.531012, 39.54378], [-76.534063, 39.554618], [-76.531058, 39.555399], [-76.5324, 39.561556], [-76.536098, 39.561822], [-76.540573, 39.572236], [-76.569475, 39.721203]]]}, "bbox": [-76.569475, 39.302108, -76.060931, 39.721305]}, {"id": "24031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.454934, 39.221584], [-77.337016, 39.275696], [-77.313839, 39.286462], [-77.171459, 39.352487], [-77.168801, 39.353502], [-77.186804, 39.338203], [-77.144669, 39.294707], [-76.888505, 39.130967], [-76.969748, 39.021343], [-76.9711, 39.019305], [-76.972097, 39.018109], [-76.973771, 39.015718], [-76.974565, 39.014714], [-76.977278, 39.010947], [-76.979606, 39.008161], [-76.98415, 39.001438], [-76.985693, 38.99998], [-76.988265, 38.996288], [-76.989059, 38.995577], [-76.991071, 38.992349], [-76.985747, 38.977349], [-77.002636, 38.965521], [-77.008298, 38.97011], [-77.013798, 38.97441], [-77.015598, 38.97591], [-77.036299, 38.99171], [-77.040999, 38.99511], [-77.054299, 38.98511], [-77.1007, 38.94891], [-77.1199, 38.934311]]]}, "bbox": [-77.527282, 38.934311, -76.888505, 39.353502]}, {"id": "24033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.024392, 38.80297], [-77.001397, 38.821513], [-76.953696, 38.858512], [-76.949696, 38.861312], [-76.920195, 38.884412], [-76.919295, 38.885112], [-76.910795, 38.891712], [-76.909395, 38.892812], [-76.941722, 38.918019], [-77.002498, 38.96541], [-77.002636, 38.965521], [-76.985747, 38.977349], [-76.991071, 38.992349], [-76.989059, 38.995577], [-76.988265, 38.996288], [-76.985693, 38.99998], [-76.98415, 39.001438], [-76.979606, 39.008161], [-76.977278, 39.010947], [-76.974565, 39.014714], [-76.973771, 39.015718], [-76.972097, 39.018109], [-76.9711, 39.019305], [-76.969748, 39.021343], [-76.888505, 39.130967], [-76.869003, 39.112214], [-76.849084, 39.109097], [-76.840362, 39.103142], [-76.693286, 38.951416], [-76.710639, 38.815694], [-76.686358, 38.748475], [-76.684018, 38.738348], [-76.687009, 38.735897], [-76.694996, 38.735075], [-76.695555, 38.731544], [-76.693589, 38.724761], [-76.70196, 38.710864], [-76.697743, 38.70703], [-76.694946, 38.702468], [-76.694983, 38.700307], [-76.697932, 38.694782], [-76.698429, 38.690443], [-76.69549, 38.685781], [-76.687147, 38.681371], [-76.687424, 38.678746], [-76.690461, 38.673683], [-76.700667, 38.670131], [-76.700381, 38.667022], [-76.694236, 38.663841], [-76.68737, 38.663793], [-76.683329, 38.661178], [-76.683186, 38.658813], [-76.685127, 38.654771], [-76.69163, 38.648506], [-76.692853, 38.636437], [-76.692021, 38.634932], [-76.686138, 38.630182], [-76.679355, 38.627949], [-76.677562, 38.626234], [-76.672334, 38.617533], [-76.673479, 38.607249], [-76.672557, 38.599271], [-76.675166, 38.592106], [-76.67948, 38.585211], [-76.680702, 38.580499], [-76.677799, 38.572374], [-76.678891, 38.567954], [-76.675468, 38.558824], [-76.672274, 38.552846], [-76.672642, 38.546818], [-76.675457, 38.535876], [-76.747335, 38.616677], [-76.862955, 38.658649], [-77.011028, 38.651975], [-77.077027, 38.690168], [-77.078599, 38.694114], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419]]]}, "bbox": [-77.086113, 38.535876, -76.672274, 39.130967]}, {"id": "24035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.15809, 39.093998], [-76.117058, 39.107098], [-76.072418, 39.138206], [-76.081596, 39.147659], [-76.04763, 39.162666], [-76.039726, 39.174102], [-76.046661, 39.180751], [-76.065186, 39.185204], [-76.068794, 39.192345], [-76.056556, 39.210338], [-76.027191, 39.226722], [-76.020454, 39.227401], [-76.014792, 39.234152], [-76.012797, 39.234453], [-75.998411, 39.234773], [-75.989844, 39.238367], [-75.976744, 39.240519], [-75.967236, 39.239318], [-75.953404, 39.235264], [-75.937902, 39.235502], [-75.930708, 39.239023], [-75.925022, 39.244108], [-75.874084, 39.249798], [-75.867722, 39.259483], [-75.755962, 39.246069], [-75.755953, 39.245958], [-75.747671, 39.143345], [-75.834948, 39.108437], [-75.929729, 38.990654], [-75.949335, 38.918333], [-76.096956, 38.944259], [-76.103512, 38.882308], [-76.199544, 38.850817], [-76.200728, 38.855389], [-76.202598, 38.862616], [-76.202314, 38.864906], [-76.200082, 38.882885], [-76.205063, 38.892726], [-76.204544, 38.905715], [-76.204129, 38.916096], [-76.204122, 38.916269], [-76.204091, 38.917058], [-76.203638, 38.928382], [-76.207695, 38.931954], [-76.213731, 38.937269], [-76.213842, 38.937366], [-76.22813, 38.941412], [-76.228405, 38.941489], [-76.232038, 38.942518], [-76.233895, 38.942123], [-76.234681, 38.941956], [-76.250157, 38.938667], [-76.250868, 38.92825], [-76.250838, 38.928204], [-76.249622, 38.926297], [-76.249246, 38.925707], [-76.248896, 38.925159], [-76.248844, 38.925076], [-76.248702, 38.924855], [-76.248574, 38.924655], [-76.248472, 38.924494], [-76.248023, 38.92379], [-76.249163, 38.9218], [-76.249285, 38.921587], [-76.249355, 38.921465], [-76.249674, 38.920907], [-76.249889, 38.920841], [-76.255819, 38.919008], [-76.25619, 38.918893], [-76.256397, 38.918829], [-76.25808, 38.91916], [-76.258206, 38.919185], [-76.262226, 38.919976], [-76.264683, 38.924576], [-76.264692, 38.924764], [-76.264943, 38.930297], [-76.265772, 38.931482], [-76.26626, 38.932179], [-76.269179, 38.936349], [-76.270954, 38.938886], [-76.271625, 38.939844], [-76.273022, 38.94184], [-76.273083, 38.941927], [-76.273258, 38.941826], [-76.276033, 38.940213], [-76.284227, 38.935452], [-76.288813, 38.932787], [-76.291211, 38.931394], [-76.29558, 38.928855], [-76.295911, 38.928663], [-76.298208, 38.92206], [-76.299431, 38.918542], [-76.299406, 38.918505], [-76.298492, 38.917121], [-76.293963, 38.910266], [-76.293867, 38.910121], [-76.293843, 38.909826], [-76.293829, 38.909649], [-76.293794, 38.909222], [-76.293492, 38.905499], [-76.293358, 38.903854], [-76.293341, 38.903635], [-76.293328, 38.903479], [-76.293309, 38.903244], [-76.293255, 38.902582], [-76.293254, 38.902568], [-76.308425, 38.898404], [-76.317947, 38.911312], [-76.317977, 38.911311], [-76.31853, 38.911299], [-76.319272, 38.911282], [-76.322715, 38.911205], [-76.323252, 38.911193], [-76.324097, 38.911174], [-76.324102, 38.911172], [-76.336104, 38.905977], [-76.336116, 38.905907], [-76.336827, 38.901905], [-76.336966, 38.901118], [-76.337097, 38.90038], [-76.337227, 38.899653], [-76.337358, 38.898915], [-76.338047, 38.895034], [-76.338123, 38.894601], [-76.338416, 38.892954], [-76.338501, 38.892474], [-76.337946, 38.891332], [-76.336986, 38.889357], [-76.33656, 38.888481], [-76.336326, 38.888001], [-76.335681, 38.886673], [-76.335364, 38.886021], [-76.335341, 38.885907], [-76.333801, 38.878194], [-76.333258, 38.875478], [-76.333211, 38.875241], [-76.332651, 38.872438], [-76.331103, 38.864686], [-76.33103, 38.86432], [-76.334019, 38.860238], [-76.337901, 38.857579], [-76.338136, 38.857418], [-76.339667, 38.85637], [-76.340587, 38.85574], [-76.348826, 38.857134], [-76.35039, 38.857399], [-76.356361, 38.854396], [-76.35996, 38.852586], [-76.360095, 38.852518], [-76.361141, 38.851992], [-76.36132, 38.851589], [-76.366501, 38.839936], [-76.368164, 38.836194], [-76.368195, 38.836125], [-76.368359, 38.836205], [-76.372719, 38.838324], [-76.373122, 38.838519], [-76.375086, 38.839474], [-76.375138, 38.839981], [-76.375303, 38.841611], [-76.375443, 38.842988], [-76.376031, 38.848777], [-76.376202, 38.850461], [-76.376183, 38.8505], [-76.375874, 38.851126], [-76.372553, 38.85786], [-76.367549, 38.868009], [-76.367344, 38.868424], [-76.364678, 38.873831], [-76.365225, 38.892614], [-76.365388, 38.898219], [-76.365658, 38.907477], [-76.36513, 38.911736], [-76.36478, 38.914553], [-76.364523, 38.916632], [-76.36205, 38.936568], [-76.361727, 38.939175], [-76.359669, 38.94388], [-76.357933, 38.947848], [-76.357752, 38.948262], [-76.354949, 38.954672], [-76.353828, 38.957234], [-76.351637, 38.960214], [-76.343672, 38.971048], [-76.333703, 38.984607], [-76.33129, 38.98789], [-76.323293, 38.998767], [-76.322679, 38.999602], [-76.322346, 39.005488], [-76.322296, 39.006375], [-76.323557, 39.008961], [-76.32259, 39.0131], [-76.320277, 39.022998], [-76.320274, 39.023013], [-76.320269, 39.02302], [-76.311766, 39.035257], [-76.302029, 39.039571], [-76.301847, 39.039651], [-76.301645, 39.037663], [-76.301506, 39.036298], [-76.301054, 39.031862], [-76.30104, 39.031721], [-76.301027, 39.031595], [-76.302846, 39.025828], [-76.30265, 39.025346], [-76.29409, 39.004263], [-76.293962, 39.003948], [-76.2919, 39.001264], [-76.289326, 38.997914], [-76.286484, 38.994215], [-76.284893, 38.992143], [-76.28328, 38.990044], [-76.280355, 38.986236], [-76.278058, 38.983246], [-76.277478, 38.982492], [-76.277457, 38.982493], [-76.275964, 38.982587], [-76.258813, 38.983664], [-76.258724, 38.983646], [-76.246049, 38.981035], [-76.243619, 38.980534], [-76.229993, 38.977728], [-76.229277, 38.97758], [-76.228748, 38.97722], [-76.218929, 38.970538], [-76.218773, 38.970562], [-76.20236, 38.973079], [-76.202081, 38.973272], [-76.187165, 38.983558], [-76.182461, 38.986802], [-76.180663, 38.988042], [-76.168332, 38.996546], [-76.164004, 38.99953], [-76.163988, 38.999541], [-76.163988, 38.999542], [-76.163956, 39.000437], [-76.163898, 39.002096], [-76.163616, 39.010057], [-76.167574, 39.018273], [-76.173393, 39.02555], [-76.174633, 39.0271], [-76.177832, 39.031102], [-76.178115, 39.031456], [-76.178281, 39.031663], [-76.184207, 39.046264], [-76.179456, 39.052941], [-76.177046, 39.056329], [-76.175284, 39.058805], [-76.16906, 39.062787], [-76.15896, 39.065486], [-76.156572, 39.069433], [-76.153465, 39.074568], [-76.150528, 39.079421], [-76.145174, 39.092824], [-76.15809, 39.093998]]]}, "bbox": [-76.376202, 38.836125, -75.747671, 39.259483]}, {"id": "24041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.147577, 38.637893], [-76.148202, 38.639463], [-76.148559, 38.640362], [-76.148955, 38.641356], [-76.149353, 38.642356], [-76.152554, 38.6504], [-76.152603, 38.650523], [-76.152622, 38.650572], [-76.15299, 38.651495], [-76.153414, 38.652562], [-76.153769, 38.653455], [-76.154093, 38.654269], [-76.154581, 38.655495], [-76.154604, 38.655553], [-76.154889, 38.656268], [-76.154924, 38.656358], [-76.155611, 38.658083], [-76.160539, 38.661903], [-76.164465, 38.664946], [-76.168824, 38.668325], [-76.174611, 38.672811], [-76.175159, 38.673236], [-76.196716, 38.67286], [-76.199722, 38.671127], [-76.199948, 38.670997], [-76.200334, 38.670774], [-76.212808, 38.681892], [-76.226343, 38.698057], [-76.229242, 38.701519], [-76.231392, 38.704088], [-76.231758, 38.704524], [-76.232127, 38.704964], [-76.232365, 38.705249], [-76.232535, 38.705452], [-76.232814, 38.705785], [-76.232845, 38.705823], [-76.232875, 38.705859], [-76.232893, 38.70588], [-76.234249, 38.707499], [-76.234379, 38.707655], [-76.234392, 38.70767], [-76.234828, 38.708191], [-76.237818, 38.711762], [-76.237916, 38.711879], [-76.238077, 38.712071], [-76.238172, 38.712185], [-76.238306, 38.712344], [-76.238725, 38.712845], [-76.239377, 38.71688], [-76.239427, 38.717191], [-76.239841, 38.719756], [-76.23704, 38.724518], [-76.238685, 38.735434], [-76.255093, 38.736476], [-76.255348, 38.736273], [-76.257335, 38.734691], [-76.257423, 38.734621], [-76.257437, 38.734609], [-76.257851, 38.73428], [-76.258738, 38.733573], [-76.259238, 38.733176], [-76.259665, 38.732836], [-76.259741, 38.732775], [-76.259867, 38.732675], [-76.259876, 38.732667], [-76.260001, 38.732568], [-76.260976, 38.731791], [-76.261863, 38.731085], [-76.268288, 38.725969], [-76.268739, 38.725609], [-76.26937, 38.725107], [-76.26952, 38.724988], [-76.270277, 38.724385], [-76.271243, 38.716209], [-76.271447, 38.71448], [-76.271553, 38.713576], [-76.271596, 38.713216], [-76.275015, 38.712714], [-76.275019, 38.712715], [-76.298499, 38.718005], [-76.299171, 38.719287], [-76.296603, 38.723183], [-76.296537, 38.723283], [-76.295957, 38.724162], [-76.298186, 38.726255], [-76.29935, 38.727347], [-76.299401, 38.727395], [-76.312756, 38.730708], [-76.316146, 38.729586], [-76.321803, 38.723565], [-76.321885, 38.723478], [-76.322019, 38.723335], [-76.322028, 38.723326], [-76.322663, 38.72265], [-76.322705, 38.722605], [-76.322706, 38.722604], [-76.32273, 38.722578], [-76.322807, 38.722496], [-76.32286, 38.722439], [-76.322975, 38.722317], [-76.323214, 38.722063], [-76.32353, 38.721727], [-76.326135, 38.718954], [-76.327162, 38.717861], [-76.328035, 38.716932], [-76.328338, 38.716609], [-76.330149, 38.714682], [-76.331479, 38.713266], [-76.332517, 38.709118], [-76.333066, 38.706927], [-76.333532, 38.705063], [-76.333777, 38.704086], [-76.334017, 38.703127], [-76.333862, 38.702953], [-76.332079, 38.700956], [-76.321865, 38.689512], [-76.321881, 38.689217], [-76.321898, 38.688902], [-76.321905, 38.688768], [-76.321915, 38.688584], [-76.322418, 38.679304], [-76.33861, 38.672023], [-76.340065, 38.671369], [-76.340341, 38.671245], [-76.34322, 38.67688], [-76.343277, 38.676992], [-76.343784, 38.677985], [-76.344199, 38.678798], [-76.347998, 38.686234], [-76.345072, 38.703546], [-76.344597, 38.706352], [-76.340543, 38.730338], [-76.340567, 38.731008], [-76.340608, 38.732179], [-76.340618, 38.732464], [-76.340628, 38.732756], [-76.340632, 38.732857], [-76.340635, 38.73296], [-76.340637, 38.733003], [-76.340641, 38.733123], [-76.340645, 38.733225], [-76.340677, 38.734136], [-76.340715, 38.735215], [-76.340732, 38.735712], [-76.340739, 38.735894], [-76.34074, 38.735932], [-76.341093, 38.745959], [-76.341096, 38.746058], [-76.3411, 38.746148], [-76.341288, 38.751505], [-76.341293, 38.751654], [-76.341297, 38.751756], [-76.341302, 38.751901], [-76.334619, 38.772911], [-76.333752, 38.77342], [-76.329721, 38.775789], [-76.323768, 38.779287], [-76.3227, 38.780657], [-76.312886, 38.793247], [-76.310743, 38.795996], [-76.310664, 38.796098], [-76.310626, 38.796147], [-76.310556, 38.796237], [-76.310081, 38.796846], [-76.308922, 38.813346], [-76.308306, 38.814331], [-76.308294, 38.814349], [-76.308127, 38.814618], [-76.307267, 38.815993], [-76.301886, 38.824595], [-76.300889, 38.82619], [-76.300886, 38.826192], [-76.298956, 38.827519], [-76.2978, 38.828314], [-76.296564, 38.828186], [-76.296471, 38.828176], [-76.296394, 38.828168], [-76.296364, 38.828165], [-76.296329, 38.828162], [-76.29632, 38.828161], [-76.296259, 38.828155], [-76.295992, 38.828127], [-76.29555, 38.828081], [-76.295454, 38.828071], [-76.295436, 38.828069], [-76.293648, 38.827884], [-76.292144, 38.827729], [-76.288455, 38.827347], [-76.284768, 38.828706], [-76.277854, 38.831256], [-76.277748, 38.831295], [-76.277411, 38.831419], [-76.27742, 38.831468], [-76.278151, 38.835494], [-76.27804, 38.835768], [-76.274405, 38.844766], [-76.271575, 38.851771], [-76.267175, 38.851652], [-76.265999, 38.85162], [-76.264221, 38.851572], [-76.265759, 38.847638], [-76.265808, 38.847512], [-76.265678, 38.847326], [-76.262179, 38.842325], [-76.261907, 38.841936], [-76.261627, 38.841536], [-76.257353, 38.835428], [-76.255787, 38.833189], [-76.255343, 38.832554], [-76.255322, 38.832525], [-76.250364, 38.825438], [-76.250296, 38.825389], [-76.245886, 38.822232], [-76.23877, 38.81959], [-76.229199, 38.816036], [-76.228071, 38.815617], [-76.221162, 38.813052], [-76.219328, 38.812371], [-76.198138, 38.81444], [-76.197432, 38.815541], [-76.196488, 38.817015], [-76.196426, 38.817111], [-76.19537, 38.818759], [-76.19343, 38.821787], [-76.193272, 38.822319], [-76.193073, 38.822989], [-76.19302, 38.823165], [-76.192924, 38.823489], [-76.192865, 38.823687], [-76.192765, 38.824024], [-76.192537, 38.82479], [-76.19109, 38.82966], [-76.191172, 38.829834], [-76.192874, 38.83345], [-76.192946, 38.833603], [-76.192973, 38.833661], [-76.197705, 38.843712], [-76.197736, 38.84383], [-76.199544, 38.850817], [-76.103512, 38.882308], [-76.096956, 38.944259], [-75.949335, 38.918333], [-75.944256, 38.916517], [-75.943976, 38.914294], [-75.948243, 38.914515], [-75.948726, 38.912037], [-75.943145, 38.907257], [-75.943862, 38.906204], [-75.94812, 38.90456], [-75.948677, 38.902389], [-75.944908, 38.900348], [-75.944358, 38.897548], [-75.945945, 38.893913], [-75.948616, 38.89225], [-75.94831, 38.891323], [-75.944587, 38.890068], [-75.940399, 38.88507], [-75.941535, 38.884075], [-75.94548, 38.884029], [-75.949638, 38.884807], [-75.950904, 38.884143], [-75.951469, 38.880237], [-75.948753, 38.878444], [-75.943847, 38.879344], [-75.941482, 38.881179], [-75.939224, 38.881332], [-75.937644, 38.879802], [-75.937583, 38.877994], [-75.938919, 38.876392], [-75.943572, 38.87638], [-75.944396, 38.875087], [-75.943077, 38.870494], [-75.941551, 38.868022], [-75.939292, 38.866558], [-75.934707, 38.867511], [-75.932914, 38.866035], [-75.930229, 38.861286], [-75.924331, 38.860389], [-75.922187, 38.857257], [-75.922431, 38.856369], [-75.922797, 38.854785], [-75.928336, 38.852428], [-75.930373, 38.850872], [-75.929312, 38.849021], [-75.926772, 38.847038], [-75.919455, 38.846897], [-75.918975, 38.846084], [-75.919348, 38.845016], [-75.928099, 38.841068], [-75.927771, 38.838893], [-75.919432, 38.835205], [-75.915183, 38.834835], [-75.913711, 38.832965], [-75.912918, 38.829532], [-75.904341, 38.826431], [-75.901267, 38.824737], [-75.901747, 38.822883], [-75.905494, 38.821567], [-75.906455, 38.819705], [-75.903251, 38.816764], [-75.896774, 38.815109], [-75.903778, 38.806934], [-75.911369, 38.806285], [-75.920799, 38.802635], [-75.927963, 38.799201], [-75.932518, 38.796138], [-75.937347, 38.787242], [-75.949455, 38.778419], [-75.954551, 38.777496], [-75.966369, 38.779762], [-75.968238, 38.777729], [-75.96775, 38.774398], [-75.976409, 38.765506], [-75.979965, 38.76371], [-75.993759, 38.759284], [-75.996902, 38.757507], [-75.998947, 38.755596], [-75.999336, 38.752075], [-75.99459, 38.741886], [-75.995376, 38.736679], [-75.999671, 38.734836], [-76.007354, 38.736751], [-76.009979, 38.736034], [-76.013206, 38.733291], [-76.015045, 38.728687], [-75.945243, 38.674114], [-75.991127, 38.592483], [-76.023445, 38.573875], [-76.152885, 38.631819], [-76.147158, 38.63684], [-76.147577, 38.637893]]]}, "bbox": [-76.347998, 38.573875, -75.896774, 38.944259]}, {"id": "24043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.825411, 39.494036], [-77.845105, 39.498285], [-77.865423, 39.516472], [-77.888945, 39.55595], [-77.886135, 39.560432], [-77.884536, 39.568174], [-77.902649, 39.587796], [-77.946442, 39.58491], [-78.009985, 39.602893], [-78.023427, 39.61986], [-78.035992, 39.63572], [-78.074595, 39.666686], [-78.107834, 39.682137], [-78.143478, 39.690412], [-78.176625, 39.695967], [-78.182759, 39.69511], [-78.191107, 39.690262], [-78.224337, 39.66327], [-78.271122, 39.619642], [-78.283039, 39.62047], [-78.313033, 39.631001], [-78.334044, 39.63577], [-78.342834, 39.722539], [-78.34252, 39.722539], [-78.340498, 39.722514], [-78.339539, 39.722552], [-78.337111, 39.722461], [-78.330715, 39.722689], [-78.26902, 39.722613], [-78.268948, 39.72259], [-78.243103, 39.722481], [-78.240334, 39.722498], [-78.20445, 39.72252], [-78.202895, 39.722416], [-78.09914, 39.722322], [-78.075771, 39.722301], [-78.073736, 39.722314], [-77.768534, 39.721358], [-77.743204, 39.721205], [-77.732615, 39.721094], [-77.724115, 39.720894], [-77.674522, 39.720847], [-77.672249, 39.720778], [-77.534758, 39.720134], [-77.533371, 39.720165], [-77.469145, 39.720018], [-77.570182, 39.619998], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.727379, 39.321666], [-77.755789, 39.333899], [-77.760586, 39.338864], [-77.760435, 39.344171], [-77.739204, 39.38573], [-77.765442, 39.428574], [-77.807821, 39.490241], [-77.825411, 39.494036]]]}, "bbox": [-78.342834, 39.318699, -77.469145, 39.722689]}, {"id": "24045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.920279, 38.264415], [-75.925492, 38.26667], [-75.928628, 38.297272], [-75.864213, 38.350782], [-75.860258, 38.353868], [-75.857673, 38.357011], [-75.857207, 38.359942], [-75.857656, 38.363498], [-75.859499, 38.36675], [-75.866042, 38.373053], [-75.867311, 38.375118], [-75.865397, 38.379064], [-75.860851, 38.383577], [-75.85529, 38.385345], [-75.846202, 38.384405], [-75.840348, 38.384784], [-75.838282, 38.385878], [-75.838369, 38.387476], [-75.842399, 38.393082], [-75.846741, 38.397058], [-75.851258, 38.400348], [-75.850952, 38.404536], [-75.847281, 38.417287], [-75.845573, 38.421868], [-75.843343, 38.422745], [-75.828869, 38.423417], [-75.82496, 38.425372], [-75.821287, 38.430135], [-75.819829, 38.435886], [-75.821342, 38.439261], [-75.826639, 38.442231], [-75.833127, 38.443443], [-75.835994, 38.445207], [-75.836743, 38.448088], [-75.835728, 38.45329], [-75.83316, 38.45762], [-75.828492, 38.459614], [-75.821994, 38.460959], [-75.81669, 38.463307], [-75.814901, 38.466459], [-75.815772, 38.469373], [-75.818709, 38.472332], [-75.822902, 38.47601], [-75.824765, 38.479095], [-75.823706, 38.481022], [-75.815193, 38.488794], [-75.800496, 38.49102], [-75.79466, 38.492373], [-75.784972, 38.500115], [-75.782064, 38.501596], [-75.764994, 38.506479], [-75.759754, 38.510122], [-75.756022, 38.515316], [-75.753636, 38.5281], [-75.749655, 38.531688], [-75.746515, 38.536785], [-75.740586, 38.538364], [-75.737763, 38.537649], [-75.72976, 38.538704], [-75.72449, 38.54123], [-75.718793, 38.546184], [-75.711893, 38.550876], [-75.70734, 38.559524], [-75.701565, 38.560736], [-75.701465, 38.559433], [-75.700179, 38.542717], [-75.698777, 38.522001], [-75.696688, 38.496467], [-75.696369, 38.492373], [-75.693521, 38.460128], [-75.665585, 38.4589], [-75.662843, 38.458759], [-75.630457, 38.457904], [-75.598069, 38.456855], [-75.593082, 38.456404], [-75.589307, 38.456286], [-75.583601, 38.456424], [-75.57411, 38.455991], [-75.559934, 38.455579], [-75.559212, 38.455563], [-75.533763, 38.454958], [-75.52273, 38.454657], [-75.521304, 38.454657], [-75.502961, 38.45422], [-75.500142, 38.454144], [-75.47915, 38.453699], [-75.428728, 38.452671], [-75.424831, 38.45261], [-75.410884, 38.4524], [-75.394786, 38.45216], [-75.393563, 38.452114], [-75.371054, 38.452107], [-75.355797, 38.452008], [-75.34125, 38.45197], [-75.341247, 38.45197], [-75.307011, 38.35476], [-75.364641, 38.290359], [-75.612764, 38.278626], [-75.768671, 38.285183], [-75.864628, 38.23832], [-75.87031, 38.243425], [-75.870318, 38.243432], [-75.872464, 38.243968], [-75.874653, 38.244514], [-75.882873, 38.244449], [-75.883435, 38.244445], [-75.8852, 38.243395], [-75.886841, 38.242418], [-75.887409, 38.24208], [-75.888513, 38.241423], [-75.889356, 38.2395], [-75.885676, 38.231006], [-75.885909, 38.230866], [-75.890669, 38.228009], [-75.894583, 38.228439], [-75.895689, 38.228561], [-75.895879, 38.228717], [-75.899781, 38.231921], [-75.90004, 38.232133], [-75.900661, 38.233206], [-75.901381, 38.234448], [-75.905852, 38.242165], [-75.906016, 38.242447], [-75.90845, 38.246648], [-75.908272, 38.252045], [-75.911143, 38.257951], [-75.917297, 38.263126], [-75.919446, 38.264056], [-75.920279, 38.264415]]]}, "bbox": [-75.928628, 38.228009, -75.307011, 38.560736]}, {"id": "24510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.618612, 39.237398], [-76.631132, 39.242899], [-76.632589, 39.243406], [-76.637267, 39.245648], [-76.639428, 39.246568], [-76.644212, 39.248924], [-76.647256, 39.25006], [-76.651491, 39.251983], [-76.653393, 39.252703], [-76.665567, 39.257982], [-76.667349, 39.258858], [-76.673432, 39.261281], [-76.678801, 39.263997], [-76.681644, 39.265032], [-76.685153, 39.266697], [-76.686048, 39.266885], [-76.688667, 39.268195], [-76.711054, 39.277889], [-76.711186, 39.354383], [-76.711342, 39.361225], [-76.711191, 39.362771], [-76.711313, 39.371933], [-76.609778, 39.372202], [-76.529793, 39.372058], [-76.529785, 39.356552], [-76.529786, 39.310391], [-76.529786, 39.308534], [-76.529697, 39.307717], [-76.529693, 39.306474], [-76.529743, 39.305964], [-76.529686, 39.305506], [-76.529685, 39.304661], [-76.529611, 39.302911], [-76.529775, 39.298731], [-76.529624, 39.298179], [-76.52951, 39.29718], [-76.529793, 39.292783], [-76.529708, 39.291895], [-76.529689, 39.290993], [-76.529499, 39.290168], [-76.529552, 39.289337], [-76.529681, 39.288152], [-76.529592, 39.284852], [-76.529663, 39.284203], [-76.529934, 39.283082], [-76.529787, 39.281872], [-76.529781, 39.273101], [-76.529623, 39.272307], [-76.529486, 39.218408], [-76.528587, 39.217492], [-76.529649, 39.216693], [-76.534285, 39.213208], [-76.53496, 39.21228], [-76.535885, 39.211008], [-76.533103, 39.20763], [-76.550086, 39.197207], [-76.582386, 39.207151], [-76.611695, 39.2344], [-76.618612, 39.237398]]]}, "bbox": [-76.711342, 39.197207, -76.528587, 39.372202]}, {"id": "25001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-70.147411, 42.06159], [-70.148294, 42.06195], [-70.155415, 42.062409], [-70.169781, 42.059736], [-70.178468, 42.05642], [-70.186816, 42.05045], [-70.194456, 42.03947], [-70.195345, 42.034163], [-70.193074, 42.027576], [-70.186295, 42.021308], [-70.186708, 42.019904], [-70.190834, 42.020028], [-70.196693, 42.022429], [-70.208016, 42.03073], [-70.218701, 42.045848], [-70.233256, 42.057714], [-70.238875, 42.060479], [-70.24354, 42.060569], [-70.245385, 42.063733], [-70.238087, 42.072878], [-70.225626, 42.078601], [-70.206899, 42.0819], [-70.189305, 42.082337], [-70.160166, 42.078628], [-70.154177, 42.077139], [-70.115968, 42.067638], [-70.082624, 42.054657], [-70.058531, 42.040363], [-70.034806, 42.018916], [-70.033501, 42.017736], [-70.031054, 42.014562], [-70.029953, 42.013135], [-70.029449, 42.012482], [-70.01628, 41.995403], [-70.014109, 41.992587], [-70.013876, 41.992285], [-70.011957, 41.989796], [-70.011898, 41.98972], [-70.01051, 41.987563], [-70.005717, 41.980113], [-70.005458, 41.97971], [-70.005332, 41.979515], [-70.004608, 41.978389], [-70.004271, 41.977865], [-69.986196, 41.949769], [-69.986085, 41.949597], [-69.986024, 41.949465], [-69.968598, 41.9117], [-69.945314, 41.845222], [-69.935952, 41.809422], [-69.928652, 41.74125], [-69.928311, 41.697981], [-69.928308, 41.697681], [-69.928275, 41.693504], [-69.928265, 41.692247], [-69.928265, 41.692242], [-69.928261, 41.6917], [-69.928723, 41.689634], [-69.929377, 41.686713], [-69.929457, 41.686357], [-69.9309, 41.67991], [-69.933114, 41.670014], [-69.933149, 41.669955], [-69.93412, 41.668304], [-69.942742, 41.653649], [-69.943474, 41.652406], [-69.947599, 41.645394], [-69.951169, 41.640799], [-69.951911, 41.640656], [-69.952844, 41.640476], [-69.953924, 41.640268], [-69.956862, 41.639701], [-69.958272, 41.639429], [-69.963234, 41.633794], [-69.967869, 41.627503], [-69.976478, 41.603664], [-69.982768, 41.581812], [-69.988215, 41.554704], [-69.988495, 41.55439], [-69.996546, 41.54536], [-69.998071, 41.54365], [-69.999063, 41.5434], [-70.003768, 41.542213], [-70.004136, 41.54212], [-70.004554, 41.542166], [-70.011211, 41.542892], [-70.011504, 41.542924], [-70.011725, 41.54312], [-70.014456, 41.545534], [-70.016584, 41.550772], [-70.015059, 41.553037], [-70.011596, 41.552766], [-70.010644, 41.552692], [-70.008854, 41.55451], [-70.00153, 41.561953], [-70.001281, 41.56247], [-70.000937, 41.563184], [-70.000627, 41.563827], [-69.994357, 41.576846], [-69.991723, 41.58851], [-69.987192, 41.608579], [-69.987111, 41.608765], [-69.982946, 41.618316], [-69.980418, 41.624113], [-69.977489, 41.630832], [-69.976886, 41.632213], [-69.976641, 41.632777], [-69.975579, 41.635212], [-69.975245, 41.635978], [-69.973035, 41.641046], [-69.973037, 41.641126], [-69.973153, 41.646963], [-69.975719, 41.653738], [-69.975811, 41.653798], [-69.990659, 41.663471], [-69.990668, 41.663476], [-69.990734, 41.663519], [-69.990748, 41.663528], [-69.99079, 41.663556], [-69.996194, 41.667076], [-69.996359, 41.667184], [-69.996509, 41.667246], [-70.002697, 41.669799], [-70.003016, 41.669931], [-70.006833, 41.671506], [-70.007011, 41.671579], [-70.007153, 41.671587], [-70.014211, 41.671971], [-70.015789, 41.67153], [-70.020964, 41.670085], [-70.029119, 41.667807], [-70.029319, 41.667751], [-70.029346, 41.667744], [-70.037145, 41.66688], [-70.037255, 41.666868], [-70.037757, 41.666812], [-70.055523, 41.664843], [-70.089238, 41.662813], [-70.119904, 41.655455], [-70.120935, 41.655208], [-70.121351, 41.655108], [-70.122597, 41.654809], [-70.122689, 41.654787], [-70.134702, 41.651905], [-70.140163, 41.650594], [-70.140207, 41.650584], [-70.140437, 41.650529], [-70.140877, 41.650423], [-70.141049, 41.650423], [-70.141141, 41.650423], [-70.142592, 41.650424], [-70.145882, 41.650427], [-70.147011, 41.650428], [-70.148435, 41.650429], [-70.158621, 41.650438], [-70.191061, 41.645259], [-70.245867, 41.628479], [-70.25621, 41.620698], [-70.25542, 41.617541], [-70.259601, 41.610863], [-70.265424, 41.609333], [-70.267587, 41.610912], [-70.269687, 41.617775], [-70.26913, 41.625742], [-70.274522, 41.632927], [-70.28132, 41.635125], [-70.29062, 41.635196], [-70.321588, 41.630508], [-70.329924, 41.634578], [-70.338067, 41.636338], [-70.351634, 41.634687], [-70.360352, 41.631069], [-70.364892, 41.626721], [-70.364744, 41.623671], [-70.369854, 41.615888], [-70.379151, 41.611361], [-70.400581, 41.606382], [-70.401148, 41.606451], [-70.408535, 41.607345], [-70.413944, 41.606965], [-70.437246, 41.605329], [-70.437889, 41.604249], [-70.440556, 41.599767], [-70.442225, 41.596963], [-70.44435, 41.593393], [-70.445289, 41.591815], [-70.446543, 41.590247], [-70.450382, 41.585445], [-70.456052, 41.578355], [-70.457356, 41.576724], [-70.461093, 41.572051], [-70.461278, 41.57182], [-70.46196, 41.571213], [-70.462206, 41.570995], [-70.462239, 41.570965], [-70.472778, 41.561595], [-70.473328, 41.561106], [-70.476231, 41.558524], [-70.476256, 41.558502], [-70.476275, 41.558493], [-70.48335, 41.555259], [-70.485155, 41.554434], [-70.485571, 41.554244], [-70.486815, 41.553887], [-70.493244, 41.552044], [-70.522009, 41.548999], [-70.522327, 41.548965], [-70.53164, 41.548807], [-70.559482, 41.548334], [-70.559689, 41.54833], [-70.559728, 41.548326], [-70.560909, 41.548203], [-70.561261, 41.548167], [-70.574023, 41.54684], [-70.588412, 41.545345], [-70.588494, 41.545336], [-70.58881, 41.545304], [-70.588894, 41.545295], [-70.58957, 41.545225], [-70.59657, 41.544497], [-70.611081, 41.542989], [-70.611147, 41.542975], [-70.613006, 41.542584], [-70.614398, 41.542292], [-70.616715, 41.541805], [-70.617223, 41.541698], [-70.617638, 41.541611], [-70.617911, 41.541553], [-70.633607, 41.538254], [-70.633713, 41.538192], [-70.6338, 41.538141], [-70.643627, 41.532357], [-70.650059, 41.524172], [-70.650128, 41.524084], [-70.651566, 41.522254], [-70.65205, 41.521639], [-70.654104, 41.519025], [-70.654168, 41.518992], [-70.663856, 41.514031], [-70.669518, 41.513339], [-70.672253, 41.515774], [-70.674646, 41.519385], [-70.681397, 41.51755], [-70.688353, 41.516789], [-70.691364, 41.517842], [-70.6948, 41.52564], [-70.658659, 41.543385], [-70.654302, 41.549926], [-70.655365, 41.557498], [-70.653899, 41.56516], [-70.64878, 41.56987], [-70.642748, 41.572385], [-70.640948, 41.577325], [-70.64204, 41.583066], [-70.652449, 41.60521], [-70.651986, 41.610184], [-70.640003, 41.624616], [-70.645251, 41.633547], [-70.652614, 41.637829], [-70.650419, 41.644202], [-70.638695, 41.649427], [-70.637632, 41.654573], [-70.646308, 41.678433], [-70.649285, 41.680943], [-70.661475, 41.681756], [-70.645962, 41.693794], [-70.62544, 41.698691], [-70.623652, 41.707398], [-70.626529, 41.712995], [-70.642914, 41.71841], [-70.621622, 41.748972], [-70.632578, 41.762821], [-70.565281, 41.786705], [-70.537289, 41.810859], [-70.533823, 41.806323], [-70.533303, 41.805643], [-70.532656, 41.804796], [-70.52507, 41.797907], [-70.518468, 41.791912], [-70.517615, 41.791139], [-70.517411, 41.790953], [-70.516921, 41.790595], [-70.516651, 41.790398], [-70.516101, 41.789996], [-70.514603, 41.788901], [-70.514483, 41.788814], [-70.514424, 41.788771], [-70.494048, 41.773883], [-70.493016, 41.773318], [-70.492884, 41.773245], [-70.483477, 41.768094], [-70.482152, 41.767368], [-70.474051, 41.762931], [-70.473707, 41.762743], [-70.473335, 41.762539], [-70.471999, 41.761808], [-70.471969, 41.761791], [-70.471807, 41.761702], [-70.471552, 41.761563], [-70.458968, 41.757906], [-70.413713, 41.744756], [-70.412476, 41.744397], [-70.412071, 41.744336], [-70.376992, 41.739029], [-70.375341, 41.738779], [-70.375253, 41.738774], [-70.318091, 41.735748], [-70.31529, 41.7356], [-70.314667, 41.735567], [-70.291301, 41.73433], [-70.290957, 41.734312], [-70.290788, 41.734224], [-70.288323, 41.732946], [-70.277064, 41.727108], [-70.275393, 41.726242], [-70.275203, 41.726143], [-70.275164, 41.726079], [-70.274188, 41.724471], [-70.272289, 41.721346], [-70.263831, 41.714263], [-70.263654, 41.714115], [-70.263097, 41.714095], [-70.26144, 41.714035], [-70.259205, 41.713954], [-70.256395, 41.716236], [-70.252686, 41.719248], [-70.251794, 41.719973], [-70.250704, 41.720858], [-70.247935, 41.723106], [-70.247379, 41.723558], [-70.24705, 41.723825], [-70.237418, 41.731648], [-70.235048, 41.733572], [-70.23485, 41.733733], [-70.225881, 41.73815], [-70.225312, 41.738431], [-70.224462, 41.738849], [-70.224006, 41.739074], [-70.220842, 41.740632], [-70.216697, 41.742674], [-70.216073, 41.742981], [-70.198037, 41.749034], [-70.197525, 41.749206], [-70.193202, 41.750657], [-70.189254, 41.751982], [-70.189117, 41.751961], [-70.182076, 41.750885], [-70.176566, 41.752134], [-70.159127, 41.756085], [-70.143848, 41.759547], [-70.143444, 41.759639], [-70.141533, 41.760072], [-70.141519, 41.760071], [-70.14038, 41.759999], [-70.136007, 41.759724], [-70.129065, 41.759287], [-70.124364, 41.758991], [-70.12407, 41.758973], [-70.122132, 41.758851], [-70.121978, 41.758841], [-70.115895, 41.76065], [-70.115067, 41.760896], [-70.109319, 41.762606], [-70.097666, 41.766072], [-70.097658, 41.766074], [-70.096768, 41.766339], [-70.096061, 41.766549], [-70.086376, 41.76847], [-70.081833, 41.769371], [-70.067603, 41.772193], [-70.065142, 41.772681], [-70.064314, 41.772845], [-70.060674, 41.77418], [-70.03439, 41.783822], [-70.033874, 41.784011], [-70.033223, 41.78425], [-70.024734, 41.787364], [-70.024658, 41.787427], [-70.023082, 41.788726], [-70.022809, 41.788952], [-70.022381, 41.789305], [-70.009936, 41.79957], [-70.008882, 41.80044], [-70.008462, 41.800786], [-70.003842, 41.80852], [-70.004486, 41.838826], [-70.009013, 41.876625], [-70.000188, 41.886938], [-70.002922, 41.890315], [-70.012154, 41.891656], [-70.024335, 41.89882], [-70.025553, 41.911699], [-70.030537, 41.929154], [-70.044995, 41.930049], [-70.054464, 41.927366], [-70.065671, 41.911658], [-70.065723, 41.899641], [-70.065372, 41.887702], [-70.064084, 41.878924], [-70.066002, 41.877011], [-70.067566, 41.877793], [-70.070889, 41.882973], [-70.073039, 41.899783], [-70.074006, 41.93865], [-70.077421, 41.985497], [-70.083775, 42.012041], [-70.089578, 42.024896], [-70.095595, 42.032832], [-70.10806, 42.043601], [-70.123043, 42.051668], [-70.147411, 42.06159]]]}, "bbox": [-70.6948, 41.513339, -69.928261, 42.082337]}, {"id": "25003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.000067, 42.312693], [-73.001846, 42.25109], [-73.007993, 42.238409], [-73.071199, 42.148214], [-73.053254, 42.039861], [-73.127276, 42.041964], [-73.229798, 42.044877], [-73.231056, 42.044945], [-73.293097, 42.04694], [-73.29442, 42.046984], [-73.487314, 42.049638], [-73.496879, 42.049675], [-73.508142, 42.086257], [-73.410647, 42.351738], [-73.352527, 42.510002], [-73.307004, 42.632653], [-73.264957, 42.74594], [-73.142487, 42.743508], [-73.022903, 42.741133], [-72.949742, 42.705103], [-72.951039, 42.641006], [-72.975379, 42.555933], [-73.000067, 42.312693]]]}, "bbox": [-73.508142, 42.039861, -72.949742, 42.74594]}, {"id": "25005", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-70.821001, 41.587268], [-70.821743, 41.583656], [-70.82191, 41.582841], [-70.830087, 41.585385], [-70.837632, 41.595374], [-70.838147, 41.596056], [-70.838452, 41.59646], [-70.834529, 41.60261], [-70.832044, 41.606504], [-70.831802, 41.606272], [-70.828025, 41.602666], [-70.827398, 41.602067], [-70.823735, 41.598569], [-70.820918, 41.587673], [-70.821001, 41.587268]]], [[[-70.854232, 41.618429], [-70.854211, 41.618302], [-70.853445, 41.613592], [-70.850181, 41.593529], [-70.85222, 41.589223], [-70.852488, 41.588658], [-70.852551, 41.588526], [-70.853121, 41.587321], [-70.85324, 41.587332], [-70.857239, 41.587705], [-70.862852, 41.600678], [-70.862998, 41.601014], [-70.863486, 41.602143], [-70.868501, 41.613733], [-70.868904, 41.614664], [-70.86836, 41.622664], [-70.869624, 41.625608], [-70.872665, 41.627816], [-70.87904, 41.629777], [-70.887643, 41.632422], [-70.889209, 41.632904], [-70.88926, 41.632875], [-70.889594, 41.632685], [-70.904513, 41.624205], [-70.905765, 41.623494], [-70.913202, 41.619266], [-70.904522, 41.610361], [-70.899981, 41.593504], [-70.901381, 41.592504], [-70.910814, 41.595506], [-70.916581, 41.607483], [-70.920074, 41.61081], [-70.927172, 41.611253], [-70.929722, 41.609479], [-70.93, 41.600441], [-70.927393, 41.594064], [-70.931338, 41.5842], [-70.937978, 41.577416], [-70.941588, 41.581034], [-70.946911, 41.581089], [-70.948797, 41.579038], [-70.9473, 41.573659], [-70.93783, 41.565239], [-70.931545, 41.540169], [-70.941785, 41.540121], [-70.979225, 41.530427], [-70.983354, 41.520616], [-71.003275, 41.511912], [-71.019354, 41.508857], [-71.023523, 41.506326], [-71.035514, 41.499047], [-71.058418, 41.505967], [-71.085663, 41.509292], [-71.12057, 41.497448], [-71.133353, 41.629509], [-71.133608, 41.632152], [-71.133796, 41.63409], [-71.134484, 41.641198], [-71.134478, 41.641262], [-71.134688, 41.660502], [-71.135188, 41.660502], [-71.14587, 41.662795], [-71.153989, 41.664102], [-71.17609, 41.668102], [-71.17609, 41.668502], [-71.17599, 41.671402], [-71.18129, 41.672502], [-71.191175, 41.674292], [-71.191178, 41.674216], [-71.19439, 41.674802], [-71.19564, 41.67509], [-71.224798, 41.710498], [-71.261392, 41.752301], [-71.31779, 41.776099], [-71.317795, 41.776101], [-71.327896, 41.780501], [-71.339297, 41.8065], [-71.339597, 41.832], [-71.337597, 41.8337], [-71.339298, 41.893399], [-71.339298, 41.893599], [-71.352699, 41.896699], [-71.354699, 41.896499], [-71.362499, 41.895599], [-71.364699, 41.895399], [-71.365399, 41.895299], [-71.370999, 41.894599], [-71.373799, 41.894399], [-71.3766, 41.893999], [-71.3817, 41.922699], [-71.3816, 41.922899], [-71.381401, 41.964799], [-71.381501, 41.966699], [-71.381466, 41.984998], [-71.364887, 41.985173], [-71.288263, 42.014379], [-71.288265, 42.014451], [-71.288265, 42.014462], [-71.168681, 42.061161], [-71.138641, 42.072761], [-71.138619, 42.072813], [-71.080192, 42.095699], [-71.054718, 41.985057], [-71.049498, 41.96315], [-70.999705, 41.929592], [-71.03657, 41.816525], [-70.921782, 41.791244], [-70.843177, 41.628487], [-70.843522, 41.62866], [-70.843528, 41.628663], [-70.844165, 41.628983], [-70.852518, 41.626919], [-70.855031, 41.624283], [-70.855162, 41.624145], [-70.854232, 41.618429]]]]}, "bbox": [-71.3817, 41.497448, -70.820918, 42.095699]}, {"id": "25009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.208137, 42.743273], [-71.181803, 42.73759], [-71.186104, 42.790689], [-71.165603, 42.808689], [-71.149703, 42.815489], [-71.113858, 42.827865], [-71.058407, 42.847009], [-71.037901, 42.854089], [-70.996901, 42.864589], [-70.931699, 42.884189], [-70.930799, 42.884589], [-70.914899, 42.886589], [-70.914886, 42.886564], [-70.902768, 42.88653], [-70.886136, 42.88261], [-70.848625, 42.860939], [-70.817296, 42.87229], [-70.817731, 42.850613], [-70.80522, 42.781798], [-70.792867, 42.747118], [-70.772267, 42.711064], [-70.770453, 42.704824], [-70.778552, 42.69852], [-70.778671, 42.693622], [-70.764421, 42.68565], [-70.748752, 42.683878], [-70.744427, 42.682092], [-70.72982, 42.669602], [-70.728845, 42.663877], [-70.689402, 42.653319], [-70.682594, 42.654525], [-70.681594, 42.662342], [-70.663548, 42.677603], [-70.645101, 42.689423], [-70.630077, 42.692699], [-70.620031, 42.688006], [-70.622864, 42.67599], [-70.623815, 42.665481], [-70.622791, 42.660873], [-70.61482, 42.65765], [-70.595474, 42.660336], [-70.591742, 42.648508], [-70.591469, 42.639821], [-70.594014, 42.63503], [-70.605611, 42.634898], [-70.61842, 42.62864], [-70.635635, 42.600243], [-70.654727, 42.582234], [-70.664887, 42.580436], [-70.668022, 42.581732], [-70.668115, 42.585361], [-70.668488, 42.589643], [-70.670442, 42.592249], [-70.672583, 42.594296], [-70.675747, 42.594669], [-70.678819, 42.594389], [-70.681428, 42.593173], [-70.684502, 42.588858], [-70.698574, 42.577393], [-70.729688, 42.57151], [-70.737044, 42.576863], [-70.757283, 42.570455], [-70.804091, 42.561595], [-70.815391, 42.554195], [-70.823291, 42.551495], [-70.848492, 42.550195], [-70.871382, 42.546404], [-70.872357, 42.542952], [-70.866279, 42.522617], [-70.859751, 42.520441], [-70.857125, 42.521492], [-70.842091, 42.519495], [-70.831091, 42.503596], [-70.835991, 42.490496], [-70.841591, 42.487596], [-70.847391, 42.491496], [-70.857791, 42.490296], [-70.879692, 42.478796], [-70.886493, 42.470197], [-70.887992, 42.467096], [-70.887292, 42.464896], [-70.894292, 42.460896], [-70.908092, 42.466896], [-70.917693, 42.467996], [-70.921993, 42.466696], [-70.934993, 42.457896], [-70.934264, 42.444646], [-70.933155, 42.437833], [-70.928226, 42.430986], [-70.913192, 42.427697], [-70.908392, 42.425197], [-70.901992, 42.420297], [-70.905692, 42.416197], [-70.936393, 42.418097], [-70.943295, 42.436248], [-70.943612, 42.452092], [-70.94702, 42.456236], [-70.96047, 42.446166], [-70.960647, 42.443787], [-70.982294, 42.431296], [-71.025777, 42.444753], [-71.025864, 42.444743], [-71.03727, 42.457674], [-71.039114, 42.459513], [-71.040044, 42.460706], [-71.044729, 42.465724], [-71.044796, 42.466195], [-71.051571, 42.473891], [-71.053496, 42.475895], [-71.076133, 42.604077], [-71.13529, 42.599061], [-71.148613, 42.613249], [-71.158617, 42.612948], [-71.165015, 42.597959], [-71.256103, 42.656691], [-71.254532, 42.734136], [-71.245504, 42.742589], [-71.208302, 42.743314], [-71.208227, 42.743294], [-71.208137, 42.743273]]]}, "bbox": [-71.256103, 42.416197, -70.591469, 42.886589]}, {"id": "25013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.141843, 42.160898], [-72.135023, 42.161708], [-72.134954, 42.090665], [-72.135715, 42.030245], [-72.198828, 42.030982], [-72.397428, 42.033302], [-72.509187, 42.034607], [-72.695927, 42.036788], [-72.714134, 42.036608], [-72.755838, 42.036195], [-72.757467, 42.020947], [-72.758151, 42.020865], [-72.766139, 42.007695], [-72.766739, 42.002995], [-72.774757, 42.002129], [-72.816741, 41.997595], [-72.813541, 42.036494], [-72.863619, 42.037709], [-72.863733, 42.03771], [-73.008739, 42.039356], [-73.053254, 42.039861], [-73.071199, 42.148214], [-73.007993, 42.238409], [-73.001846, 42.25109], [-73.000067, 42.312693], [-72.885184, 42.332615], [-72.912302, 42.239133], [-72.793414, 42.236854], [-72.686861, 42.18339], [-72.613138, 42.286265], [-72.593433, 42.211691], [-72.592418, 42.211691], [-72.546356, 42.216489], [-72.403947, 42.231847], [-72.395492, 42.185812], [-72.221218, 42.245252], [-72.263876, 42.183885], [-72.141843, 42.160898]]]}, "bbox": [-73.071199, 41.997595, -72.134954, 42.332615]}, {"id": "25017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.585168, 42.310977], [-71.592502, 42.317901], [-71.59735, 42.321149], [-71.601885, 42.326971], [-71.605158, 42.330259], [-71.603591, 42.331676], [-71.604099, 42.336768], [-71.611573, 42.339008], [-71.619131, 42.343349], [-71.625825, 42.349724], [-71.624702, 42.350465], [-71.543297, 42.466451], [-71.538949, 42.543069], [-71.635812, 42.524091], [-71.650613, 42.526191], [-71.651713, 42.526391], [-71.655413, 42.526891], [-71.664613, 42.528291], [-71.665513, 42.528391], [-71.675714, 42.52999], [-71.67898, 42.530351], [-71.67773, 42.539397], [-71.664614, 42.611589], [-71.775742, 42.644216], [-71.85841, 42.63384], [-71.898714, 42.711478], [-71.80545, 42.709137], [-71.77251, 42.70831], [-71.636214, 42.704888], [-71.631814, 42.704788], [-71.54252, 42.702726], [-71.294205, 42.69699], [-71.254532, 42.734136], [-71.256103, 42.656691], [-71.165015, 42.597959], [-71.158617, 42.612948], [-71.148613, 42.613249], [-71.13529, 42.599061], [-71.076133, 42.604077], [-71.053496, 42.475895], [-71.051571, 42.473891], [-71.044796, 42.466195], [-71.044729, 42.465724], [-71.040044, 42.460706], [-71.039114, 42.459513], [-71.03727, 42.457674], [-71.025864, 42.444743], [-71.025777, 42.444753], [-71.020377, 42.43825], [-71.033203, 42.414226], [-71.055295, 42.387097], [-71.073496, 42.391796], [-71.080595, 42.380997], [-71.064095, 42.368997], [-71.069795, 42.369097], [-71.077095, 42.358697], [-71.099196, 42.352797], [-71.117099, 42.355594], [-71.117197, 42.367197], [-71.130997, 42.373796], [-71.143501, 42.364969], [-71.148565, 42.361174], [-71.167625, 42.360073], [-71.174798, 42.350265], [-71.167565, 42.333441], [-71.156833, 42.330189], [-71.178935, 42.314316], [-71.164804, 42.303764], [-71.178636, 42.294595], [-71.191155, 42.283059], [-71.269919, 42.328096], [-71.332434, 42.247729], [-71.329217, 42.245023], [-71.329561, 42.23367], [-71.34083, 42.224605], [-71.343065, 42.220242], [-71.339837, 42.213886], [-71.34698, 42.215555], [-71.352024, 42.207311], [-71.34417, 42.200703], [-71.404381, 42.188215], [-71.40222, 42.178798], [-71.430174, 42.179386], [-71.444067, 42.174889], [-71.463957, 42.158239], [-71.478119, 42.156782], [-71.599318, 42.225959], [-71.586759, 42.259545], [-71.549466, 42.266124], [-71.513048, 42.267148], [-71.497046, 42.289829], [-71.486125, 42.310885], [-71.486768, 42.330075], [-71.551126, 42.326395], [-71.585168, 42.310977]]]}, "bbox": [-71.898714, 42.156782, -71.020377, 42.734136]}, {"id": "25021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.498258, 42.01722], [-71.498259, 42.027813], [-71.497901, 42.031513], [-71.498262, 42.031333], [-71.498284, 42.064802], [-71.50091, 42.117041], [-71.478521, 42.131421], [-71.478119, 42.156782], [-71.463957, 42.158239], [-71.444067, 42.174889], [-71.430174, 42.179386], [-71.40222, 42.178798], [-71.404381, 42.188215], [-71.34417, 42.200703], [-71.352024, 42.207311], [-71.34698, 42.215555], [-71.339837, 42.213886], [-71.343065, 42.220242], [-71.34083, 42.224605], [-71.329561, 42.23367], [-71.329217, 42.245023], [-71.332434, 42.247729], [-71.269919, 42.328096], [-71.191155, 42.283059], [-71.130808, 42.22788], [-71.112938, 42.258641], [-71.102691, 42.259884], [-71.088672, 42.269733], [-71.082968, 42.268496], [-71.065651, 42.271052], [-71.061593, 42.267299], [-71.053395, 42.272297], [-71.055494, 42.275698], [-71.042794, 42.276998], [-71.041694, 42.305298], [-71.005399, 42.307196], [-71.000948, 42.302483], [-71.006158, 42.28811], [-71.0049, 42.28272], [-70.996097, 42.271222], [-70.98909, 42.267449], [-70.967351, 42.268168], [-70.948971, 42.272505], [-70.945547, 42.269081], [-70.935886, 42.264189], [-70.923169, 42.263211], [-70.910941, 42.265412], [-70.906302, 42.271636], [-70.924877, 42.15758], [-70.981293, 42.135502], [-70.993114, 42.130855], [-71.002029, 42.126506], [-71.080192, 42.095699], [-71.138619, 42.072813], [-71.138641, 42.072761], [-71.168681, 42.061161], [-71.288265, 42.014462], [-71.288265, 42.014451], [-71.288263, 42.014379], [-71.364887, 41.985173], [-71.381466, 41.984998], [-71.381401, 42.018798], [-71.458104, 42.017762], [-71.498258, 42.01722]]]}, "bbox": [-71.50091, 41.984998, -70.906302, 42.328096]}, {"id": "25023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-70.921782, 41.791244], [-71.03657, 41.816525], [-70.999705, 41.929592], [-71.049498, 41.96315], [-71.054718, 41.985057], [-71.080192, 42.095699], [-71.002029, 42.126506], [-70.993114, 42.130855], [-70.981293, 42.135502], [-70.924877, 42.15758], [-70.906302, 42.271636], [-70.896267, 42.2851], [-70.895778, 42.292436], [-70.897123, 42.29586], [-70.915588, 42.302463], [-70.91749, 42.305686], [-70.907556, 42.307889], [-70.882764, 42.30886], [-70.881242, 42.300663], [-70.870873, 42.285668], [-70.861807, 42.275965], [-70.851093, 42.26827], [-70.831075, 42.267424], [-70.824661, 42.265935], [-70.811742, 42.262935], [-70.788724, 42.25392], [-70.780722, 42.251792], [-70.770964, 42.249197], [-70.764757, 42.244062], [-70.754488, 42.228673], [-70.74723, 42.221816], [-70.73056, 42.21094], [-70.722269, 42.207959], [-70.718707, 42.184853], [-70.714301, 42.168783], [-70.706264, 42.163137], [-70.685315, 42.133025], [-70.663931, 42.108336], [-70.640169, 42.088633], [-70.63848, 42.081579], [-70.647349, 42.076331], [-70.64819, 42.068441], [-70.643208, 42.050821], [-70.644337, 42.045895], [-70.650874, 42.046247], [-70.66936, 42.037116], [-70.671666, 42.02139], [-70.667512, 42.01232], [-70.670934, 42.007786], [-70.678798, 42.00551], [-70.686798, 42.012764], [-70.695809, 42.013346], [-70.712204, 42.007586], [-70.710034, 41.999544], [-70.698981, 41.987103], [-70.662476, 41.960592], [-70.651673, 41.958701], [-70.648365, 41.961672], [-70.631251, 41.950475], [-70.623513, 41.943273], [-70.616491, 41.940204], [-70.608166, 41.940701], [-70.598078, 41.947772], [-70.583572, 41.950007], [-70.552941, 41.929641], [-70.546386, 41.916751], [-70.54741, 41.911934], [-70.545949, 41.907158], [-70.532084, 41.889568], [-70.525567, 41.85873], [-70.535487, 41.839381], [-70.542065, 41.831263], [-70.543168, 41.824446], [-70.54103, 41.815754], [-70.537289, 41.810859], [-70.565281, 41.786705], [-70.632578, 41.762821], [-70.621622, 41.748972], [-70.642914, 41.71841], [-70.644641, 41.71898], [-70.651093, 41.715715], [-70.656596, 41.715401], [-70.670453, 41.721912], [-70.708193, 41.730959], [-70.718739, 41.73574], [-70.726331, 41.732731], [-70.728933, 41.723433], [-70.721302, 41.712968], [-70.717451, 41.69398], [-70.719575, 41.685002], [-70.729395, 41.68814], [-70.744396, 41.696967], [-70.755347, 41.694326], [-70.761481, 41.676808], [-70.761497, 41.676641], [-70.76236, 41.667735], [-70.758198, 41.661225], [-70.757622, 41.654265], [-70.765463, 41.641575], [-70.769318, 41.641145], [-70.773654, 41.645033], [-70.775798, 41.649145], [-70.776709, 41.650756], [-70.809118, 41.656437], [-70.813286, 41.65567], [-70.815729, 41.652796], [-70.816351, 41.645995], [-70.804664, 41.641157], [-70.800215, 41.631753], [-70.801063, 41.629513], [-70.810279, 41.624873], [-70.835296, 41.624532], [-70.843177, 41.628487], [-70.921782, 41.791244]]]}, "bbox": [-71.080192, 41.624532, -70.525567, 42.30886]}, {"id": "25025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.042794, 42.276998], [-71.055494, 42.275698], [-71.053395, 42.272297], [-71.061593, 42.267299], [-71.065651, 42.271052], [-71.082968, 42.268496], [-71.088672, 42.269733], [-71.102691, 42.259884], [-71.112938, 42.258641], [-71.130808, 42.22788], [-71.191155, 42.283059], [-71.178636, 42.294595], [-71.164804, 42.303764], [-71.178935, 42.314316], [-71.156833, 42.330189], [-71.167565, 42.333441], [-71.174798, 42.350265], [-71.167625, 42.360073], [-71.148565, 42.361174], [-71.143501, 42.364969], [-71.130997, 42.373796], [-71.117197, 42.367197], [-71.117099, 42.355594], [-71.099196, 42.352797], [-71.077095, 42.358697], [-71.069795, 42.369097], [-71.064095, 42.368997], [-71.080595, 42.380997], [-71.073496, 42.391796], [-71.055295, 42.387097], [-71.033203, 42.414226], [-71.020377, 42.43825], [-71.025777, 42.444753], [-70.982294, 42.431296], [-70.960647, 42.443787], [-70.960835, 42.441272], [-70.982994, 42.423996], [-70.987694, 42.416696], [-70.990595, 42.407098], [-70.989195, 42.402598], [-70.985068, 42.402041], [-70.983426, 42.396246], [-70.980336, 42.391513], [-70.972706, 42.389968], [-70.970195, 42.388036], [-70.97174, 42.387071], [-70.972513, 42.385042], [-70.972706, 42.381759], [-70.972223, 42.377316], [-70.960798, 42.360648], [-70.953292, 42.349698], [-70.953022, 42.343973], [-70.963578, 42.34686], [-70.972418, 42.353875], [-70.974897, 42.355843], [-70.979927, 42.356382], [-70.982282, 42.35592], [-70.998253, 42.352788], [-71.006877, 42.347039], [-71.010146, 42.339234], [-71.011804, 42.335274], [-71.01568, 42.326019], [-71.013165, 42.315419], [-71.005399, 42.307196], [-71.041694, 42.305298], [-71.042794, 42.276998]]]}, "bbox": [-71.191155, 42.22788, -70.953022, 42.444753]}, {"id": "25027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.211079, 42.251262], [-72.211275, 42.255635], [-72.216138, 42.256144], [-72.217879, 42.270089], [-72.212941, 42.269925], [-72.212128, 42.282672], [-72.207245, 42.28521], [-72.203363, 42.291162], [-72.210815, 42.29446], [-72.213946, 42.29429], [-72.314599, 42.343526], [-72.244952, 42.513552], [-72.224839, 42.638981], [-72.282968, 42.722008], [-72.111068, 42.717264], [-72.078463, 42.716364], [-71.928811, 42.712234], [-71.898714, 42.711478], [-71.85841, 42.63384], [-71.775742, 42.644216], [-71.664614, 42.611589], [-71.67773, 42.539397], [-71.67898, 42.530351], [-71.675714, 42.52999], [-71.665513, 42.528391], [-71.664613, 42.528291], [-71.655413, 42.526891], [-71.651713, 42.526391], [-71.650613, 42.526191], [-71.635812, 42.524091], [-71.538949, 42.543069], [-71.543297, 42.466451], [-71.624702, 42.350465], [-71.625825, 42.349724], [-71.619131, 42.343349], [-71.611573, 42.339008], [-71.604099, 42.336768], [-71.603591, 42.331676], [-71.605158, 42.330259], [-71.601885, 42.326971], [-71.59735, 42.321149], [-71.592502, 42.317901], [-71.585168, 42.310977], [-71.551126, 42.326395], [-71.486768, 42.330075], [-71.486125, 42.310885], [-71.497046, 42.289829], [-71.513048, 42.267148], [-71.549466, 42.266124], [-71.586759, 42.259545], [-71.599318, 42.225959], [-71.478119, 42.156782], [-71.478521, 42.131421], [-71.50091, 42.117041], [-71.498284, 42.064802], [-71.498262, 42.031333], [-71.497901, 42.031513], [-71.498259, 42.027813], [-71.498258, 42.01722], [-71.499905, 42.017198], [-71.500905, 42.017098], [-71.527306, 42.015098], [-71.527606, 42.014998], [-71.559439, 42.014342], [-71.576908, 42.014098], [-71.591104, 42.013713], [-71.799242, 42.008065], [-71.80065, 42.023569], [-72.059752, 42.027339], [-72.10216, 42.028962], [-72.135687, 42.030245], [-72.135715, 42.030245], [-72.134954, 42.090665], [-72.135023, 42.161708], [-72.141843, 42.160898], [-72.263876, 42.183885], [-72.221218, 42.245252], [-72.218068, 42.248605], [-72.214821, 42.249041], [-72.214584, 42.247571], [-72.21046, 42.247205], [-72.211079, 42.251262]]]}, "bbox": [-72.314599, 42.008065, -71.478119, 42.722008]}, {"id": "26007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.387587, 45.207107], [-83.384265, 45.203472], [-83.381647, 45.203357], [-83.368896, 45.182168], [-83.368046, 45.172478], [-83.363678, 45.166469], [-83.359895, 45.16302], [-83.348684, 45.161516], [-83.337822, 45.14712], [-83.316118, 45.141958], [-83.315924, 45.139992], [-83.319315, 45.137684], [-83.318442, 45.12893], [-83.30788, 45.099093], [-83.298275, 45.090483], [-83.290827, 45.069157], [-83.291346, 45.062597], [-83.280272, 45.045962], [-83.277037, 45.044767], [-83.271464, 45.038114], [-83.265896, 45.026844], [-83.271506, 45.023417], [-83.287974, 45.026462], [-83.302153, 45.032315], [-83.340257, 45.041545], [-83.357609, 45.050613], [-83.36747, 45.062268], [-83.399255, 45.070364], [-83.433798, 45.057616], [-83.442052, 45.051056], [-83.453363, 45.035331], [-83.454168, 45.03188], [-83.446342, 45.016655], [-83.435249, 45.011883], [-83.431254, 45.007998], [-83.435822, 45.000012], [-83.438948, 45.000011], [-83.450013, 44.990219], [-83.443718, 44.952247], [-83.438856, 44.940843], [-83.433032, 44.93289], [-83.425311, 44.926741], [-83.404596, 44.918761], [-83.398879, 44.906417], [-83.39396, 44.903056], [-83.352815, 44.886164], [-83.320503, 44.880571], [-83.321093, 44.858494], [-83.888484, 44.856458], [-83.881218, 45.202062], [-83.387587, 45.207107]]]}, "bbox": [-83.888484, 44.856458, -83.265896, 45.207107]}, {"id": "26017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.698816, 43.478957], [-83.817678, 43.479052], [-83.916091, 43.522629], [-84.050987, 43.524064], [-84.05, 43.567324], [-84.168127, 43.568899], [-84.167318, 43.825902], [-84.166377, 43.996901], [-84.045409, 43.996974], [-84.044843, 43.911146], [-83.911128, 43.91052], [-83.916815, 43.89905], [-83.917875, 43.856509], [-83.926345, 43.787398], [-83.929375, 43.777091], [-83.945426, 43.759946], [-83.954792, 43.760932], [-83.956021, 43.759286], [-83.954347, 43.750647], [-83.939297, 43.715369], [-83.929462, 43.701269], [-83.909479, 43.672622], [-83.897078, 43.664022], [-83.852076, 43.644922], [-83.814674, 43.643022], [-83.806774, 43.641221], [-83.778919, 43.630056], [-83.770693, 43.628691], [-83.769886, 43.634924], [-83.725793, 43.618691], [-83.703446, 43.597646], [-83.699253, 43.596792], [-83.699368, 43.595314], [-83.698816, 43.478957]]]}, "bbox": [-84.168127, 43.478957, -83.698816, 43.996974]}, {"id": "26021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.581518, 41.943765], [-86.564722, 41.981427], [-86.564276, 41.982427], [-86.564077, 41.982874], [-86.563904, 41.983262], [-86.563598, 41.983948], [-86.561542, 41.988559], [-86.556537, 41.999782], [-86.556421, 42.000042], [-86.549328, 42.01092], [-86.549237, 42.011059], [-86.545288, 42.017115], [-86.544867, 42.017761], [-86.541718, 42.02259], [-86.541089, 42.023555], [-86.536063, 42.031262], [-86.533855, 42.034648], [-86.532934, 42.036061], [-86.53264, 42.036512], [-86.532161, 42.037246], [-86.508856, 42.072986], [-86.501322, 42.08454], [-86.490122, 42.105139], [-86.485223, 42.118239], [-86.479031, 42.123519], [-86.466576, 42.134138], [-86.466262, 42.134406], [-86.464913, 42.135752], [-86.464897, 42.135767], [-86.464356, 42.136308], [-86.463967, 42.136696], [-86.463685, 42.136977], [-86.440762, 42.159847], [-86.439416, 42.16119], [-86.437909, 42.162694], [-86.437148, 42.163453], [-86.404146, 42.196379], [-86.402183, 42.198542], [-86.398915, 42.202143], [-86.398536, 42.202561], [-86.397692, 42.203491], [-86.394997, 42.20646], [-86.394183, 42.207357], [-86.393565, 42.208039], [-86.393518, 42.20809], [-86.386591, 42.215723], [-86.385179, 42.217279], [-86.383665, 42.219207], [-86.383585, 42.21931], [-86.381434, 42.222048], [-86.380407, 42.223357], [-86.380035, 42.22383], [-86.36488, 42.243133], [-86.223563, 42.243379], [-86.22294, 42.071484], [-86.226097, 41.760016], [-86.265496, 41.760207], [-86.501773, 41.759553], [-86.519318, 41.759447], [-86.524223, 41.759456], [-86.640044, 41.759671], [-86.641186, 41.759633], [-86.746521, 41.759982], [-86.748096, 41.759967], [-86.800611, 41.760251], [-86.800707, 41.76024], [-86.801578, 41.76024], [-86.804427, 41.76024], [-86.823628, 41.76024], [-86.824828, 41.76024], [-86.82355, 41.760898], [-86.802065, 41.771956], [-86.801772, 41.772107], [-86.794712, 41.77574], [-86.794632, 41.775782], [-86.79351, 41.776359], [-86.777943, 41.784371], [-86.777227, 41.78474], [-86.77608, 41.785399], [-86.774798, 41.786137], [-86.751292, 41.799652], [-86.735207, 41.808901], [-86.717037, 41.819349], [-86.715578, 41.820334], [-86.697541, 41.832513], [-86.679672, 41.844579], [-86.679355, 41.844793], [-86.648971, 41.869659], [-86.6476, 41.870782], [-86.645296, 41.872668], [-86.644048, 41.873689], [-86.643965, 41.873757], [-86.629867, 41.885295], [-86.629344, 41.885723], [-86.623837, 41.89023], [-86.623774, 41.890282], [-86.621259, 41.89234], [-86.619442, 41.893827], [-86.616978, 41.896625], [-86.616886, 41.89673], [-86.616029, 41.897703], [-86.612251, 41.901993], [-86.61208, 41.902188], [-86.611511, 41.902833], [-86.610896, 41.903532], [-86.600524, 41.91531], [-86.597899, 41.918291], [-86.596802, 41.919964], [-86.588662, 41.93238], [-86.587827, 41.933653], [-86.587763, 41.933752], [-86.586721, 41.935341], [-86.585696, 41.936904], [-86.585264, 41.937562], [-86.582894, 41.941179], [-86.582197, 41.942241], [-86.581518, 41.943765]]]}, "bbox": [-86.824828, 41.759447, -86.22294, 42.243379]}, {"id": "26025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.259847, 42.071851], [-85.293626, 42.071553], [-85.296996, 42.246071], [-85.29948, 42.416794], [-85.298879, 42.419849], [-85.071609, 42.421428], [-84.718493, 42.42152], [-84.709556, 42.070366], [-84.826491, 42.072468], [-85.259847, 42.071851]]]}, "bbox": [-85.29948, 42.070366, -84.709556, 42.42152]}, {"id": "26043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.828827, 45.72276], [-87.868111, 45.749477], [-87.991447, 45.795393], [-88.039729, 45.789626], [-88.050634, 45.780972], [-88.058256, 45.780719], [-88.072091, 45.780261], [-88.094047, 45.785658], [-88.130434, 45.81002], [-88.13611, 45.819029], [-88.13364, 45.823128], [-88.114267, 45.837891], [-88.106622, 45.841072], [-88.088825, 45.85586], [-88.073134, 45.871952], [-88.073944, 45.875593], [-88.102603, 45.909888], [-88.118516, 45.918562], [-88.116845, 45.921627], [-88.117407, 46.246618], [-87.615914, 46.246794], [-87.617039, 45.986006], [-87.617613, 45.898842], [-87.696946, 45.898842], [-87.697159, 45.722987], [-87.828827, 45.72276]]]}, "bbox": [-88.13611, 45.72276, -87.615914, 46.246794]}, {"id": "26047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.095985, 45.367001], [-85.073617, 45.36542], [-85.066969, 45.364951], [-85.06425, 45.364758], [-85.063459, 45.364703], [-85.060905, 45.364522], [-85.054805, 45.364091], [-85.046635, 45.362287], [-85.045526, 45.362041], [-85.043721, 45.361643], [-85.043446, 45.361582], [-85.043101, 45.361506], [-85.032813, 45.361251], [-85.022234, 45.366701], [-84.998603, 45.370173], [-84.975357, 45.373587], [-84.959119, 45.375973], [-84.91585, 45.393115], [-84.912537, 45.402828], [-84.912956, 45.409776], [-84.916165, 45.417639], [-84.922006, 45.421914], [-84.97637, 45.428801], [-84.976623, 45.428833], [-84.978969, 45.429131], [-84.980467, 45.42932], [-84.980953, 45.429382], [-84.981192, 45.429336], [-84.990041, 45.427618], [-84.990785, 45.425264], [-84.989224, 45.424253], [-84.987416, 45.423082], [-84.987143, 45.422906], [-84.984928, 45.421471], [-84.983836, 45.420764], [-84.978373, 45.420171], [-84.977116, 45.420035], [-84.978608, 45.418663], [-84.994191, 45.423173], [-85.034856, 45.434941], [-85.037741, 45.435776], [-85.040272, 45.436509], [-85.040936, 45.436701], [-85.046943, 45.441429], [-85.050234, 45.444019], [-85.050747, 45.444423], [-85.052994, 45.446191], [-85.069573, 45.459239], [-85.070485, 45.460096], [-85.087756, 45.476335], [-85.088386, 45.476928], [-85.097142, 45.495684], [-85.103943, 45.510252], [-85.109252, 45.521626], [-85.109353, 45.521915], [-85.110884, 45.526285], [-85.110955, 45.526488], [-85.115479, 45.539406], [-85.115785, 45.541533], [-85.11587, 45.542125], [-85.117406, 45.552811], [-85.117656, 45.55455], [-85.119494, 45.567338], [-85.119675, 45.568597], [-85.119721, 45.568915], [-85.119737, 45.569026], [-85.119026, 45.573002], [-85.118825, 45.574123], [-85.118637, 45.575175], [-85.118353, 45.575625], [-85.117812, 45.576482], [-85.11243, 45.585004], [-85.112406, 45.585042], [-85.111909, 45.585829], [-85.111737, 45.585962], [-85.107744, 45.589067], [-85.106909, 45.589716], [-85.106246, 45.590231], [-85.105458, 45.590844], [-85.103521, 45.59235], [-85.103077, 45.592695], [-85.102917, 45.59282], [-85.102221, 45.59336], [-85.101977, 45.59355], [-85.096798, 45.597576], [-85.095531, 45.598562], [-85.093525, 45.600121], [-85.079528, 45.617083], [-85.07937, 45.617355], [-85.076284, 45.62266], [-85.075686, 45.623688], [-85.075678, 45.623742], [-85.075461, 45.625295], [-85.07491, 45.629242], [-85.074243, 45.629752], [-85.071381, 45.63194], [-85.065716, 45.636272], [-85.063974, 45.637604], [-85.061488, 45.639505], [-85.061006, 45.639631], [-85.044872, 45.643847], [-85.041037, 45.644849], [-85.03559, 45.646273], [-85.020107, 45.650319], [-85.019374, 45.65051], [-85.015341, 45.651564], [-85.014352, 45.652134], [-85.013218, 45.652789], [-85.007026, 45.65636], [-85.005645, 45.657504], [-85.002344, 45.660239], [-85.001154, 45.661225], [-84.997431, 45.667762], [-84.996336, 45.669685], [-84.996067, 45.669861], [-84.974237, 45.684178], [-84.97095, 45.686334], [-84.970213, 45.686984], [-84.94565, 45.708621], [-84.943756, 45.71029], [-84.942636, 45.714292], [-84.941073, 45.719879], [-84.940526, 45.721832], [-84.942098, 45.728349], [-84.942125, 45.72846], [-84.942543, 45.728865], [-84.943982, 45.730257], [-84.945958, 45.732169], [-84.947266, 45.733435], [-84.950226, 45.736299], [-84.95084, 45.736893], [-84.951745, 45.737326], [-84.954275, 45.738537], [-84.955394, 45.739072], [-84.95813, 45.740381], [-84.968309, 45.745252], [-84.982328, 45.75196], [-84.982973, 45.752022], [-84.983316, 45.752055], [-84.983829, 45.752104], [-84.983933, 45.752114], [-84.984568, 45.752175], [-84.985318, 45.752247], [-84.996755, 45.753347], [-85.001656, 45.753819], [-85.002914, 45.75394], [-85.011433, 45.757962], [-85.014509, 45.760329], [-85.009173, 45.762463], [-85.00741, 45.763168], [-84.995105, 45.759855], [-84.938312, 45.759892], [-84.93779, 45.759777], [-84.931463, 45.758389], [-84.926802, 45.757366], [-84.92523, 45.757021], [-84.924664, 45.756897], [-84.922478, 45.755842], [-84.920691, 45.754979], [-84.919996, 45.754643], [-84.910398, 45.75001], [-84.866976, 45.752066], [-84.840981, 45.744751], [-84.810953, 45.745993], [-84.810411, 45.746015], [-84.808285, 45.746103], [-84.806642, 45.746171], [-84.805114, 45.746378], [-84.800664, 45.74698], [-84.799558, 45.74713], [-84.792474, 45.75053], [-84.78958, 45.751919], [-84.788893, 45.752248], [-84.788821, 45.752283], [-84.788808, 45.752298], [-84.781995, 45.760345], [-84.781373, 45.76108], [-84.7798, 45.76965], [-84.787228, 45.774892], [-84.79229, 45.778464], [-84.792337, 45.778497], [-84.793153, 45.780463], [-84.780313, 45.787224], [-84.774156, 45.788918], [-84.774014, 45.788957], [-84.772765, 45.789301], [-84.751571, 45.782733], [-84.742, 45.784134], [-84.734065, 45.788205], [-84.732388, 45.787928], [-84.732687, 45.289382], [-85.011769, 45.278711], [-85.095985, 45.367001]]]}, "bbox": [-85.119737, 45.278711, -84.732388, 45.789301]}, {"id": "26049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.927555, 42.88075], [-83.929079, 43.132782], [-83.932071, 43.220377], [-83.814494, 43.22121], [-83.696516, 43.221396], [-83.695621, 43.221422], [-83.460733, 43.223131], [-83.453364, 42.880432], [-83.689384, 42.871263], [-83.686493, 42.783263], [-83.922516, 42.780821], [-83.927555, 42.88075]]]}, "bbox": [-83.932071, 42.780821, -83.453364, 43.223131]}, {"id": "26055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.640216, 44.775051], [-85.636097, 44.771329], [-85.627982, 44.767508], [-85.624541, 44.767038], [-85.623607, 44.766911], [-85.620551, 44.766494], [-85.619648, 44.766371], [-85.610776, 44.76516], [-85.607701, 44.765363], [-85.605586, 44.765502], [-85.599874, 44.765878], [-85.599256, 44.765919], [-85.599103, 44.765996], [-85.593833, 44.768651], [-85.593571, 44.768783], [-85.593474, 44.769348], [-85.593449, 44.769499], [-85.591852, 44.778839], [-85.591145, 44.782981], [-85.591124, 44.7831], [-85.590985, 44.783914], [-85.581717, 44.807784], [-85.581392, 44.808294], [-85.545891, 44.864024], [-85.539042, 44.868868], [-85.532931, 44.87319], [-85.530729, 44.889182], [-85.530711, 44.889314], [-85.530649, 44.889763], [-85.553348, 44.890916], [-85.553509, 44.890924], [-85.559524, 44.888113], [-85.564509, 44.895246], [-85.562936, 44.896612], [-85.562503, 44.896987], [-85.557257, 44.901541], [-85.556647, 44.90207], [-85.556471, 44.902223], [-85.551567, 44.906481], [-85.539703, 44.916779], [-85.538945, 44.917885], [-85.538288, 44.918845], [-85.533553, 44.925762], [-85.530477, 44.933732], [-85.529233, 44.936955], [-85.520205, 44.960347], [-85.520443, 44.961149], [-85.520698, 44.962008], [-85.5221, 44.966727], [-85.521896, 44.967446], [-85.520789, 44.971338], [-85.520034, 44.973996], [-85.518875, 44.974665], [-85.4926, 44.989834], [-85.492386, 44.989849], [-85.475204, 44.991053], [-85.472676, 44.985558], [-85.471708, 44.983453], [-85.470462, 44.980745], [-85.470215, 44.979864], [-85.468293, 44.973008], [-85.46802, 44.972035], [-85.466848, 44.967853], [-85.464944, 44.961062], [-85.46665, 44.958844], [-85.470688, 44.959238], [-85.471261, 44.959294], [-85.471646, 44.959331], [-85.472258, 44.959391], [-85.474274, 44.958529], [-85.48574, 44.953626], [-85.489049, 44.938087], [-85.489895, 44.934118], [-85.490713, 44.930274], [-85.491215, 44.927918], [-85.491239, 44.927804], [-85.491286, 44.927585], [-85.491393, 44.925868], [-85.491403, 44.925695], [-85.491414, 44.925531], [-85.491471, 44.92461], [-85.491496, 44.924205], [-85.492397, 44.909719], [-85.49249, 44.90822], [-85.489477, 44.903145], [-85.488927, 44.902217], [-85.488624, 44.901707], [-85.489704, 44.897533], [-85.489921, 44.896694], [-85.498007, 44.865451], [-85.500872, 44.85883], [-85.502182, 44.855802], [-85.502386, 44.855551], [-85.508227, 44.848352], [-85.508617, 44.847872], [-85.511751, 44.847114], [-85.513575, 44.846674], [-85.516997, 44.845846], [-85.518845, 44.8454], [-85.519096, 44.845339], [-85.527181, 44.841002], [-85.533434, 44.837648], [-85.538522, 44.834918], [-85.539924, 44.834166], [-85.542706, 44.831395], [-85.546021, 44.828092], [-85.547119, 44.826998], [-85.551797, 44.822338], [-85.55285, 44.821288], [-85.553844, 44.820298], [-85.555894, 44.818256], [-85.557952, 44.814372], [-85.560231, 44.810072], [-85.560232, 44.809974], [-85.560253, 44.808359], [-85.560348, 44.800772], [-85.560352, 44.800454], [-85.5604, 44.796655], [-85.560409, 44.79595], [-85.560424, 44.794772], [-85.560488, 44.78969], [-85.560488, 44.789679], [-85.568781, 44.774477], [-85.571018, 44.770377], [-85.57517, 44.762766], [-85.576239, 44.760807], [-85.576566, 44.760208], [-85.575916, 44.759602], [-85.571301, 44.755293], [-85.554774, 44.748917], [-85.554326, 44.748744], [-85.554083, 44.748715], [-85.538285, 44.746821], [-85.527216, 44.748235], [-85.523296, 44.751702], [-85.509432, 44.763964], [-85.504775, 44.768082], [-85.504772, 44.768102], [-85.5047, 44.768518], [-85.503935, 44.772951], [-85.504079, 44.773901], [-85.504787, 44.778577], [-85.505244, 44.781594], [-85.507113, 44.784271], [-85.509251, 44.787334], [-85.508462, 44.788682], [-85.507473, 44.790372], [-85.499591, 44.803838], [-85.496314, 44.805308], [-85.484668, 44.810531], [-85.481972, 44.81174], [-85.477423, 44.813781], [-85.475748, 44.814532], [-85.475114, 44.814816], [-85.474796, 44.814959], [-85.474622, 44.815107], [-85.462943, 44.825044], [-85.462916, 44.825067], [-85.462906, 44.82511], [-85.462622, 44.826327], [-85.460445, 44.835667], [-85.457475, 44.839609], [-85.457472, 44.839613], [-85.457328, 44.839804], [-85.456007, 44.841558], [-85.455336, 44.842448], [-85.452683, 44.845969], [-85.44225, 44.859817], [-85.332836, 44.812372], [-85.334, 44.512303], [-85.817802, 44.512969], [-85.81512, 44.774525], [-85.640216, 44.775051]]]}, "bbox": [-85.817802, 44.512303, -85.332836, 44.991053]}, {"id": "26065", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.158189, 42.776639], [-84.151966, 42.710731], [-84.140713, 42.424611], [-84.600403, 42.421984], [-84.602761, 42.76988], [-84.36366, 42.769971], [-84.363659, 42.775778], [-84.158189, 42.776639]]]}, "bbox": [-84.602761, 42.421984, -84.140713, 42.776639]}, {"id": "26073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.084996, 43.46619], [-85.088811, 43.813676], [-84.606035, 43.815218], [-84.60754, 43.466006], [-84.845962, 43.466158], [-85.084996, 43.46619]]]}, "bbox": [-85.088811, 43.466006, -84.606035, 43.815218]}, {"id": "26075", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.131963, 42.071577], [-84.363297, 42.073456], [-84.709556, 42.070366], [-84.718493, 42.42152], [-84.600403, 42.421984], [-84.140713, 42.424611], [-84.131136, 42.424567], [-84.131963, 42.071577]]]}, "bbox": [-84.718493, 42.070366, -84.131136, 42.424611]}, {"id": "26077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.298879, 42.419849], [-85.29948, 42.416794], [-85.296996, 42.246071], [-85.293626, 42.071553], [-85.762943, 42.069327], [-85.764352, 42.420669], [-85.543191, 42.421433], [-85.298879, 42.419849]]]}, "bbox": [-85.764352, 42.069327, -85.293626, 42.421433]}, {"id": "26081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.790448, 43.293003], [-85.571636, 43.294252], [-85.562538, 43.294271], [-85.312376, 43.294205], [-85.312513, 43.118793], [-85.309626, 42.769878], [-85.545564, 42.768139], [-85.712659, 42.768237], [-85.782498, 42.7682], [-85.785276, 42.986911], [-85.788503, 43.030877], [-85.790662, 43.205167], [-85.790448, 43.293003]]]}, "bbox": [-85.790662, 42.768139, -85.309626, 43.294271]}, {"id": "26087", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.460733, 43.223131], [-83.351709, 43.235193], [-83.354418, 43.322257], [-83.120396, 43.327049], [-83.119027, 43.28368], [-83.00043, 43.284913], [-82.996257, 43.154099], [-82.983647, 42.893741], [-83.003, 42.893181], [-83.023573, 42.890543], [-83.102891, 42.888647], [-83.453364, 42.880432], [-83.460733, 43.223131]]]}, "bbox": [-83.460733, 42.880432, -82.983647, 43.327049]}, {"id": "26093", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.686493, 42.783263], [-83.682727, 42.695582], [-83.664808, 42.431179], [-83.94465, 42.424149], [-84.131136, 42.424567], [-84.140713, 42.424611], [-84.151966, 42.710731], [-84.158189, 42.776639], [-83.922516, 42.780821], [-83.686493, 42.783263]]]}, "bbox": [-84.158189, 42.424149, -83.664808, 42.783263]}, {"id": "26099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.083393, 42.447153], [-83.086882, 42.534792], [-83.088157, 42.549379], [-83.088776, 42.563843], [-83.099432, 42.80055], [-83.102891, 42.888647], [-83.023573, 42.890543], [-83.003, 42.893181], [-82.983647, 42.893741], [-82.73901, 42.897541], [-82.707841, 42.68351], [-82.726366, 42.682768], [-82.753317, 42.669732], [-82.765583, 42.655725], [-82.780817, 42.652232], [-82.792418, 42.655132], [-82.797318, 42.654032], [-82.813518, 42.640833], [-82.820118, 42.626333], [-82.819017, 42.616333], [-82.811017, 42.610933], [-82.789017, 42.603434], [-82.787573, 42.5983], [-82.788977, 42.592661], [-82.788116, 42.582835], [-82.781514, 42.571634], [-82.782414, 42.564834], [-82.784514, 42.563634], [-82.789114, 42.568434], [-82.796715, 42.571034], [-82.821016, 42.570734], [-82.834216, 42.567849], [-82.845916, 42.560634], [-82.849316, 42.555734], [-82.851016, 42.548935], [-82.859316, 42.541935], [-82.860213, 42.540842], [-82.874416, 42.523535], [-82.882316, 42.501035], [-82.883915, 42.471836], [-82.870572, 42.451235], [-83.083393, 42.447153]]]}, "bbox": [-83.102891, 42.447153, -82.707841, 42.897541]}, {"id": "26101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.386867, 44.178685], [-86.380188, 44.189272], [-86.380062, 44.189472], [-86.362847, 44.208113], [-86.354592, 44.223811], [-86.354313, 44.224342], [-86.351638, 44.229429], [-86.349294, 44.235459], [-86.343793, 44.249608], [-86.327287, 44.263057], [-86.326902, 44.263781], [-86.319063, 44.278503], [-86.318328, 44.279884], [-86.316651, 44.283034], [-86.316513, 44.283293], [-86.316025, 44.28421], [-86.313612, 44.287882], [-86.312774, 44.289158], [-86.311943, 44.290422], [-86.304691, 44.301459], [-86.304433, 44.301852], [-86.300264, 44.308197], [-86.26871, 44.345324], [-86.251926, 44.400984], [-86.248083, 44.420946], [-86.24832, 44.434758], [-86.251843, 44.451632], [-86.251605, 44.465443], [-86.248914, 44.483004], [-86.248897, 44.483024], [-86.248816, 44.483116], [-86.243745, 44.488929], [-86.238743, 44.501682], [-86.233503, 44.518278], [-85.817802, 44.512969], [-85.821186, 44.164197], [-86.041988, 44.167091], [-86.386867, 44.178685]]]}, "bbox": [-86.386867, 44.164197, -85.817802, 44.518278]}, {"id": "26103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.044551, 46.912473], [-88.032911, 46.909038], [-88.032408, 46.90889], [-88.030053, 46.90873], [-88.029373, 46.908684], [-88.004298, 46.906982], [-88.003693, 46.906948], [-87.98629, 46.905967], [-87.986113, 46.905957], [-87.98334, 46.906242], [-87.982258, 46.906353], [-87.97549, 46.907048], [-87.958255, 46.908819], [-87.957115, 46.908936], [-87.956, 46.909051], [-87.955745, 46.909054], [-87.954687, 46.909066], [-87.915943, 46.909508], [-87.914489, 46.909525], [-87.911474, 46.909559], [-87.910624, 46.909569], [-87.908791, 46.90959], [-87.900695, 46.909682], [-87.900339, 46.909686], [-87.90007, 46.909508], [-87.88792, 46.901451], [-87.875051, 46.892918], [-87.874538, 46.892578], [-87.873893, 46.892381], [-87.847037, 46.884163], [-87.846195, 46.883905], [-87.844637, 46.884049], [-87.841228, 46.884363], [-87.838889, 46.885252], [-87.830204, 46.888556], [-87.827162, 46.889713], [-87.816794, 46.891154], [-87.81412, 46.888808], [-87.813228, 46.888025], [-87.813226, 46.888023], [-87.793194, 46.880822], [-87.788186, 46.880373], [-87.783216, 46.879927], [-87.782461, 46.879859], [-87.781969, 46.87958], [-87.777749, 46.87719], [-87.777527, 46.877064], [-87.777156, 46.876854], [-87.77693, 46.876726], [-87.776672, 46.874999], [-87.776567, 46.874293], [-87.776313, 46.872591], [-87.776346, 46.872562], [-87.778289, 46.870834], [-87.778752, 46.870422], [-87.776804, 46.866823], [-87.766243, 46.861446], [-87.765989, 46.861316], [-87.765835, 46.861303], [-87.755937, 46.860459], [-87.755868, 46.860453], [-87.755748, 46.860518], [-87.754448, 46.861219], [-87.748498, 46.864428], [-87.746646, 46.865427], [-87.745665, 46.865396], [-87.744893, 46.865371], [-87.744403, 46.865355], [-87.741857, 46.865274], [-87.741014, 46.865247], [-87.740917, 46.865007], [-87.740846, 46.864834], [-87.73487, 46.85012], [-87.735039, 46.849856], [-87.735106, 46.849751], [-87.736732, 46.847216], [-87.736539, 46.846393], [-87.736469, 46.846096], [-87.734325, 46.836955], [-87.731522, 46.831196], [-87.727358, 46.827656], [-87.72588, 46.827426], [-87.725649, 46.82739], [-87.713737, 46.825534], [-87.69459, 46.827182], [-87.685787, 46.832477], [-87.685698, 46.83253], [-87.685735, 46.832639], [-87.68793, 46.839159], [-87.687875, 46.839343], [-87.68728, 46.841351], [-87.687164, 46.841742], [-87.68672, 46.841794], [-87.681561, 46.842392], [-87.680668, 46.842496], [-87.679573, 46.841507], [-87.675046, 46.83742], [-87.674541, 46.836964], [-87.673469, 46.829598], [-87.673433, 46.82935], [-87.673177, 46.827593], [-87.673274, 46.8273], [-87.673973, 46.825179], [-87.674345, 46.82405], [-87.672015, 46.820415], [-87.662261, 46.815157], [-87.65151, 46.812411], [-87.646539, 46.813094], [-87.642789, 46.813609], [-87.641887, 46.813733], [-87.640839, 46.813534], [-87.6333, 46.812107], [-87.628786, 46.806096], [-87.628284, 46.805428], [-87.628081, 46.805157], [-87.627356, 46.804553], [-87.627124, 46.80436], [-87.619747, 46.79821], [-87.617852, 46.796631], [-87.6168, 46.795753], [-87.613654, 46.793131], [-87.613586, 46.793074], [-87.610582, 46.790571], [-87.609008, 46.789258], [-87.607988, 46.788408], [-87.595307, 46.78295], [-87.595276, 46.782745], [-87.594384, 46.776863], [-87.593148, 46.768713], [-87.592227, 46.762635], [-87.59222, 46.762594], [-87.591973, 46.760965], [-87.591907, 46.760525], [-87.591455, 46.757544], [-87.591362, 46.756932], [-87.591082, 46.755087], [-87.590865, 46.753653], [-87.590767, 46.753009], [-87.590502, 46.752267], [-87.589671, 46.749937], [-87.587755, 46.744568], [-87.587626, 46.744206], [-87.584568, 46.735637], [-87.58357, 46.732839], [-87.582745, 46.730527], [-87.581674, 46.729399], [-87.573203, 46.720471], [-87.567343, 46.716714], [-87.557436, 46.710364], [-87.553048, 46.707551], [-87.551989, 46.706872], [-87.549097, 46.705019], [-87.54392, 46.7017], [-87.534504, 46.695664], [-87.533529, 46.69504], [-87.532638, 46.694469], [-87.523308, 46.688488], [-87.523361, 46.687977], [-87.523744, 46.6843], [-87.524419, 46.67783], [-87.524444, 46.677586], [-87.519176, 46.670186], [-87.506657, 46.652599], [-87.503238, 46.647796], [-87.503025, 46.647497], [-87.501511, 46.646762], [-87.493405, 46.642826], [-87.49286, 46.642561], [-87.492409, 46.642435], [-87.469023, 46.635918], [-87.467965, 46.635623], [-87.466537, 46.631555], [-87.467563, 46.626228], [-87.464108, 46.614811], [-87.451368, 46.605923], [-87.442612, 46.602776], [-87.411167, 46.601669], [-87.403275, 46.595215], [-87.383961, 46.59307], [-87.381649, 46.580059], [-87.392974, 46.572523], [-87.392828, 46.570852], [-87.382206, 46.553681], [-87.375613, 46.54714], [-87.3903, 46.542577], [-87.393985, 46.533183], [-87.38929, 46.524472], [-87.381349, 46.517292], [-87.366767, 46.507303], [-87.352448, 46.501324], [-87.351071, 46.500749], [-87.312109, 46.49231], [-87.310755, 46.492017], [-87.309402, 46.491919], [-87.259116, 46.488283], [-87.258732, 46.488255], [-87.258145, 46.488282], [-87.205147, 46.490702], [-87.202404, 46.490827], [-87.200147, 46.491382], [-87.175105, 46.497538], [-87.175065, 46.497548], [-87.145946, 46.495387], [-87.12744, 46.494014], [-87.116618, 46.495163], [-87.11608, 46.158945], [-87.241555, 46.158901], [-87.242885, 45.985087], [-87.367843, 45.985313], [-87.617039, 45.986006], [-87.615914, 46.246794], [-88.117407, 46.246618], [-88.116571, 46.419951], [-88.115843, 46.678381], [-87.991546, 46.679113], [-88.044709, 46.765353], [-88.044551, 46.912473]]]}, "bbox": [-88.117407, 45.985087, -87.11608, 46.912473]}, {"id": "26111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.369876, 43.466044], [-84.60754, 43.466006], [-84.606035, 43.815218], [-84.167318, 43.825902], [-84.168127, 43.568899], [-84.170576, 43.481969], [-84.369876, 43.466044]]]}, "bbox": [-84.60754, 43.466006, -84.167318, 43.825902]}, {"id": "26115", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.372198, 41.874122], [-83.372445, 41.874477], [-83.379705, 41.871729], [-83.381955, 41.870877], [-83.389289, 41.861668], [-83.393822, 41.855976], [-83.39622, 41.852965], [-83.40822, 41.832654], [-83.409596, 41.830325], [-83.422316, 41.822278], [-83.422391, 41.822255], [-83.425393, 41.821316], [-83.426321, 41.821026], [-83.431183, 41.819506], [-83.434204, 41.818562], [-83.435946, 41.816823], [-83.436298, 41.816471], [-83.439612, 41.813162], [-83.441668, 41.808646], [-83.442316, 41.80119], [-83.442521, 41.79883], [-83.442843, 41.795121], [-83.443364, 41.789118], [-83.437935, 41.771086], [-83.437516, 41.769694], [-83.437231, 41.76915], [-83.437197, 41.769085], [-83.435571, 41.765983], [-83.434238, 41.763439], [-83.432973, 41.761025], [-83.432832, 41.760756], [-83.432078, 41.759316], [-83.431951, 41.759074], [-83.431103, 41.757457], [-83.427377, 41.750346], [-83.427336, 41.750267], [-83.427308, 41.750214], [-83.42643, 41.747639], [-83.42418, 41.741042], [-83.424076, 41.740738], [-83.424155, 41.74071], [-83.43436, 41.737058], [-83.451897, 41.734486], [-83.453832, 41.732647], [-83.497733, 41.731847], [-83.499733, 41.731647], [-83.503433, 41.731547], [-83.504334, 41.731547], [-83.585235, 41.729348], [-83.593835, 41.729148], [-83.595235, 41.729148], [-83.636636, 41.727849], [-83.639636, 41.727749], [-83.665937, 41.726949], [-83.685337, 41.726449], [-83.763155, 41.72391], [-83.773922, 42.08243], [-83.539396, 42.085598], [-83.295275, 42.094234], [-83.185822, 42.029367], [-83.181475, 42.019301], [-83.187246, 42.007573], [-83.190535, 42.006172], [-83.208647, 42.00504], [-83.209379, 41.995736], [-83.216835, 41.98862], [-83.216897, 41.988561], [-83.223354, 41.989191], [-83.223369, 41.989185], [-83.224947, 41.988603], [-83.227744, 41.987571], [-83.22841, 41.987325], [-83.228502, 41.987291], [-83.228607, 41.987216], [-83.22929, 41.986725], [-83.248741, 41.972735], [-83.249204, 41.972402], [-83.249828, 41.971386], [-83.255123, 41.962759], [-83.256803, 41.960021], [-83.257009, 41.959686], [-83.257043, 41.958615], [-83.257143, 41.955438], [-83.257199, 41.95367], [-83.257292, 41.950745], [-83.269521, 41.939042], [-83.270491, 41.939337], [-83.28713, 41.944397], [-83.292761, 41.944616], [-83.293015, 41.944626], [-83.295982, 41.944742], [-83.29823, 41.9442], [-83.299467, 41.943902], [-83.302904, 41.943073], [-83.303465, 41.942762], [-83.305639, 41.941557], [-83.315859, 41.935893], [-83.326007, 41.924979], [-83.326024, 41.924961], [-83.326029, 41.924948], [-83.32706, 41.922554], [-83.330498, 41.914565], [-83.332998, 41.908757], [-83.333642, 41.907261], [-83.334173, 41.903247], [-83.334346, 41.901939], [-83.335103, 41.896209], [-83.335132, 41.895992], [-83.335658, 41.892009], [-83.335961, 41.889721], [-83.341557, 41.879956], [-83.359467, 41.867849], [-83.366187, 41.865505], [-83.372198, 41.874122]]]}, "bbox": [-83.773922, 41.72391, -83.181475, 42.094234]}, {"id": "26121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.462195, 43.472328], [-86.461278, 43.472326], [-86.039491, 43.467447], [-86.038953, 43.293519], [-85.790448, 43.293003], [-85.790662, 43.205167], [-85.908388, 43.20592], [-85.907435, 43.118911], [-86.271996, 43.118365], [-86.280756, 43.136015], [-86.299048, 43.166465], [-86.311336, 43.18692], [-86.311887, 43.187837], [-86.316259, 43.195114], [-86.329836, 43.2158], [-86.344643, 43.23836], [-86.348647, 43.244459], [-86.34891, 43.24486], [-86.349801, 43.246217], [-86.350027, 43.246562], [-86.352192, 43.24986], [-86.352314, 43.250047], [-86.354505, 43.253385], [-86.357996, 43.258703], [-86.382882, 43.29662], [-86.383821, 43.298051], [-86.386096, 43.301516], [-86.386374, 43.301941], [-86.388493, 43.305168], [-86.38941, 43.306565], [-86.392124, 43.310701], [-86.393385, 43.312622], [-86.39575, 43.316225], [-86.401684, 43.327135], [-86.40301, 43.329572], [-86.403541, 43.330548], [-86.404831, 43.33292], [-86.407832, 43.338436], [-86.411941, 43.347209], [-86.427585, 43.380607], [-86.434757, 43.395919], [-86.434842, 43.3961], [-86.435124, 43.396702], [-86.435271, 43.397083], [-86.437896, 43.40389], [-86.438028, 43.404231], [-86.438267, 43.404851], [-86.438875, 43.406427], [-86.448479, 43.431329], [-86.448743, 43.432013], [-86.45457, 43.449475], [-86.456083, 43.45401], [-86.456845, 43.456294], [-86.457561, 43.458441], [-86.462195, 43.472328]]]}, "bbox": [-86.462195, 43.118365, -85.790448, 43.472328]}, {"id": "26125", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.316825, 42.442033], [-83.433672, 42.438942], [-83.551907, 42.435166], [-83.664808, 42.431179], [-83.682727, 42.695582], [-83.686493, 42.783263], [-83.689384, 42.871263], [-83.453364, 42.880432], [-83.102891, 42.888647], [-83.099432, 42.80055], [-83.088776, 42.563843], [-83.088157, 42.549379], [-83.086882, 42.534792], [-83.083393, 42.447153], [-83.287959, 42.44268], [-83.316825, 42.442033]]]}, "bbox": [-83.689384, 42.431179, -83.083393, 42.888647]}, {"id": "26139", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.790662, 43.205167], [-85.788503, 43.030877], [-85.785276, 42.986911], [-85.782498, 42.7682], [-86.208886, 42.76754], [-86.210863, 42.783832], [-86.211815, 42.833236], [-86.210737, 42.859128], [-86.214138, 42.883555], [-86.216209, 42.919007], [-86.226305, 42.988284], [-86.232707, 43.015762], [-86.244277, 43.049681], [-86.250069, 43.057489], [-86.250517, 43.066993], [-86.254646, 43.083409], [-86.271996, 43.118365], [-85.907435, 43.118911], [-85.908388, 43.20592], [-85.790662, 43.205167]]]}, "bbox": [-86.271996, 42.76754, -85.782498, 43.20592]}, {"id": "26145", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.05, 43.567324], [-84.050987, 43.524064], [-83.916091, 43.522629], [-83.817678, 43.479052], [-83.698816, 43.478957], [-83.695621, 43.221422], [-83.696516, 43.221396], [-83.814494, 43.22121], [-83.932071, 43.220377], [-83.929079, 43.132782], [-84.367891, 43.128452], [-84.369876, 43.466044], [-84.170576, 43.481969], [-84.168127, 43.568899], [-84.05, 43.567324]]]}, "bbox": [-84.369876, 43.128452, -83.695621, 43.568899]}, {"id": "26147", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.503157, 43.168946], [-82.50299, 43.168137], [-82.501656, 43.161656], [-82.501529, 43.161351], [-82.500061, 43.157827], [-82.495685, 43.147316], [-82.494194, 43.143736], [-82.494072, 43.142864], [-82.494052, 43.142722], [-82.494014, 43.142453], [-82.493977, 43.142186], [-82.493347, 43.137685], [-82.493021, 43.135363], [-82.490979, 43.120782], [-82.490634, 43.118314], [-82.490614, 43.118172], [-82.490494, 43.117759], [-82.486684, 43.104688], [-82.486042, 43.102486], [-82.471053, 43.087581], [-82.457319, 43.06147], [-82.457221, 43.061285], [-82.450724, 43.051229], [-82.443433, 43.039942], [-82.422768, 43.007956], [-82.415937, 43.005555], [-82.447778, 42.937066], [-82.455027, 42.926866], [-82.469912, 42.887459], [-82.483697, 42.733212], [-82.509935, 42.637294], [-82.518782, 42.613888], [-82.523337, 42.607486], [-82.583996, 42.554041], [-82.589779, 42.550678], [-82.607068, 42.548843], [-82.624907, 42.557229], [-82.679059, 42.52221], [-82.686417, 42.518597], [-82.685397, 42.528659], [-82.679522, 42.53552], [-82.670956, 42.537989], [-82.664335, 42.546244], [-82.680758, 42.557909], [-82.681036, 42.574695], [-82.688061, 42.588417], [-82.701152, 42.585991], [-82.711151, 42.590884], [-82.713042, 42.597904], [-82.700818, 42.606687], [-82.683482, 42.609433], [-82.681593, 42.618672], [-82.690124, 42.625033], [-82.689836, 42.627148], [-82.669103, 42.637225], [-82.645715, 42.631145], [-82.630922, 42.64211], [-82.626396, 42.647385], [-82.623043, 42.655951], [-82.623797, 42.665395], [-82.630851, 42.673341], [-82.635262, 42.675552], [-82.659781, 42.678618], [-82.674287, 42.687049], [-82.6855, 42.690036], [-82.700964, 42.689548], [-82.706135, 42.683578], [-82.707841, 42.68351], [-82.73901, 42.897541], [-82.983647, 42.893741], [-82.996257, 43.154099], [-82.503157, 43.168946]]]}, "bbox": [-82.996257, 42.518597, -82.415937, 43.168946]}, {"id": "26155", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.365712, 42.95512], [-84.367795, 43.117938], [-84.367863, 43.124456], [-84.367893, 43.124671], [-84.367891, 43.128452], [-83.929079, 43.132782], [-83.927555, 42.88075], [-83.922516, 42.780821], [-84.158189, 42.776639], [-84.363659, 42.775778], [-84.365712, 42.95512]]]}, "bbox": [-84.367893, 42.775778, -83.922516, 43.132782]}, {"id": "26161", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.542102, 42.174344], [-83.539396, 42.085598], [-83.773922, 42.08243], [-84.131963, 42.071577], [-84.131136, 42.424567], [-83.94465, 42.424149], [-83.664808, 42.431179], [-83.551907, 42.435166], [-83.547548, 42.349217], [-83.542102, 42.174344]]]}, "bbox": [-84.131963, 42.071577, -83.539396, 42.435166]}, {"id": "26163", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.551907, 42.435166], [-83.433672, 42.438942], [-83.316825, 42.442033], [-83.287959, 42.44268], [-83.083393, 42.447153], [-82.870572, 42.451235], [-82.870347, 42.450888], [-82.886113, 42.408137], [-82.888413, 42.398237], [-82.894013, 42.389437], [-82.898413, 42.385437], [-82.915114, 42.378137], [-82.919114, 42.374437], [-82.928815, 42.359437], [-82.92397, 42.352068], [-82.959416, 42.339638], [-82.988619, 42.332439], [-83.01832, 42.329739], [-83.064121, 42.317738], [-83.079721, 42.308638], [-83.096521, 42.290138], [-83.128022, 42.238839], [-83.131343, 42.20276], [-83.133923, 42.17474], [-83.124522, 42.137641], [-83.133511, 42.088143], [-83.157624, 42.085542], [-83.168759, 42.073601], [-83.170589, 42.07294], [-83.188598, 42.066431], [-83.189115, 42.061853], [-83.186877, 42.061206], [-83.185526, 42.052243], [-83.18824, 42.031329], [-83.185858, 42.029451], [-83.185822, 42.029367], [-83.295275, 42.094234], [-83.539396, 42.085598], [-83.542102, 42.174344], [-83.547548, 42.349217], [-83.551907, 42.435166]]]}, "bbox": [-83.551907, 42.029367, -82.870347, 42.451235]}, {"id": "27007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.41904, 47.758929], [-94.416279, 47.444828], [-94.416387, 47.41183], [-94.670214, 47.410151], [-94.718396, 47.409542], [-94.760529, 47.410452], [-94.78893, 47.40979], [-94.799934, 47.409848], [-95.183216, 47.412773], [-95.193705, 47.872544], [-95.277834, 47.925346], [-95.229133, 48.019958], [-95.582887, 48.020557], [-95.592487, 48.020558], [-95.593788, 48.172916], [-95.602315, 48.538887], [-95.586733, 48.538533], [-95.34254, 48.540211], [-95.211966, 48.539961], [-95.210953, 48.365971], [-94.428702, 48.367333], [-94.425771, 48.367339], [-94.418543, 47.845816], [-94.41904, 47.758929]]]}, "bbox": [-95.602315, 47.409542, -94.416279, 48.540211]}, {"id": "27013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.767761, 43.847956], [-94.247123, 43.847946], [-94.368974, 43.848047], [-94.36885, 44.108698], [-94.371731, 44.264448], [-94.055349, 44.154018], [-94.011834, 44.239192], [-93.768031, 44.239384], [-93.767971, 44.195836], [-93.767761, 43.847956]]]}, "bbox": [-94.371731, 43.847946, -93.767761, 44.264448]}, {"id": "27019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.767367, 44.977964], [-93.767041, 44.890862], [-93.520706, 44.891502], [-93.520632, 44.864108], [-93.520725, 44.861999], [-93.520632, 44.858473], [-93.520431, 44.804263], [-93.621967, 44.760281], [-93.618141, 44.707096], [-93.768039, 44.640303], [-93.888636, 44.717044], [-94.010494, 44.717464], [-94.012236, 44.978712], [-93.767367, 44.977964]]]}, "bbox": [-94.012236, 44.640303, -93.520431, 44.978712]}, {"id": "27035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.810362, 46.156585], [-94.374592, 46.157093], [-94.341679, 46.277705], [-94.339351, 46.284649], [-94.332523, 46.279566], [-94.342895, 46.80553], [-93.776024, 46.802891], [-93.777905, 46.589671], [-93.811464, 46.584238], [-93.796281, 46.243199], [-93.810912, 46.243128], [-93.810362, 46.156585]]]}, "bbox": [-94.374592, 46.156585, -93.776024, 46.80553]}, {"id": "27041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.758508, 45.759932], [-95.76975, 46.10745], [-95.14588, 46.106761], [-95.139731, 45.773416], [-95.13967, 45.758891], [-95.758508, 45.759932]]]}, "bbox": [-95.76975, 45.758891, -95.13967, 46.10745]}, {"id": "27049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.316425, 44.540792], [-92.314071, 44.538014], [-92.303046, 44.518646], [-92.302215, 44.500298], [-92.291005, 44.485464], [-92.276784, 44.473649], [-92.24201, 44.454254], [-92.430271, 44.455157], [-92.430629, 44.368291], [-92.550733, 44.368521], [-92.550871, 44.194916], [-92.678717, 44.195516], [-93.041159, 44.196726], [-93.039485, 44.471871], [-93.039344, 44.51535], [-92.7926, 44.542971], [-92.792584, 44.629722], [-92.732043, 44.629484], [-92.732042, 44.713775], [-92.632105, 44.649027], [-92.621733, 44.638983], [-92.619774, 44.629214], [-92.549685, 44.576], [-92.534186, 44.570375], [-92.491773, 44.566003], [-92.357313, 44.55848], [-92.340058, 44.555273], [-92.329013, 44.550895], [-92.319938, 44.54494], [-92.316425, 44.540792]]]}, "bbox": [-93.041159, 44.194916, -92.24201, 44.713775]}, {"id": "27053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.208092, 45.035744], [-93.178539, 44.888338], [-93.183148, 44.886739], [-93.182381, 44.884728], [-93.179613, 44.882748], [-93.178618, 44.880337], [-93.181772, 44.877829], [-93.186212, 44.876364], [-93.188627, 44.874096], [-93.189886, 44.871537], [-93.200744, 44.864884], [-93.197918, 44.861977], [-93.329615, 44.791086], [-93.520431, 44.804263], [-93.520632, 44.858473], [-93.520725, 44.861999], [-93.520632, 44.864108], [-93.520706, 44.891502], [-93.767041, 44.890862], [-93.767367, 44.977964], [-93.761874, 45.081244], [-93.675914, 45.151134], [-93.667203, 45.154443], [-93.661545, 45.153274], [-93.647747, 45.158609], [-93.645168, 45.161561], [-93.638622, 45.16562], [-93.638745, 45.174363], [-93.521653, 45.246618], [-93.515342, 45.24632], [-93.51219, 45.245683], [-93.373136, 45.178133], [-93.311544, 45.143778], [-93.296095, 45.121897], [-93.278327, 45.103365], [-93.282226, 45.051165], [-93.283426, 45.035365], [-93.226929, 45.035671], [-93.208092, 45.035744]]]}, "bbox": [-93.767367, 44.791086, -93.178539, 45.246618]}, {"id": "27109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.448965, 43.834105], [-92.689391, 43.84857], [-92.678412, 43.848487], [-92.678717, 44.195516], [-92.550871, 44.194916], [-92.318986, 44.194057], [-92.318971, 44.107734], [-92.079491, 44.106988], [-92.079292, 43.84708], [-92.44883, 43.848274], [-92.448965, 43.834105]]]}, "bbox": [-92.689391, 43.834105, -92.079292, 44.195516]}, {"id": "27111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.15557, 46.36888], [-95.14588, 46.106761], [-95.76975, 46.10745], [-96.265366, 46.10861], [-96.28, 46.28222], [-96.280977, 46.630765], [-96.17227, 46.630709], [-96.174587, 46.717854], [-95.247999, 46.716255], [-95.16371, 46.71764], [-95.15557, 46.36888]]]}, "bbox": [-96.280977, 46.106761, -95.14588, 46.717854]}, {"id": "27113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.500843, 48.174108], [-95.593788, 48.172916], [-95.592487, 48.020558], [-95.582887, 48.020557], [-95.582155, 47.933966], [-95.709619, 47.935805], [-95.70984, 47.96433], [-96.48255, 47.963595], [-96.500843, 48.174108]]]}, "bbox": [-96.500843, 47.933966, -95.582155, 48.174108]}, {"id": "27123", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.227696, 45.124533], [-93.198985, 45.124394], [-93.188706, 45.124374], [-93.020518, 45.123866], [-92.984621, 45.123757], [-92.984712, 45.075372], [-92.98464, 44.948522], [-92.984602, 44.947636], [-92.98462, 44.946114], [-92.984522, 44.945685], [-92.984584, 44.945077], [-92.98441, 44.920646], [-92.984463, 44.919869], [-92.984396, 44.909644], [-92.984458, 44.909393], [-92.984207, 44.893998], [-92.984192, 44.890814], [-93.020044, 44.89075], [-93.128629, 44.919648], [-93.178539, 44.888338], [-93.208092, 45.035744], [-93.226929, 45.035671], [-93.227059, 45.049937], [-93.227696, 45.124533]]]}, "bbox": [-93.227696, 44.888338, -92.984192, 45.124533]}, {"id": "27137", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.191501, 46.672586], [-92.197145, 46.663408], [-92.202292, 46.655041], [-92.207092, 46.651941], [-92.212392, 46.649941], [-92.221731, 46.649724], [-92.222338, 46.64971], [-92.228155, 46.649574], [-92.231944, 46.649486], [-92.232647, 46.64947], [-92.234815, 46.64942], [-92.242493, 46.649241], [-92.250861, 46.650061], [-92.254379, 46.650405], [-92.256654, 46.650628], [-92.262503, 46.651201], [-92.264462, 46.651393], [-92.269948, 46.65193], [-92.274465, 46.654227], [-92.276373, 46.655198], [-92.277155, 46.655596], [-92.292192, 46.663242], [-92.301676, 46.764134], [-93.061529, 46.76655], [-93.055943, 47.026415], [-93.0695, 47.393915], [-93.061253, 47.720187], [-93.081158, 47.89187], [-93.096488, 48.067826], [-93.088438, 48.627597], [-92.980484, 48.624915], [-92.728046, 48.53929], [-92.657881, 48.546263], [-92.634931, 48.542873], [-92.625739, 48.518189], [-92.625151, 48.513048], [-92.625374, 48.512916], [-92.631117, 48.508252], [-92.631137, 48.508077], [-92.627237, 48.503383], [-92.636696, 48.499428], [-92.661418, 48.496557], [-92.684866, 48.497611], [-92.698824, 48.494892], [-92.712562, 48.463013], [-92.687998, 48.443889], [-92.656027, 48.436709], [-92.575636, 48.440827], [-92.537202, 48.447703], [-92.507285, 48.447875], [-92.456325, 48.414204], [-92.415121, 48.293841], [-92.384387, 48.242914], [-92.325304, 48.23703], [-92.295053, 48.276587], [-92.295668, 48.278118], [-92.301451, 48.288608], [-92.306309, 48.316442], [-92.304561, 48.322977], [-92.288994, 48.342991], [-92.26228, 48.354933], [-92.055228, 48.359213], [-92.030872, 48.325824], [-91.989545, 48.260214], [-91.977555, 48.24714], [-91.977486, 48.24634], [-91.954432, 48.251678], [-91.954397, 48.251199], [-91.907597, 48.238183], [-91.906967, 48.23777], [-91.867641, 48.218341], [-91.798268, 48.200086], [-91.799114, 47.732178], [-91.787928, 47.546817], [-91.794039, 46.939676], [-91.806851, 46.933727], [-91.826068, 46.927199], [-91.834852, 46.927135], [-91.841349, 46.925215], [-91.871286, 46.908352], [-91.883238, 46.905728], [-91.906483, 46.891236], [-91.914984, 46.883836], [-91.952985, 46.867037], [-91.985086, 46.849637], [-91.997987, 46.838737], [-92.013405, 46.833727], [-92.058888, 46.809938], [-92.062088, 46.804038], [-92.086089, 46.794339], [-92.094089, 46.787839], [-92.088289, 46.773639], [-92.06449, 46.745439], [-92.025789, 46.710839], [-92.01529, 46.706469], [-92.020289, 46.704039], [-92.02472, 46.705624], [-92.03399, 46.708939], [-92.08949, 46.74924], [-92.11659, 46.74864], [-92.170413, 46.725553], [-92.172997, 46.724444], [-92.189091, 46.717541], [-92.195321, 46.709626], [-92.196264, 46.703966], [-92.196435, 46.702938], [-92.196575, 46.7021], [-92.194562, 46.697672], [-92.194087, 46.696626], [-92.193439, 46.695202], [-92.187795, 46.690185], [-92.187592, 46.678941], [-92.191075, 46.673278], [-92.191501, 46.672586]]]}, "bbox": [-93.096488, 46.649241, -91.787928, 48.627597]}, {"id": "27141", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.149467, 45.559066], [-93.759435, 45.559646], [-93.510704, 45.558772], [-93.51007, 45.414798], [-93.512554, 45.25042], [-93.51219, 45.245683], [-93.515342, 45.24632], [-93.521653, 45.246618], [-93.57939, 45.292122], [-93.75661, 45.294721], [-94.047327, 45.422861], [-94.141633, 45.49297], [-94.149467, 45.559066]]]}, "bbox": [-94.149467, 45.245683, -93.51007, 45.559646]}, {"id": "27145", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.766899, 45.773911], [-94.64399, 45.77395], [-94.271776, 45.775208], [-94.215712, 45.72656], [-94.203666, 45.619556], [-94.149467, 45.559066], [-94.141633, 45.49297], [-94.047327, 45.422861], [-94.089509, 45.34662], [-94.260821, 45.283941], [-94.383449, 45.282797], [-94.383556, 45.326705], [-94.76308, 45.3261], [-94.762934, 45.412861], [-95.13173, 45.412402], [-95.13967, 45.758891], [-95.139731, 45.773416], [-94.766899, 45.773911]]]}, "bbox": [-95.139731, 45.282797, -94.047327, 45.775208]}, {"id": "27163", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.746139, 45.296046], [-92.751735, 45.292667], [-92.760615, 45.278827], [-92.765898, 45.210173], [-92.76713, 45.194165], [-92.792875, 45.078489], [-92.791206, 45.045698], [-92.768606, 45.008016], [-92.750645, 44.937299], [-92.761677, 44.862022], [-92.761845, 44.860879], [-92.765461, 44.836202], [-92.784443, 44.793958], [-92.802201, 44.745714], [-93.005978, 44.771685], [-93.010076, 44.863787], [-93.012639, 44.869102], [-93.016466, 44.884611], [-93.020044, 44.89075], [-92.984192, 44.890814], [-92.984207, 44.893998], [-92.984458, 44.909393], [-92.984396, 44.909644], [-92.984463, 44.919869], [-92.98441, 44.920646], [-92.984584, 44.945077], [-92.984522, 44.945685], [-92.98462, 44.946114], [-92.984602, 44.947636], [-92.98464, 44.948522], [-92.984712, 45.075372], [-92.984621, 45.123757], [-93.020518, 45.123866], [-93.020219, 45.126754], [-93.019439, 45.296837], [-92.746139, 45.296046]]]}, "bbox": [-93.020518, 44.745714, -92.746139, 45.296837]}, {"id": "28003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.786612, 34.995252], [-88.469877, 34.996033], [-88.469801, 34.996052], [-88.380508, 34.99561], [-88.363531, 34.99559], [-88.365472, 34.755604], [-88.718508, 34.756781], [-88.752956, 34.858775], [-88.823473, 34.858629], [-88.823049, 34.995157], [-88.786612, 34.995252]]]}, "bbox": [-88.823473, 34.755604, -88.363531, 34.996052]}, {"id": "28033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.795187, 34.994293], [-89.724324, 34.994763], [-89.723357, 34.773347], [-89.723635, 34.772121], [-89.912202, 34.772506], [-90.030051, 34.70795], [-90.128906, 34.760537], [-90.200199, 34.724418], [-90.202126, 34.860374], [-90.293918, 34.860563], [-90.250095, 34.90732], [-90.244476, 34.937596], [-90.253969, 34.954988], [-90.309297, 34.995694], [-89.893402, 34.994356], [-89.883365, 34.994261], [-89.848488, 34.994193], [-89.795187, 34.994293]]]}, "bbox": [-90.309297, 34.70795, -89.723357, 34.995694]}, {"id": "28035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.34895, 31.01037], [-89.347863, 31.3467], [-89.451073, 31.346383], [-89.451616, 31.434029], [-89.420857, 31.434043], [-89.399178, 31.434029], [-89.146092, 31.434052], [-89.137967, 30.909877], [-89.340806, 30.909912], [-89.34895, 31.01037]]]}, "bbox": [-89.451616, 30.909877, -89.137967, 31.434052]}, {"id": "28045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.341446, 30.64772], [-89.340947, 30.372896], [-89.349447, 30.370995], [-89.353248, 30.368795], [-89.363848, 30.357395], [-89.366116, 30.352169], [-89.345934, 30.343573], [-89.338847, 30.342995], [-89.332546, 30.337895], [-89.322345, 30.319296], [-89.322545, 30.314896], [-89.329946, 30.302896], [-89.344746, 30.293196], [-89.358546, 30.288896], [-89.365747, 30.284896], [-89.379547, 30.270396], [-89.383747, 30.267796], [-89.419348, 30.25432], [-89.424624, 30.245391], [-89.424493, 30.239092], [-89.430428, 30.223218], [-89.447465, 30.205098], [-89.44791, 30.185352], [-89.461275, 30.174745], [-89.463595, 30.173943], [-89.469792, 30.176278], [-89.475824, 30.191561], [-89.480214, 30.193751], [-89.490099, 30.187677], [-89.503231, 30.183051], [-89.522814, 30.183076], [-89.524504, 30.180753], [-89.572654, 30.180897], [-89.580754, 30.186197], [-89.607655, 30.217096], [-89.64344, 30.287682], [-89.643575, 30.293099], [-89.640694, 30.301313], [-89.629877, 30.321017], [-89.629941, 30.339449], [-89.68341, 30.451793], [-89.69058, 30.458773], [-89.54451, 30.516862], [-89.544232, 30.648368], [-89.341446, 30.64772]]]}, "bbox": [-89.69058, 30.173943, -89.322345, 30.648368]}, {"id": "28047", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.095623, 30.231767], [-89.077259, 30.23168], [-89.067128, 30.250199], [-89.063989, 30.246299], [-89.065097, 30.239929], [-89.073538, 30.223318], [-89.091469, 30.202305], [-89.118222, 30.223343], [-89.156738, 30.230699], [-89.095623, 30.231767]]], [[[-88.90037, 30.224576], [-88.909752, 30.220405], [-88.945498, 30.209646], [-88.974672, 30.207391], [-88.980239, 30.207962], [-88.984249, 30.21032], [-88.982219, 30.211627], [-88.976811, 30.210987], [-88.947872, 30.214179], [-88.920511, 30.220578], [-88.908885, 30.225437], [-88.889797, 30.239665], [-88.877824, 30.242442], [-88.87366, 30.241748], [-88.90037, 30.224576]]], [[[-88.884533, 30.677292], [-88.88313, 30.418798], [-88.845609, 30.405266], [-88.857828, 30.392898], [-88.851442, 30.375355], [-88.880526, 30.3866], [-88.883789, 30.389172], [-88.884829, 30.391998], [-88.89393, 30.393398], [-88.922031, 30.393798], [-88.971233, 30.390798], [-89.016334, 30.383898], [-89.083237, 30.368097], [-89.18684, 30.331197], [-89.220442, 30.322497], [-89.271833, 30.305491], [-89.285744, 30.303097], [-89.291444, 30.303296], [-89.294444, 30.307596], [-89.291844, 30.328096], [-89.287844, 30.333196], [-89.281564, 30.33198], [-89.279818, 30.34979], [-89.292499, 30.365635], [-89.315067, 30.375408], [-89.335942, 30.374016], [-89.340947, 30.372896], [-89.341446, 30.64772], [-89.240073, 30.67716], [-88.884533, 30.677292]]]]}, "bbox": [-89.341446, 30.202305, -88.845609, 30.677292]}, {"id": "28049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.450037, 32.573783], [-90.44978, 32.487983], [-90.243641, 32.487533], [-90.243764, 32.400059], [-90.146688, 32.399859], [-90.141232, 32.399495], [-90.065697, 32.399529], [-90.160477, 32.30834], [-90.24538, 32.171396], [-90.230331, 32.049728], [-90.718297, 32.048352], [-90.728622, 32.225119], [-90.694517, 32.352996], [-90.636162, 32.374498], [-90.553821, 32.507574], [-90.450037, 32.573783]]]}, "bbox": [-90.728622, 32.048352, -90.065697, 32.573783]}, {"id": "28059", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.845609, 30.405266], [-88.88313, 30.418798], [-88.884533, 30.677292], [-88.884504, 30.713175], [-88.884478, 30.71377], [-88.884536, 30.714622], [-88.884534, 30.735591], [-88.412462, 30.735598], [-88.41227, 30.731771], [-88.412209, 30.730395], [-88.41155, 30.712956], [-88.411339, 30.706334], [-88.409571, 30.668731], [-88.40807, 30.63697], [-88.407462, 30.631653], [-88.407484, 30.622736], [-88.404013, 30.54506], [-88.403931, 30.543359], [-88.403547, 30.5331], [-88.402283, 30.510852], [-88.395023, 30.369425], [-88.397236, 30.367689], [-88.399062, 30.360744], [-88.397082, 30.354785], [-88.39415, 30.352493], [-88.39398, 30.349307], [-88.401181, 30.344382], [-88.409927, 30.342115], [-88.418811, 30.353911], [-88.433891, 30.354652], [-88.446495, 30.347753], [-88.446625, 30.337671], [-88.45381, 30.329626], [-88.471875, 30.32002], [-88.480117, 30.318345], [-88.504802, 30.321472], [-88.506226, 30.322393], [-88.506334, 30.327398], [-88.522494, 30.340092], [-88.536214, 30.343299], [-88.579483, 30.34419], [-88.596349, 30.358365], [-88.599249, 30.358933], [-88.601762, 30.355876], [-88.613745, 30.353108], [-88.624523, 30.358713], [-88.66382, 30.362099], [-88.679575, 30.35571], [-88.692164, 30.347302], [-88.700587, 30.343689], [-88.714077, 30.342186], [-88.728893, 30.342671], [-88.746945, 30.347622], [-88.771742, 30.365403], [-88.811615, 30.384907], [-88.812576, 30.38768], [-88.810127, 30.391298], [-88.810227, 30.394698], [-88.823724, 30.402376], [-88.841328, 30.409598], [-88.845609, 30.405266]]], [[[-88.506999, 30.214348], [-88.500011, 30.214044], [-88.465713, 30.20254], [-88.453444, 30.201236], [-88.442654, 30.202314], [-88.430332, 30.208548], [-88.401466, 30.210172], [-88.404581, 30.206162], [-88.428301, 30.198511], [-88.453654, 30.196584], [-88.493523, 30.205945], [-88.502752, 30.210506], [-88.506999, 30.214348]]], [[[-88.710719, 30.250799], [-88.656804, 30.233956], [-88.573044, 30.22264], [-88.568056, 30.222732], [-88.562067, 30.227476], [-88.565576, 30.222847], [-88.569138, 30.221357], [-88.587424, 30.219154], [-88.633743, 30.226342], [-88.665857, 30.228847], [-88.71183, 30.242662], [-88.740647, 30.238665], [-88.752782, 30.238803], [-88.764022, 30.241488], [-88.771991, 30.245523], [-88.73255, 30.246322], [-88.718104, 30.252931], [-88.710719, 30.250799]]]]}, "bbox": [-88.884536, 30.196584, -88.39398, 30.735598]}, {"id": "28067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.359928, 31.799388], [-89.31656, 31.80209], [-88.943355, 31.824565], [-88.943468, 31.433458], [-89.146092, 31.434052], [-89.399178, 31.434029], [-89.400539, 31.686169], [-89.401227, 31.796863], [-89.359928, 31.799388]]]}, "bbox": [-89.401227, 31.433458, -88.943355, 31.824565]}, {"id": "28071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.509748, 34.162082], [-89.50944, 34.19096], [-89.72105, 34.192545], [-89.721341, 34.554274], [-89.668448, 34.554367], [-89.476642, 34.554168], [-89.424459, 34.519129], [-89.246133, 34.495633], [-89.246339, 34.379344], [-89.245485, 34.161186], [-89.250072, 34.161022], [-89.509748, 34.162082]]]}, "bbox": [-89.721341, 34.161022, -89.245485, 34.554367]}, {"id": "28073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.654136, 31.375517], [-89.6544, 31.404663], [-89.654212, 31.433805], [-89.586819, 31.433688], [-89.451616, 31.434029], [-89.451073, 31.346383], [-89.347863, 31.3467], [-89.34895, 31.01037], [-89.476022, 30.982901], [-89.501411, 31.013907], [-89.654038, 31.002502], [-89.654136, 31.375517]]]}, "bbox": [-89.6544, 30.982901, -89.347863, 31.434029]}, {"id": "28075", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.914516, 32.576955], [-88.388739, 32.578116], [-88.403789, 32.449885], [-88.403789, 32.44977], [-88.421453, 32.30868], [-88.431707, 32.227662], [-88.913847, 32.224186], [-88.914516, 32.576955]]]}, "bbox": [-88.914516, 32.224186, -88.388739, 32.578116]}, {"id": "28081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.824523, 34.074948], [-88.824966, 34.364759], [-88.789442, 34.49493], [-88.736465, 34.50891], [-88.541749, 34.509192], [-88.542079, 34.465276], [-88.543352, 34.089044], [-88.718693, 34.08934], [-88.718964, 34.074521], [-88.725125, 34.074815], [-88.824523, 34.074948]]]}, "bbox": [-88.824966, 34.074521, -88.541749, 34.509192]}, {"id": "28089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.730016, 32.884773], [-89.73014, 32.685119], [-89.730304, 32.634228], [-89.759155, 32.613543], [-89.770781, 32.599184], [-89.781805, 32.597364], [-89.784123, 32.586891], [-89.858878, 32.584836], [-89.962077, 32.491286], [-90.06882, 32.438078], [-90.065697, 32.399529], [-90.141232, 32.399495], [-90.146688, 32.399859], [-90.243764, 32.400059], [-90.243641, 32.487533], [-90.44978, 32.487983], [-90.450037, 32.573783], [-90.363868, 32.603268], [-90.278055, 32.660346], [-90.197729, 32.66385], [-90.049129, 32.735674], [-89.965882, 32.879573], [-89.730016, 32.884773]]]}, "bbox": [-90.450037, 32.399495, -89.730016, 32.884773]}, {"id": "28105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.813053, 33.286424], [-88.988471, 33.286087], [-89.088255, 33.286003], [-89.088446, 33.533202], [-89.088263, 33.562039], [-89.018613, 33.562114], [-88.671526, 33.565135], [-88.67125, 33.506168], [-88.669076, 33.286922], [-88.813053, 33.286424]]]}, "bbox": [-89.088446, 33.286003, -88.669076, 33.565135]}, {"id": "28113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.369371, 31.000335], [-90.422117, 30.99981], [-90.426849, 30.999776], [-90.437351, 30.99973], [-90.441725, 30.999729], [-90.442479, 30.999722], [-90.474094, 30.999798], [-90.475928, 30.99974], [-90.477284, 30.999717], [-90.485876, 30.99974], [-90.486749, 30.999693], [-90.547615, 30.999723], [-90.548199, 31.349574], [-90.260391, 31.350274], [-90.259555, 31.000657], [-90.346007, 31.000363], [-90.34723, 31.000359], [-90.347241, 31.000359], [-90.369371, 31.000335]]]}, "bbox": [-90.548199, 30.999693, -90.259555, 31.350274]}, {"id": "28121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.230331, 32.049728], [-90.24538, 32.171396], [-90.160477, 32.30834], [-90.065697, 32.399529], [-90.06882, 32.438078], [-89.962077, 32.491286], [-89.858878, 32.584836], [-89.784123, 32.586891], [-89.730063, 32.352733], [-89.730424, 32.222039], [-89.731059, 32.222045], [-89.730066, 32.047072], [-90.230331, 32.049728]]]}, "bbox": [-90.24538, 32.047072, -89.730063, 32.586891]}, {"id": "28145", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.73544, 34.596483], [-88.736465, 34.50891], [-88.789442, 34.49493], [-88.824966, 34.364759], [-88.928901, 34.379361], [-89.246339, 34.379344], [-89.246133, 34.495633], [-89.24592, 34.54135], [-89.244591, 34.542329], [-89.245922, 34.542942], [-89.245645, 34.583234], [-89.245611, 34.597601], [-89.088488, 34.598247], [-88.73544, 34.596483]]]}, "bbox": [-89.246339, 34.364759, -88.73544, 34.598247]}, {"id": "28149", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.720102, 32.618858], [-90.654589, 32.546044], [-90.553821, 32.507574], [-90.636162, 32.374498], [-90.694517, 32.352996], [-90.728622, 32.225119], [-90.77482, 32.153993], [-90.90774, 32.131888], [-90.945094, 32.079921], [-91.027946, 32.112722], [-91.027535, 32.113431], [-91.027125, 32.120434], [-91.026931, 32.123737], [-91.030152, 32.129821], [-91.034447, 32.134832], [-91.040531, 32.137337], [-91.046615, 32.138768], [-91.052342, 32.137337], [-91.057487, 32.135515], [-91.067004, 32.132144], [-91.131403, 32.126213], [-91.162822, 32.132694], [-91.165452, 32.13429], [-91.171702, 32.14425], [-91.174552, 32.154978], [-91.171046, 32.176526], [-91.164171, 32.196888], [-91.158026, 32.201956], [-91.133587, 32.213432], [-91.122602, 32.216929], [-91.046507, 32.241149], [-91.039007, 32.242349], [-91.021507, 32.236149], [-91.006306, 32.22415], [-91.004557, 32.215381], [-90.905173, 32.315497], [-90.898588, 32.329094], [-90.901511, 32.337864], [-90.912363, 32.339454], [-90.986672, 32.35176], [-91.000106, 32.357695], [-91.003506, 32.362145], [-91.004506, 32.368144], [-90.99408, 32.403862], [-91.029606, 32.433542], [-91.052907, 32.438442], [-91.070207, 32.445141], [-91.095308, 32.458741], [-91.108808, 32.47204], [-91.116008, 32.48314], [-91.116708, 32.500139], [-91.097878, 32.544752], [-91.093741, 32.549128], [-91.089436, 32.553306], [-91.090611, 32.562705], [-91.090771, 32.563978], [-90.964043, 32.575605], [-90.95124, 32.444389], [-90.861364, 32.442115], [-90.860566, 32.575173], [-90.728344, 32.566265], [-90.720102, 32.618858]]]}, "bbox": [-91.174552, 32.079921, -90.553821, 32.618858]}, {"id": "28151", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.716277, 33.270032], [-90.680319, 33.201971], [-90.701845, 33.096294], [-90.914465, 33.097417], [-90.914337, 33.007697], [-91.157662, 33.011217], [-91.125656, 33.038276], [-91.087589, 33.145177], [-91.085984, 33.221644], [-91.110561, 33.24593], [-91.141216, 33.298397], [-91.184427, 33.419576], [-91.131885, 33.430063], [-91.118495, 33.449116], [-91.125109, 33.472842], [-91.215671, 33.529423], [-90.763509, 33.529389], [-90.763773, 33.270359], [-90.716277, 33.270032]]]}, "bbox": [-91.215671, 33.007697, -90.680319, 33.529423]}, {"id": "29019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.430229, 39.248795], [-92.314471, 39.246454], [-92.104374, 39.239809], [-92.110387, 39.064204], [-92.131512, 39.064484], [-92.17095, 38.7653], [-92.220661, 38.643167], [-92.350605, 38.676398], [-92.394866, 38.73913], [-92.379614, 38.800076], [-92.498377, 38.922084], [-92.508657, 38.93271], [-92.514987, 38.938114], [-92.526437, 38.944776], [-92.540118, 38.953718], [-92.544946, 38.959691], [-92.558086, 38.970692], [-92.565124, 38.998274], [-92.430229, 39.248795]]]}, "bbox": [-92.565124, 38.643167, -92.104374, 39.248795]}, {"id": "29021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.602257, 39.747195], [-94.601246, 39.530372], [-94.601326, 39.532138], [-95.102888, 39.533347], [-95.109304, 39.542285], [-95.113557, 39.553941], [-95.113077, 39.559133], [-95.107454, 39.573843], [-95.069592, 39.615106], [-95.01531, 39.674262], [-95.011103, 39.677572], [-94.937924, 39.725471], [-94.916932, 39.728186], [-94.895268, 39.76321], [-94.908267, 39.812172], [-94.876544, 39.820594], [-94.602819, 39.819608], [-94.602257, 39.747195]]]}, "bbox": [-95.113557, 39.530372, -94.601246, 39.820594]}, {"id": "29023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.678562, 36.92649], [-90.258563, 36.922043], [-90.204205, 36.772262], [-90.14002, 36.69676], [-90.148398, 36.630656], [-90.220732, 36.497858], [-90.228943, 36.497771], [-90.339892, 36.498213], [-90.494575, 36.498368], [-90.495027, 36.498371], [-90.50016, 36.498399], [-90.576112, 36.498446], [-90.57618, 36.498446], [-90.592166, 36.679368], [-90.628387, 36.679544], [-90.627517, 36.810954], [-90.662617, 36.811453], [-90.678562, 36.92649]]]}, "bbox": [-90.678562, 36.497771, -90.14002, 36.92649]}, {"id": "29029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.406872, 37.977802], [-92.409231, 37.85918], [-92.548934, 37.80047], [-92.620181, 37.892521], [-92.855384, 37.895736], [-93.072447, 37.902627], [-93.065199, 38.062479], [-93.077692, 38.263092], [-92.979558, 38.197734], [-92.764963, 38.189534], [-92.695886, 38.222031], [-92.604976, 38.156815], [-92.515979, 38.022336], [-92.406275, 38.021179], [-92.406872, 37.977802]]]}, "bbox": [-93.077692, 37.80047, -92.406275, 38.263092]}, {"id": "29031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.491222, 37.248629], [-89.620256, 37.233008], [-89.765211, 37.126066], [-89.866627, 37.126227], [-89.861123, 37.599286], [-89.603574, 37.592056], [-89.521523, 37.566208], [-89.521697, 37.557325], [-89.517051, 37.537278], [-89.492051, 37.494008], [-89.475525, 37.471388], [-89.450969, 37.450069], [-89.439769, 37.4372], [-89.42594, 37.407471], [-89.421054, 37.387668], [-89.428185, 37.356158], [-89.432836, 37.347056], [-89.43604, 37.344441], [-89.447556, 37.340475], [-89.474569, 37.338165], [-89.484598, 37.334832], [-89.489005, 37.333368], [-89.511842, 37.310825], [-89.518393, 37.289354], [-89.517032, 37.28192], [-89.491222, 37.248629]]]}, "bbox": [-89.866627, 37.126066, -89.421054, 37.599286]}, {"id": "29047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.335213, 39.183337], [-94.389728, 39.193503], [-94.46159, 39.120372], [-94.523463, 39.148771], [-94.607354, 39.113444], [-94.589933, 39.140403], [-94.591933, 39.155003], [-94.596033, 39.157703], [-94.601733, 39.159603], [-94.600819, 39.456155], [-94.597879, 39.455838], [-94.210642, 39.454682], [-94.212515, 39.207086], [-94.289873, 39.237107], [-94.335213, 39.183337]]]}, "bbox": [-94.607354, 39.113444, -94.210642, 39.456155]}, {"id": "29051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.194476, 38.335536], [-92.408407, 38.341344], [-92.403484, 38.425331], [-92.495185, 38.427829], [-92.394866, 38.73913], [-92.350605, 38.676398], [-92.220661, 38.643167], [-92.161663, 38.578057], [-92.065233, 38.557079], [-91.944238, 38.596925], [-92.025857, 38.552017], [-92.043489, 38.466479], [-92.168883, 38.466812], [-92.114977, 38.401937], [-92.194476, 38.335536]]]}, "bbox": [-92.495185, 38.335536, -91.944238, 38.73913]}, {"id": "29071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.964461, 38.547545], [-90.916554, 38.534725], [-90.732328, 38.639302], [-90.736319, 38.466645], [-90.737599, 38.415897], [-90.780185, 38.204112], [-91.095765, 38.204083], [-91.367482, 38.209741], [-91.369192, 38.699324], [-91.313093, 38.706715], [-91.226547, 38.621567], [-91.077324, 38.609343], [-90.964461, 38.547545]]]}, "bbox": [-91.369192, 38.204083, -90.732328, 38.706715]}, {"id": "29077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.07338, 37.414989], [-93.065274, 37.088694], [-93.608899, 37.098153], [-93.605095, 37.281482], [-93.625844, 37.282011], [-93.621153, 37.427423], [-93.182489, 37.417204], [-93.158287, 37.416799], [-93.07338, 37.414989]]]}, "bbox": [-93.625844, 37.088694, -93.065274, 37.427423]}, {"id": "29083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.064317, 38.56738], [-93.51103, 38.55621], [-93.511364, 38.548889], [-93.511303, 38.548565], [-93.512743, 38.512476], [-93.523484, 38.207216], [-94.049895, 38.213985], [-94.075214, 38.214502], [-94.065713, 38.447087], [-94.064317, 38.56738]]]}, "bbox": [-94.075214, 38.207216, -93.51103, 38.56738]}, {"id": "29091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.658111, 36.888724], [-91.674237, 36.787832], [-91.672343, 36.499463], [-91.686026, 36.499374], [-91.687615, 36.499397], [-91.726663, 36.499209], [-91.766111, 36.499114], [-91.784713, 36.499074], [-91.7995, 36.498952], [-91.80204, 36.498963], [-91.805981, 36.498987], [-91.864385, 36.498789], [-91.865995, 36.498783], [-91.985802, 36.498431], [-91.988751, 36.498498], [-92.019375, 36.498524], [-92.028847, 36.498642], [-92.055789, 36.49867], [-92.057178, 36.49867], [-92.074934, 36.498761], [-92.098356, 36.498803], [-92.120306, 36.498864], [-92.120415, 36.498863], [-92.112346, 36.794231], [-92.095982, 36.794011], [-92.088708, 37.056248], [-91.655607, 37.048925], [-91.657814, 36.889648], [-91.658111, 36.888724]]]}, "bbox": [-92.120415, 36.498431, -91.655607, 37.056248]}, {"id": "29095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.607354, 39.113444], [-94.523463, 39.148771], [-94.46159, 39.120372], [-94.389728, 39.193503], [-94.335213, 39.183337], [-94.289873, 39.237107], [-94.212515, 39.207086], [-94.104823, 39.143507], [-94.109584, 39.018745], [-94.109953, 39.015815], [-94.110863, 38.986311], [-94.111478, 38.982862], [-94.112928, 38.960904], [-94.11427, 38.92857], [-94.114175, 38.917304], [-94.113712, 38.915366], [-94.119096, 38.833167], [-94.120778, 38.833006], [-94.399447, 38.838809], [-94.608033, 38.847207], [-94.608033, 38.855007], [-94.608033, 38.861207], [-94.607993, 38.867271], [-94.608033, 38.868107], [-94.608033, 38.869207], [-94.608033, 38.883807], [-94.607978, 38.93687], [-94.607866, 38.937398], [-94.608134, 38.940006], [-94.608134, 38.942006], [-94.607391, 39.044086], [-94.607234, 39.065704], [-94.607334, 39.081704], [-94.607234, 39.089604], [-94.607354, 39.113444]]]}, "bbox": [-94.608134, 38.833006, -94.104823, 39.237107]}, {"id": "29097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.082083, 37.349291], [-94.083833, 37.290851], [-94.052313, 37.290078], [-94.059211, 37.048127], [-94.617875, 37.056797], [-94.617875, 37.056798], [-94.617982, 37.075077], [-94.61812, 37.085934], [-94.618082, 37.086432], [-94.61809, 37.093494], [-94.618088, 37.093671], [-94.618059, 37.096676], [-94.618151, 37.103968], [-94.618212, 37.113169], [-94.618075, 37.129755], [-94.618072, 37.132345], [-94.618351, 37.160211], [-94.618473, 37.174782], [-94.618505, 37.181184], [-94.618319, 37.188774], [-94.618305, 37.207337], [-94.618219, 37.207772], [-94.61815, 37.228121], [-94.618123, 37.229334], [-94.618158, 37.237597], [-94.618075, 37.240436], [-94.617648, 37.323589], [-94.617695, 37.336842], [-94.617636, 37.338415], [-94.617636, 37.338417], [-94.617538, 37.364167], [-94.082083, 37.349291]]]}, "bbox": [-94.618505, 37.048127, -94.052313, 37.364167]}, {"id": "29099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.736319, 38.466645], [-90.591123, 38.501652], [-90.405262, 38.501153], [-90.376841, 38.452861], [-90.340297, 38.386998], [-90.346118, 38.381853], [-90.350918, 38.375053], [-90.370819, 38.333554], [-90.372519, 38.323354], [-90.373929, 38.281853], [-90.363926, 38.236355], [-90.353902, 38.213855], [-90.334258, 38.189932], [-90.254112, 38.12199], [-90.416022, 38.042315], [-90.583324, 38.003499], [-90.63998, 38.076548], [-90.780185, 38.204112], [-90.737599, 38.415897], [-90.736319, 38.466645]]]}, "bbox": [-90.780185, 38.003499, -90.254112, 38.501652]}, {"id": "29101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.114175, 38.917304], [-93.836319, 38.908709], [-93.834719, 38.937909], [-93.497278, 38.92843], [-93.51103, 38.55621], [-94.064317, 38.56738], [-94.119664, 38.568712], [-94.119096, 38.833167], [-94.113712, 38.915366], [-94.114175, 38.917304]]]}, "bbox": [-94.119664, 38.55621, -93.497278, 38.937909]}, {"id": "29127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.369953, 39.745042], [-91.370009, 39.732524], [-91.367753, 39.729029], [-91.349039, 39.712316], [-91.313162, 39.684907], [-91.715497, 39.686492], [-91.715247, 39.657644], [-91.846743, 39.658513], [-91.840353, 39.948235], [-91.455887, 39.945538], [-91.446385, 39.870394], [-91.432919, 39.840554], [-91.365396, 39.777266], [-91.367962, 39.759124], [-91.369953, 39.745042]]]}, "bbox": [-91.846743, 39.657644, -91.313162, 39.948235]}, {"id": "29159", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.497278, 38.92843], [-93.496377, 38.942837], [-93.069819, 38.930042], [-93.050453, 38.928244], [-93.059974, 38.693077], [-93.067294, 38.529995], [-93.290454, 38.535388], [-93.291851, 38.506321], [-93.512743, 38.512476], [-93.511303, 38.548565], [-93.511364, 38.548889], [-93.51103, 38.55621], [-93.497278, 38.92843]]]}, "bbox": [-93.512743, 38.506321, -93.050453, 38.942837]}, {"id": "29161", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.809105, 37.598863], [-92.029258, 37.602542], [-92.021165, 38.010639], [-91.895347, 38.051199], [-91.632431, 38.050951], [-91.630554, 38.153519], [-91.589527, 38.153249], [-91.580252, 38.152793], [-91.538016, 38.15249], [-91.534384, 38.152593], [-91.525025, 38.152433], [-91.528797, 37.788989], [-91.806219, 37.791286], [-91.809105, 37.598863]]]}, "bbox": [-92.029258, 37.598863, -91.525025, 38.153519]}, {"id": "29165", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.600819, 39.456155], [-94.601733, 39.159603], [-94.706723, 39.173801], [-94.714137, 39.170403], [-94.723637, 39.169003], [-94.736537, 39.169203], [-94.752338, 39.173203], [-94.793948, 39.201276], [-94.832399, 39.227218], [-94.901009, 39.30168], [-94.907569, 39.320623], [-94.910641, 39.348335], [-94.908337, 39.355647], [-94.909954, 39.367459], [-94.946662, 39.399717], [-94.969061, 39.418876], [-95.102888, 39.533347], [-94.601326, 39.532138], [-94.601246, 39.530372], [-94.600819, 39.456155]]]}, "bbox": [-95.102888, 39.159603, -94.600819, 39.533347]}, {"id": "29167", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.621153, 37.427423], [-93.620379, 37.456289], [-93.616033, 37.572689], [-93.628404, 37.829435], [-93.573202, 37.828035], [-93.574103, 37.813336], [-93.187915, 37.802737], [-93.175222, 37.67489], [-93.182489, 37.417204], [-93.621153, 37.427423]]]}, "bbox": [-93.628404, 37.417204, -93.175222, 37.829435]}, {"id": "29169", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.406872, 37.977802], [-92.406275, 38.021179], [-92.18537, 38.016338], [-92.18537, 38.015138], [-92.021165, 38.010639], [-92.029258, 37.602542], [-92.249463, 37.604543], [-92.248865, 37.648442], [-92.413669, 37.713941], [-92.409231, 37.85918], [-92.406872, 37.977802]]]}, "bbox": [-92.413669, 37.602542, -92.021165, 38.021179]}, {"id": "29175", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-92.692149, 39.610265], [-92.300871, 39.605348], [-92.310028, 39.347795], [-92.313836, 39.249986], [-92.314471, 39.246454], [-92.430229, 39.248795], [-92.707367, 39.321614], [-92.696592, 39.610371], [-92.692149, 39.610265]]]}, "bbox": [-92.707367, 39.246454, -92.300871, 39.610371]}, {"id": "29183", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.571822, 38.681052], [-90.660509, 38.688551], [-90.732328, 38.639302], [-90.916554, 38.534725], [-90.964461, 38.547545], [-90.9622, 38.7742], [-90.958536, 38.870865], [-90.817827, 38.875966], [-90.77821, 38.922488], [-90.66587, 38.934195], [-90.663372, 38.928042], [-90.657254, 38.92027], [-90.625122, 38.888654], [-90.583388, 38.86903], [-90.566557, 38.868847], [-90.555693, 38.870785], [-90.54403, 38.87505], [-90.507451, 38.902767], [-90.486974, 38.925982], [-90.482725, 38.934712], [-90.482419, 38.94446], [-90.472122, 38.958838], [-90.467784, 38.961809], [-90.450809, 38.967758], [-90.450792, 38.967764], [-90.406367, 38.962554], [-90.385751, 38.956848], [-90.275932, 38.926453], [-90.250248, 38.919344], [-90.22585, 38.908923], [-90.207035, 38.898954], [-90.113327, 38.849306], [-90.109407, 38.843548], [-90.109107, 38.837448], [-90.114707, 38.815048], [-90.117707, 38.805748], [-90.298743, 38.887759], [-90.482299, 38.764348], [-90.49579, 38.748256], [-90.528024, 38.733702], [-90.53134, 38.731178], [-90.533638, 38.726871], [-90.530378, 38.708195], [-90.530363, 38.69863], [-90.533785, 38.691915], [-90.541612, 38.685267], [-90.554722, 38.681552], [-90.571822, 38.681052]]]}, "bbox": [-90.964461, 38.534725, -90.109107, 38.967764]}, {"id": "29187", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.535016, 37.643641], [-90.647874, 37.642809], [-90.645135, 37.734813], [-90.63998, 38.076548], [-90.583324, 38.003499], [-90.416022, 38.042315], [-90.32287, 37.981731], [-90.459133, 37.878924], [-90.200208, 37.669628], [-90.110537, 37.67134], [-90.146778, 37.641618], [-90.516756, 37.642665], [-90.535016, 37.643641]]]}, "bbox": [-90.647874, 37.641618, -90.110537, 38.076548]}, {"id": "29189", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.340297, 38.386998], [-90.376841, 38.452861], [-90.405262, 38.501153], [-90.591123, 38.501652], [-90.736319, 38.466645], [-90.732328, 38.639302], [-90.660509, 38.688551], [-90.571822, 38.681052], [-90.554722, 38.681552], [-90.541612, 38.685267], [-90.533785, 38.691915], [-90.530363, 38.69863], [-90.530378, 38.708195], [-90.533638, 38.726871], [-90.53134, 38.731178], [-90.528024, 38.733702], [-90.49579, 38.748256], [-90.482299, 38.764348], [-90.298743, 38.887759], [-90.117707, 38.805748], [-90.123107, 38.798048], [-90.165082, 38.770618], [-90.251709, 38.718948], [-90.301911, 38.655652], [-90.3036, 38.645003], [-90.304812, 38.642444], [-90.306433, 38.63359], [-90.257773, 38.532008], [-90.260314, 38.528352], [-90.263064, 38.52022], [-90.279215, 38.472453], [-90.285215, 38.443453], [-90.295316, 38.426753], [-90.340297, 38.386998]]]}, "bbox": [-90.736319, 38.386998, -90.117707, 38.887759]}, {"id": "29201", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.691603, 36.859517], [-89.68662, 36.928293], [-89.786819, 37.087824], [-89.765211, 37.126066], [-89.620256, 37.233008], [-89.491222, 37.248629], [-89.467631, 37.2182], [-89.414471, 37.12505], [-89.385434, 37.05513], [-89.383937, 37.046441], [-89.378277, 37.039605], [-89.322733, 37.009033], [-89.465393, 36.935729], [-89.519809, 36.869617], [-89.691603, 36.859517]]]}, "bbox": [-89.786819, 36.859517, -89.322733, 37.248629]}, {"id": "29213", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-93.146854, 36.81382], [-92.909336, 36.809178], [-92.764869, 36.806097], [-92.772341, 36.497772], [-92.838621, 36.498079], [-92.838876, 36.498033], [-92.854049, 36.497983], [-92.894001, 36.49785], [-92.894336, 36.497867], [-93.013742, 36.49813], [-93.068455, 36.49825], [-93.069512, 36.498242], [-93.087635, 36.498239], [-93.088988, 36.498184], [-93.296117, 36.498389], [-93.315324, 36.498408], [-93.304359, 36.816866], [-93.146854, 36.81382]]]}, "bbox": [-93.315324, 36.497772, -92.764869, 36.816866]}, {"id": "29510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.301911, 38.655652], [-90.251709, 38.718948], [-90.165082, 38.770618], [-90.171309, 38.766549], [-90.20991, 38.72605], [-90.21201, 38.71175], [-90.20921, 38.70275], [-90.20221, 38.69345], [-90.19521, 38.68755], [-90.18641, 38.67475], [-90.181399, 38.660378], [-90.18111, 38.65955], [-90.17771, 38.64275], [-90.17801, 38.63375], [-90.182625, 38.617989], [-90.18451, 38.611551], [-90.196011, 38.594451], [-90.202511, 38.588651], [-90.224512, 38.574651], [-90.248913, 38.544752], [-90.257773, 38.532008], [-90.306433, 38.63359], [-90.304812, 38.642444], [-90.3036, 38.645003], [-90.301911, 38.655652]]]}, "bbox": [-90.306433, 38.532008, -90.165082, 38.770618]}, {"id": "30013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.409117, 47.698277], [-110.976382, 47.698605], [-111.049832, 47.598325], [-110.863942, 47.52506], [-110.768771, 47.524837], [-110.769218, 47.445996], [-110.639934, 47.445332], [-110.639564, 47.416259], [-110.63928, 47.358998], [-110.767125, 47.359128], [-110.772254, 47.095871], [-110.645353, 47.095735], [-110.652877, 46.823626], [-110.751665, 46.844681], [-110.761016, 46.900286], [-110.85718, 46.922879], [-110.913285, 46.980853], [-111.104738, 47.029105], [-111.080855, 47.088138], [-111.158602, 47.088184], [-111.158518, 47.011501], [-111.539141, 47.000386], [-111.539341, 46.913427], [-111.658131, 46.913364], [-111.790092, 46.91393], [-111.789326, 47.128993], [-112.044923, 47.19271], [-112.047308, 47.516028], [-111.92253, 47.505078], [-111.922936, 47.611231], [-111.6668, 47.611241], [-111.667035, 47.697885], [-111.409117, 47.698277]]]}, "bbox": [-112.047308, 46.823626, -110.63928, 47.698605]}, {"id": "30029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-113.34947, 48.310155], [-113.236785, 48.247345], [-113.231495, 48.170652], [-113.016894, 48.13246], [-112.878615, 47.975766], [-112.984705, 47.953982], [-113.08667, 47.918109], [-113.080938, 47.749885], [-113.165906, 47.720729], [-113.144926, 47.596363], [-113.466486, 47.599986], [-113.633957, 47.599861], [-113.604004, 47.72153], [-113.681245, 47.794662], [-113.667442, 47.890291], [-113.747738, 47.953079], [-113.841867, 47.978185], [-113.885757, 48.051129], [-114.028314, 48.051911], [-114.078146, 48.023454], [-114.038545, 47.96255], [-114.491992, 47.961906], [-114.477186, 47.789841], [-114.604326, 47.789744], [-114.604407, 47.875605], [-114.98963, 47.872819], [-115.010806, 48.017256], [-115.020079, 48.225954], [-114.847946, 48.226159], [-114.849699, 48.573549], [-114.888446, 48.573612], [-114.888676, 48.65849], [-114.639014, 48.658959], [-114.692445, 48.680372], [-114.611925, 48.751888], [-114.73248, 48.809234], [-114.691742, 48.842091], [-114.728125, 49.000623], [-114.678217, 49.000725], [-114.674398, 49.000679], [-114.43883, 49.001076], [-114.068151, 48.999364], [-114.014249, 48.907927], [-114.05809, 48.888935], [-113.957138, 48.817636], [-113.911428, 48.850196], [-113.790355, 48.845427], [-113.71491, 48.742789], [-113.750295, 48.613931], [-113.467378, 48.5476], [-113.480934, 48.459711], [-113.333137, 48.38782], [-113.34947, 48.310155]]]}, "bbox": [-115.020079, 47.596363, -112.878615, 49.001076]}, {"id": "30031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.044275, 45.001345], [-111.056207, 44.935901], [-111.055629, 44.933578], [-111.056888, 44.866658], [-111.055495, 44.666262], [-111.055208, 44.624927], [-111.048974, 44.474072], [-111.106574, 44.48633], [-111.122654, 44.493659], [-111.131379, 44.499925], [-111.139455, 44.517112], [-111.219236, 44.622616], [-111.323669, 44.724474], [-111.377682, 44.751744], [-111.351346, 45.641938], [-111.536614, 45.642131], [-111.536816, 45.656736], [-111.805134, 45.798018], [-111.659995, 45.833512], [-111.415802, 46.001785], [-111.34646, 46.188102], [-111.06256, 46.192897], [-110.790022, 46.192567], [-110.783982, 46.192408], [-110.790447, 46.142024], [-110.794977, 45.590289], [-110.857054, 45.590872], [-110.858228, 45.525089], [-110.919212, 45.525338], [-110.917661, 45.351328], [-111.038168, 45.351174], [-111.044275, 45.001345]]]}, "bbox": [-111.805134, 44.474072, -110.783982, 46.192897]}, {"id": "30049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-112.31061, 46.421006], [-112.298607, 46.625918], [-112.410855, 46.656711], [-112.41079, 46.699696], [-112.535313, 46.698527], [-112.535608, 46.834382], [-112.79532, 46.831772], [-112.796594, 47.177222], [-113.058866, 47.179369], [-113.059444, 47.488096], [-113.114863, 47.490564], [-113.144926, 47.596363], [-113.165906, 47.720729], [-113.080938, 47.749885], [-113.08667, 47.918109], [-112.984705, 47.953982], [-112.913256, 47.826216], [-112.91422, 47.694958], [-112.818574, 47.607849], [-112.55231, 47.652231], [-112.278406, 47.505955], [-112.047308, 47.516028], [-112.044923, 47.19271], [-111.789326, 47.128993], [-111.790092, 46.91393], [-111.658131, 46.913364], [-111.645393, 46.841937], [-111.497961, 46.762469], [-111.639261, 46.73818], [-111.631643, 46.569108], [-111.787875, 46.568998], [-112.029312, 46.569096], [-112.188399, 46.499211], [-112.17579, 46.456606], [-112.31061, 46.421006]]]}, "bbox": [-113.165906, 46.421006, -111.497961, 47.953982]}, {"id": "30063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-114.797235, 47.268901], [-114.550033, 47.251614], [-114.352769, 47.190407], [-114.254476, 47.120639], [-114.187383, 47.138192], [-113.821994, 47.181622], [-113.821126, 47.268599], [-113.886455, 47.318622], [-113.870895, 47.392118], [-113.951187, 47.476007], [-113.914926, 47.500299], [-113.929999, 47.598483], [-113.948763, 47.600517], [-113.633957, 47.599861], [-113.466486, 47.599986], [-113.466122, 47.178941], [-113.302873, 47.179433], [-113.303005, 46.832132], [-113.479917, 46.80273], [-113.479817, 46.744929], [-113.667726, 46.716026], [-113.667225, 46.658426], [-113.827831, 46.661023], [-114.332887, 46.660756], [-114.341336, 46.642803], [-114.349584, 46.646684], [-114.370129, 46.654217], [-114.422176, 46.652163], [-114.44683, 46.645314], [-114.461211, 46.639151], [-114.481943, 46.631993], [-114.592264, 46.632861], [-114.594707, 46.633558], [-114.614423, 46.639188], [-114.635868, 46.65951], [-114.642713, 46.673145], [-114.641745, 46.679286], [-114.641322, 46.686404], [-114.642692, 46.694622], [-114.644747, 46.702155], [-114.655704, 46.711743], [-114.667346, 46.719276], [-114.675505, 46.719516], [-114.548929, 46.747366], [-114.565991, 46.963758], [-114.525403, 47.009321], [-114.419662, 47.023267], [-114.483637, 47.067326], [-114.565985, 47.067339], [-114.586753, 47.12369], [-114.712026, 47.182124], [-114.71217, 47.22559], [-114.775739, 47.225548], [-114.797235, 47.268901]]]}, "bbox": [-114.797235, 46.631993, -113.302873, 47.600517]}, {"id": "30083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.043933, 47.971515], [-104.043497, 47.95449], [-104.043329, 47.949554], [-104.04223, 47.891031], [-104.041662, 47.862282], [-104.041869, 47.841699], [-104.042567, 47.808237], [-104.042432, 47.805358], [-104.042384, 47.803256], [-104.043199, 47.747292], [-104.043242, 47.747106], [-104.044621, 47.45938], [-104.044797, 47.438445], [-104.045069, 47.397461], [-104.131525, 47.354148], [-104.420263, 47.354596], [-104.513279, 47.354718], [-104.512883, 47.529252], [-104.593811, 47.528966], [-104.59363, 47.615951], [-104.978516, 47.616288], [-104.978, 47.703374], [-105.23488, 47.703634], [-105.234619, 47.79076], [-105.194933, 47.86818], [-105.194742, 48.065669], [-105.177722, 48.1031], [-105.119117, 48.0596], [-104.990346, 48.066449], [-104.891321, 48.15069], [-104.822581, 48.118945], [-104.681633, 48.103323], [-104.544517, 48.126553], [-104.245936, 48.031005], [-104.14247, 48.055005], [-104.098921, 48.000019], [-104.04412, 47.996107], [-104.044162, 47.992836], [-104.043933, 47.971515]]]}, "bbox": [-105.23488, 47.354148, -104.041662, 48.15069]}, {"id": "30093", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-112.190269, 45.748503], [-112.515453, 45.746702], [-112.549534, 45.684317], [-112.687054, 45.624854], [-112.759339, 45.748209], [-113.085474, 45.860586], [-112.923572, 45.935524], [-112.938373, 45.993224], [-112.777105, 46.048363], [-112.777685, 46.135807], [-112.57685, 46.178859], [-112.504818, 46.183767], [-112.399399, 45.831089], [-112.190269, 45.748503]]]}, "bbox": [-113.085474, 45.624854, -112.190269, 46.183767]}, {"id": "30111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-108.924129, 46.132211], [-108.78014, 46.132402], [-108.404936, 46.132675], [-108.40464, 46.236126], [-108.32073, 46.264061], [-108.029531, 46.263812], [-108.011552, 46.336639], [-107.928505, 46.39529], [-107.782089, 46.395286], [-107.781214, 46.496014], [-107.75518, 46.496126], [-107.755369, 46.482008], [-107.738547, 46.481715], [-107.61278, 46.30811], [-107.466381, 46.177535], [-107.511497, 46.043257], [-107.674261, 46.043627], [-107.674438, 45.985685], [-107.798047, 45.985681], [-107.881553, 45.89897], [-108.04741, 45.899316], [-108.069044, 45.783599], [-108.069703, 45.518246], [-108.193125, 45.518413], [-108.193191, 45.489396], [-108.316249, 45.489459], [-108.316374, 45.460509], [-108.644971, 45.464091], [-108.801661, 45.552067], [-108.842697, 45.611006], [-108.905232, 45.682437], [-108.901279, 45.959536], [-108.924129, 46.132211]]]}, "bbox": [-108.924129, 45.460509, -107.466381, 46.496126]}, {"id": "31019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.721975, 41.046674], [-98.72143, 40.698903], [-98.724412, 40.698891], [-98.724387, 40.689772], [-98.906096, 40.652722], [-99.179248, 40.660541], [-99.417316, 40.670825], [-99.425986, 41.046471], [-99.207564, 41.047003], [-98.748526, 41.04664], [-98.740957, 41.046651], [-98.74076, 41.046702], [-98.721975, 41.046674]]]}, "bbox": [-99.425986, 40.652722, -98.72143, 41.047003]}, {"id": "31055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.923219, 41.191046], [-96.158333, 41.190762], [-96.327399, 41.189999], [-96.350598, 41.265192], [-96.47072, 41.393239], [-96.329012, 41.393136], [-95.9393, 41.393184], [-95.93831, 41.392162], [-95.956791, 41.349196], [-95.956691, 41.345496], [-95.953091, 41.339896], [-95.939291, 41.328897], [-95.92569, 41.322197], [-95.91379, 41.320197], [-95.90249, 41.273398], [-95.924891, 41.211198], [-95.927491, 41.202198], [-95.92599, 41.195698], [-95.923219, 41.191046]]]}, "bbox": [-96.47072, 41.189999, -95.90249, 41.393239]}, {"id": "31079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.282851, 40.698284], [-98.72143, 40.698903], [-98.721975, 41.046674], [-98.287168, 41.046363], [-98.282359, 41.046355], [-98.282569, 40.872296], [-98.282851, 40.698284]]]}, "bbox": [-98.721975, 40.698284, -98.282359, 41.046674]}, {"id": "31109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.91094, 41.046116], [-96.908507, 41.046091], [-96.463869, 41.045083], [-96.463861, 41.016069], [-96.463764, 40.78396], [-96.463632, 40.523013], [-96.912637, 40.523625], [-96.913493, 40.697948], [-96.911116, 40.697975], [-96.91094, 41.046116]]]}, "bbox": [-96.913493, 40.523013, -96.463632, 41.046116]}, {"id": "31111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-101.269695, 41.394934], [-100.713243, 41.393511], [-100.251098, 41.393298], [-100.236106, 41.393324], [-100.238155, 41.046536], [-100.224235, 41.046597], [-100.223311, 40.700254], [-100.777833, 40.700135], [-101.247963, 40.697802], [-101.249975, 41.00395], [-101.270381, 41.047392], [-101.269695, 41.394934]]]}, "bbox": [-101.270381, 40.697802, -100.223311, 41.394934]}, {"id": "31119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.36807, 41.743207], [-97.830493, 41.742238], [-97.83239, 41.742788], [-97.833288, 41.916286], [-97.834336, 42.088987], [-97.834536, 42.08975], [-97.368404, 42.090922], [-97.36807, 41.743207]]]}, "bbox": [-97.834536, 41.742238, -97.36807, 42.090922]}, {"id": "31141", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.253519, 41.384212], [-97.368186, 41.396416], [-97.598253, 41.333119], [-97.598461, 41.395068], [-97.703765, 41.394876], [-97.703627, 41.526796], [-97.829846, 41.526174], [-97.830493, 41.742238], [-97.36807, 41.743207], [-97.252425, 41.743085], [-97.253519, 41.384212]]]}, "bbox": [-97.830493, 41.333119, -97.252425, 41.743207]}, {"id": "31157", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.05283, 41.697954], [-104.052774, 41.733401], [-104.053026, 41.885464], [-104.052931, 41.906143], [-104.052991, 41.914973], [-104.052734, 41.973007], [-104.052856, 41.975958], [-104.05283, 41.9946], [-104.052761, 41.994967], [-104.052699, 41.998673], [-104.052704, 42.001718], [-103.401639, 42.00354], [-103.390382, 42.003365], [-103.363337, 42.00293], [-103.370391, 41.69921], [-104.05283, 41.697954]]]}, "bbox": [-104.053026, 41.697954, -103.363337, 42.00354]}, {"id": "32003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-115.845805, 36.120242], [-115.845809, 36.121389], [-115.844505, 36.122179], [-115.845795, 36.123963], [-115.845762, 36.170764], [-115.895753, 36.172227], [-115.895368, 36.580168], [-115.896925, 36.842085], [-115.740846, 36.853084], [-114.762507, 36.853473], [-114.762301, 36.843856], [-114.050583, 36.843141], [-114.050578, 36.800173], [-114.050562, 36.656259], [-114.046488, 36.473449], [-114.046403, 36.371873], [-114.048515, 36.289598], [-114.047106, 36.250591], [-114.046838, 36.194069], [-114.060302, 36.189363], [-114.063021, 36.186942], [-114.120193, 36.102228], [-114.125796, 36.077531], [-114.138202, 36.041284], [-114.148774, 36.02731], [-114.15413, 36.023862], [-114.21369, 36.015613], [-114.233289, 36.014289], [-114.238799, 36.014561], [-114.252651, 36.020193], [-114.263146, 36.025937], [-114.292663, 36.051118], [-114.303614, 36.066456], [-114.307235, 36.076544], [-114.310857, 36.083787], [-114.328777, 36.105501], [-114.365835, 36.133722], [-114.381446, 36.141665], [-114.513256, 36.151217], [-114.572031, 36.15161], [-114.631716, 36.142306], [-114.736165, 36.104367], [-114.744857, 36.098693], [-114.755618, 36.087166], [-114.743576, 35.983721], [-114.731296, 35.945157], [-114.70613, 35.878712], [-114.704211, 35.851984], [-114.705611, 35.848884], [-114.70771, 35.811885], [-114.700308, 35.700387], [-114.689407, 35.651412], [-114.676707, 35.640989], [-114.657506, 35.618289], [-114.653406, 35.610789], [-114.653806, 35.59949], [-114.671147, 35.520641], [-114.674981, 35.510564], [-114.676733, 35.499063], [-114.677643, 35.489742], [-114.662125, 35.444241], [-114.652005, 35.429165], [-114.627137, 35.409504], [-114.604314, 35.353584], [-114.595931, 35.325234], [-114.569238, 35.18348], [-114.569569, 35.163053], [-114.572747, 35.138725], [-114.578524, 35.12875], [-114.5843, 35.124999], [-114.59912, 35.12105], [-114.621956, 35.094678], [-114.635469, 35.028266], [-114.633544, 35.015644], [-114.633013, 35.002085], [-114.804249, 35.139689], [-114.80503, 35.140284], [-114.925381, 35.237039], [-114.92548, 35.237054], [-115.145813, 35.413182], [-115.146788, 35.413662], [-115.160068, 35.424129], [-115.160599, 35.424313], [-115.225273, 35.475907], [-115.271342, 35.51266], [-115.303743, 35.538207], [-115.388866, 35.605171], [-115.391535, 35.607271], [-115.393996, 35.609344], [-115.404537, 35.617605], [-115.406079, 35.618613], [-115.647202, 35.808995], [-115.647683, 35.809358], [-115.648029, 35.809629], [-115.689302, 35.842003], [-115.84608, 35.963596], [-115.845805, 36.120242]]]}, "bbox": [-115.896925, 35.002085, -114.046403, 36.853473]}, {"id": "32031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-119.360177, 41.994384], [-119.324182, 41.994278], [-119.323955, 41.414519], [-119.304635, 41.414695], [-119.305713, 41.234542], [-119.331068, 41.235118], [-119.329791, 40.960394], [-119.309598, 40.960378], [-119.313037, 40.518314], [-119.338504, 40.517805], [-119.339296, 39.998609], [-119.225176, 39.999385], [-119.208543, 39.809967], [-119.170899, 39.788288], [-119.189342, 39.65087], [-119.25876, 39.649213], [-119.283637, 39.621561], [-119.279801, 39.627112], [-119.370604, 39.586882], [-119.467141, 39.584502], [-119.582952, 39.547302], [-119.621697, 39.511602], [-119.695643, 39.520023], [-119.685464, 39.389575], [-119.658501, 39.331544], [-119.712645, 39.250871], [-119.880787, 39.165509], [-120.004504, 39.165599], [-120.005746, 39.22521], [-120.005743, 39.228664], [-120.005414, 39.313345], [-120.005413, 39.313848], [-120.00532, 39.31635], [-120.005318, 39.316479], [-120.003117, 39.445045], [-120.003116, 39.445113], [-120.001319, 39.722416], [-120.001319, 39.72242], [-120.000502, 39.779956], [-120.000607, 39.780779], [-119.997291, 40.071803], [-119.997175, 40.077245], [-119.997234, 40.091591], [-119.997124, 40.126363], [-119.996183, 40.262461], [-119.996182, 40.263532], [-119.996155, 40.32125], [-119.996155, 40.321838], [-119.995926, 40.499901], [-119.999231, 40.865899], [-119.999232, 40.867454], [-119.999358, 40.873101], [-119.999866, 41.183974], [-119.999168, 41.99454], [-119.986678, 41.995842], [-119.790087, 41.997544], [-119.360177, 41.994384]]]}, "bbox": [-120.005746, 39.165509, -119.170899, 41.997544]}, {"id": "32510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-120.004504, 39.165599], [-119.880787, 39.165509], [-119.712645, 39.250871], [-119.648977, 39.195287], [-119.56368, 39.195415], [-119.55102, 39.085791], [-119.752116, 39.084904], [-119.761213, 39.114009], [-120.003402, 39.112687], [-120.004504, 39.165599]]]}, "bbox": [-120.004504, 39.084904, -119.55102, 39.250871]}, {"id": "33001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.532369, 43.765028], [-71.460347, 43.709747], [-71.439621, 43.696002], [-71.344184, 43.629327], [-71.163626, 43.53937], [-71.192207, 43.512589], [-71.160134, 43.35586], [-71.235828, 43.284717], [-71.346983, 43.346573], [-71.467375, 43.409391], [-71.544678, 43.450709], [-71.546975, 43.452586], [-71.625673, 43.471047], [-71.629057, 43.478762], [-71.63187, 43.477911], [-71.638686, 43.492715], [-71.653388, 43.488791], [-71.653772, 43.491557], [-71.661875, 43.495793], [-71.66935, 43.497003], [-71.672712, 43.499613], [-71.675939, 43.500227], [-71.678605, 43.503013], [-71.680027, 43.506371], [-71.684002, 43.510545], [-71.688361, 43.513142], [-71.69072, 43.515708], [-71.690664, 43.518337], [-71.689314, 43.530295], [-71.706127, 43.538182], [-71.709851, 43.542018], [-71.710214, 43.54495], [-71.714098, 43.550991], [-71.720682, 43.552632], [-71.727979, 43.559507], [-71.72775, 43.563524], [-71.65091, 43.621228], [-71.648057, 43.686154], [-71.522193, 43.697182], [-71.532369, 43.765028]]]}, "bbox": [-71.727979, 43.284717, -71.160134, 43.765028]}, {"id": "33005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.001034, 42.91951], [-71.928811, 42.712234], [-72.078463, 42.716364], [-72.111068, 42.717264], [-72.282968, 42.722008], [-72.412011, 42.725569], [-72.451257, 42.726653], [-72.458519, 42.726853], [-72.460195, 42.732066], [-72.478453, 42.762296], [-72.491122, 42.772465], [-72.509506, 42.781183], [-72.542784, 42.808482], [-72.555693, 42.85638], [-72.555768, 42.858153], [-72.556112, 42.866252], [-72.556214, 42.86695], [-72.443762, 43.006245], [-72.432661, 43.114077], [-72.433097, 43.120021], [-72.441904, 43.136615], [-72.4521, 43.161414], [-72.156548, 43.181962], [-72.178457, 43.131955], [-72.038149, 43.128807], [-72.062374, 42.944837], [-72.001034, 42.91951]]]}, "bbox": [-72.556214, 42.712234, -71.928811, 43.181962]}, {"id": "33009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.864053, 43.599442], [-71.892145, 43.57466], [-71.93522, 43.528449], [-72.32962, 43.600201], [-72.334745, 43.614519], [-72.334401, 43.61925], [-72.32966, 43.634648], [-72.302867, 43.702718], [-72.27118, 43.734138], [-72.264245, 43.734158], [-72.232713, 43.748286], [-72.205717, 43.771143], [-72.204792, 43.771926], [-72.183743, 43.806644], [-72.182203, 43.834032], [-72.167224, 43.886113], [-72.121002, 43.918956], [-72.104421, 43.950536], [-72.105594, 43.959029], [-72.107042, 43.969513], [-72.113078, 43.97279], [-72.112813, 43.98802], [-72.09071, 44.035211], [-72.054675, 44.112147], [-72.040082, 44.155748], [-72.040082, 44.155749], [-72.042087, 44.157633], [-72.053021, 44.167903], [-72.064285, 44.187888], [-72.067774, 44.270976], [-72.065434, 44.277235], [-72.05888, 44.28624], [-72.012173, 44.321408], [-72.002314, 44.324871], [-71.849465, 44.359295], [-71.816065, 44.366817], [-71.814388, 44.381932], [-71.793924, 44.399271], [-71.764537, 44.406403], [-71.696665, 44.332326], [-71.587113, 44.304786], [-71.575752, 44.254699], [-71.443312, 44.249291], [-71.415801, 44.212082], [-71.361889, 43.915549], [-71.564615, 43.89311], [-71.532369, 43.765028], [-71.522193, 43.697182], [-71.648057, 43.686154], [-71.65091, 43.621228], [-71.72775, 43.563524], [-71.81805, 43.544603], [-71.864053, 43.599442]]]}, "bbox": [-72.334745, 43.528449, -71.361889, 44.406403]}, {"id": "33011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.809658, 43.124485], [-71.733116, 43.139372], [-71.707407, 43.144267], [-71.707482, 43.144505], [-71.704749, 43.145008], [-71.700628, 43.146174], [-71.667826, 43.152588], [-71.641252, 43.054173], [-71.518521, 43.068914], [-71.39221, 43.008984], [-71.391868, 43.007857], [-71.377409, 42.947185], [-71.44181, 42.889586], [-71.360808, 42.798988], [-71.245504, 42.742589], [-71.254532, 42.734136], [-71.294205, 42.69699], [-71.54252, 42.702726], [-71.631814, 42.704788], [-71.636214, 42.704888], [-71.77251, 42.70831], [-71.80545, 42.709137], [-71.898714, 42.711478], [-71.928811, 42.712234], [-72.001034, 42.91951], [-72.062374, 42.944837], [-72.038149, 43.128807], [-72.023403, 43.160151], [-72.036791, 43.182553], [-72.008995, 43.187874], [-71.913255, 43.207263], [-71.856029, 43.115383], [-71.809658, 43.124485]]]}, "bbox": [-72.062374, 42.69699, -71.245504, 43.207263]}, {"id": "33013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.809658, 43.124485], [-71.856029, 43.115383], [-71.913255, 43.207263], [-72.008995, 43.187874], [-72.090028, 43.322567], [-72.053802, 43.441078], [-71.93522, 43.528449], [-71.892145, 43.57466], [-71.864053, 43.599442], [-71.81805, 43.544603], [-71.72775, 43.563524], [-71.727979, 43.559507], [-71.720682, 43.552632], [-71.714098, 43.550991], [-71.710214, 43.54495], [-71.709851, 43.542018], [-71.706127, 43.538182], [-71.689314, 43.530295], [-71.690664, 43.518337], [-71.69072, 43.515708], [-71.688361, 43.513142], [-71.684002, 43.510545], [-71.680027, 43.506371], [-71.678605, 43.503013], [-71.675939, 43.500227], [-71.672712, 43.499613], [-71.66935, 43.497003], [-71.661875, 43.495793], [-71.653772, 43.491557], [-71.653388, 43.488791], [-71.638686, 43.492715], [-71.63187, 43.477911], [-71.629057, 43.478762], [-71.625673, 43.471047], [-71.546975, 43.452586], [-71.544678, 43.450709], [-71.467375, 43.409391], [-71.346983, 43.346573], [-71.235828, 43.284717], [-71.247215, 43.274201], [-71.356182, 43.101971], [-71.39221, 43.008984], [-71.518521, 43.068914], [-71.641252, 43.054173], [-71.667826, 43.152588], [-71.700628, 43.146174], [-71.704749, 43.145008], [-71.707482, 43.144505], [-71.707407, 43.144267], [-71.733116, 43.139372], [-71.809658, 43.124485]]]}, "bbox": [-72.090028, 43.008984, -71.235828, 43.599442]}, {"id": "33015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-70.819549, 43.123231], [-70.784108, 43.098963], [-70.756397, 43.079988], [-70.703936, 43.059621], [-70.718936, 43.03235], [-70.74457, 43.00009], [-70.749024, 42.995467], [-70.759975, 42.988592], [-70.795596, 42.93629], [-70.810069, 42.909549], [-70.81461, 42.891346], [-70.816321, 42.884487], [-70.817296, 42.87229], [-70.848625, 42.860939], [-70.886136, 42.88261], [-70.902768, 42.88653], [-70.914886, 42.886564], [-70.914899, 42.886589], [-70.930799, 42.884589], [-70.931699, 42.884189], [-70.996901, 42.864589], [-71.037901, 42.854089], [-71.058407, 42.847009], [-71.113858, 42.827865], [-71.149703, 42.815489], [-71.165603, 42.808689], [-71.186104, 42.790689], [-71.181803, 42.73759], [-71.208137, 42.743273], [-71.208227, 42.743294], [-71.208302, 42.743314], [-71.245504, 42.742589], [-71.360808, 42.798988], [-71.44181, 42.889586], [-71.377409, 42.947185], [-71.391868, 43.007857], [-71.39221, 43.008984], [-71.356182, 43.101971], [-71.247215, 43.274201], [-71.026688, 43.138086], [-71.072984, 43.081748], [-70.875486, 43.080457], [-70.86103, 43.095602], [-70.861535, 43.125021], [-70.819549, 43.123231]]]}, "bbox": [-71.44181, 42.73759, -70.703936, 43.274201]}, {"id": "33017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.037296, 43.529689], [-70.958958, 43.537634], [-70.962556, 43.53431], [-70.954755, 43.509802], [-70.963742, 43.476248], [-70.964542, 43.473262], [-70.964433, 43.473276], [-70.986812, 43.414264], [-70.987733, 43.391513], [-70.984305, 43.376814], [-70.984335, 43.376128], [-70.967229, 43.343777], [-70.952356, 43.333983], [-70.930783, 43.329569], [-70.916751, 43.317731], [-70.91246, 43.308289], [-70.909805, 43.306682], [-70.86323, 43.265109], [-70.863231, 43.265098], [-70.839213, 43.251224], [-70.839717, 43.250393], [-70.83365, 43.242868], [-70.828022, 43.241597], [-70.826711, 43.241301], [-70.825071, 43.24093], [-70.823309, 43.240343], [-70.822959, 43.240187], [-70.817865, 43.237911], [-70.817773, 43.237408], [-70.816232, 43.234997], [-70.828301, 43.186685], [-70.829174, 43.180365], [-70.8338, 43.146886], [-70.8281, 43.129086], [-70.819549, 43.123231], [-70.861535, 43.125021], [-70.86103, 43.095602], [-70.875486, 43.080457], [-71.072984, 43.081748], [-71.026688, 43.138086], [-71.247215, 43.274201], [-71.235828, 43.284717], [-71.160134, 43.35586], [-71.192207, 43.512589], [-71.163626, 43.53937], [-71.037296, 43.529689]]]}, "bbox": [-71.247215, 43.080457, -70.816232, 43.53937]}, {"id": "34001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.877189, 39.608288], [-74.801051, 39.674102], [-74.736309, 39.729909], [-74.621959, 39.626633], [-74.479558, 39.55597], [-74.417393, 39.557255], [-74.312451, 39.499869], [-74.313689, 39.493874], [-74.308344, 39.483945], [-74.304778, 39.482945], [-74.302184, 39.478935], [-74.304343, 39.471445], [-74.334804, 39.432001], [-74.36699, 39.402017], [-74.406692, 39.377516], [-74.406792, 39.373916], [-74.408237, 39.365071], [-74.412692, 39.360816], [-74.459894, 39.345016], [-74.521797, 39.313816], [-74.541443, 39.300245], [-74.699745, 39.289593], [-74.861073, 39.323768], [-74.855894, 39.424562], [-74.985223, 39.514802], [-74.911566, 39.57862], [-74.877189, 39.608288]]]}, "bbox": [-74.985223, 39.289593, -74.302184, 39.729909]}, {"id": "34003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.213373, 41.133828], [-74.096786, 41.083796], [-74.092486, 41.081896], [-74.041054, 41.059088], [-74.041049, 41.059086], [-73.91188, 41.001297], [-73.90268, 40.997297], [-73.893979, 40.997197], [-73.917905, 40.917577], [-73.919705, 40.913478], [-73.92747, 40.895682], [-73.933406, 40.882078], [-73.933408, 40.882075], [-73.938081, 40.874699], [-73.948281, 40.858399], [-73.986864, 40.798344], [-74.017204, 40.823541], [-74.044977, 40.807702], [-74.147529, 40.786491], [-74.138487, 40.7987], [-74.139825, 40.803147], [-74.136487, 40.8182], [-74.130031, 40.819962], [-74.148059, 40.94159], [-74.148158, 40.942339], [-74.146429, 40.948441], [-74.141048, 40.966348], [-74.17021, 40.983865], [-74.170988, 40.976997], [-74.270521, 41.022131], [-74.213373, 41.133828]]]}, "bbox": [-74.270521, 40.786491, -73.893979, 41.133828]}, {"id": "34005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.900236, 40.077149], [-74.838008, 40.10091], [-74.740605, 40.13521], [-74.724304, 40.14701], [-74.724179, 40.147324], [-74.59477, 40.137875], [-74.593987, 40.137541], [-74.593354, 40.137855], [-74.59265, 40.137818], [-74.592468, 40.138494], [-74.591754, 40.137981], [-74.591221, 40.137913], [-74.589954, 40.138879], [-74.589638, 40.138741], [-74.589614, 40.13819], [-74.589318, 40.138051], [-74.587847, 40.138237], [-74.553105, 40.07913], [-74.528808, 40.036964], [-74.434653, 39.854803], [-74.389905, 39.773428], [-74.390399, 39.596037], [-74.417393, 39.557255], [-74.479558, 39.55597], [-74.621959, 39.626633], [-74.736309, 39.729909], [-74.758064, 39.743695], [-74.772894, 39.750929], [-74.791478, 39.772119], [-74.812471, 39.785269], [-74.845183, 39.79], [-74.876499, 39.781647], [-74.889062, 39.781804], [-74.902546, 39.790797], [-74.903267, 39.791247], [-74.926935, 39.873839], [-74.932174, 39.887532], [-74.951823, 39.90147], [-74.964146, 39.920683], [-74.983717, 39.92694], [-74.984549, 39.931238], [-74.974879, 39.938382], [-74.988925, 39.94105], [-74.994442, 39.939266], [-75.014966, 39.946546], [-75.01345, 39.954188], [-75.013114, 39.956433], [-75.017537, 39.959087], [-75.016653, 39.960623], [-75.017468, 39.963509], [-75.018723, 39.963664], [-75.019212, 39.967462], [-75.010146, 39.979768], [-75.035461, 39.995951], [-75.056039, 39.991795], [-75.014343, 40.020976], [-74.974713, 40.048711], [-74.97429, 40.048872], [-74.900236, 40.077149]]]}, "bbox": [-75.056039, 39.55597, -74.389905, 40.147324]}, {"id": "34007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.13322, 39.922512], [-75.085754, 39.967572], [-75.072017, 39.980612], [-75.056039, 39.991795], [-75.035461, 39.995951], [-75.010146, 39.979768], [-75.019212, 39.967462], [-75.018723, 39.963664], [-75.017468, 39.963509], [-75.016653, 39.960623], [-75.017537, 39.959087], [-75.013114, 39.956433], [-75.01345, 39.954188], [-75.014966, 39.946546], [-74.994442, 39.939266], [-74.988925, 39.94105], [-74.974879, 39.938382], [-74.984549, 39.931238], [-74.983717, 39.92694], [-74.964146, 39.920683], [-74.951823, 39.90147], [-74.932174, 39.887532], [-74.926935, 39.873839], [-74.903267, 39.791247], [-74.902546, 39.790797], [-74.889062, 39.781804], [-74.876499, 39.781647], [-74.845183, 39.79], [-74.812471, 39.785269], [-74.791478, 39.772119], [-74.772894, 39.750929], [-74.758064, 39.743695], [-74.736309, 39.729909], [-74.801051, 39.674102], [-74.877189, 39.608288], [-74.930585, 39.69085], [-75.08707, 39.779576], [-75.153925, 39.906144], [-75.13322, 39.922512]]]}, "bbox": [-75.153925, 39.608288, -74.736309, 39.995951]}, {"id": "34009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.914936, 39.177553], [-74.861073, 39.323768], [-74.699745, 39.289593], [-74.541443, 39.300245], [-74.551151, 39.293539], [-74.553439, 39.286915], [-74.560957, 39.278677], [-74.581008, 39.270819], [-74.597921, 39.258851], [-74.614481, 39.244659], [-74.636306, 39.220834], [-74.646595, 39.212002], [-74.651443, 39.198578], [-74.67143, 39.179802], [-74.714341, 39.119804], [-74.71532, 39.116893], [-74.714135, 39.114631], [-74.704409, 39.107858], [-74.705876, 39.102937], [-74.738316, 39.074727], [-74.778777, 39.023073], [-74.786356, 39.000113], [-74.792723, 38.991991], [-74.807917, 38.985948], [-74.819354, 38.979402], [-74.850748, 38.954538], [-74.864458, 38.94041], [-74.865198, 38.941439], [-74.870497, 38.943543], [-74.882309, 38.941759], [-74.90705, 38.931994], [-74.920414, 38.929136], [-74.933571, 38.928519], [-74.963463, 38.931194], [-74.967274, 38.933413], [-74.971995, 38.94037], [-74.955363, 39.001262], [-74.94947, 39.015637], [-74.93832, 39.035185], [-74.903664, 39.087437], [-74.897784, 39.098811], [-74.892547, 39.113183], [-74.885914, 39.143627], [-74.887167, 39.158825], [-74.905181, 39.174945], [-74.914936, 39.177553]]]}, "bbox": [-74.971995, 38.928519, -74.541443, 39.323768]}, {"id": "34011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.407294, 39.381954], [-75.368213, 39.456479], [-75.239529, 39.559188], [-75.084187, 39.45796], [-75.061973, 39.568643], [-74.985223, 39.514802], [-74.855894, 39.424562], [-74.861073, 39.323768], [-74.914936, 39.177553], [-74.962382, 39.190238], [-74.976266, 39.192271], [-74.998002, 39.191253], [-75.026179, 39.193621], [-75.028885, 39.19456], [-75.027824, 39.199482], [-75.023586, 39.202594], [-75.023437, 39.204791], [-75.026376, 39.20985], [-75.035672, 39.215415], [-75.041663, 39.215511], [-75.047797, 39.211702], [-75.052326, 39.213609], [-75.062506, 39.213564], [-75.086395, 39.208159], [-75.101019, 39.211657], [-75.107286, 39.211403], [-75.114748, 39.207554], [-75.12707, 39.189766], [-75.136548, 39.179425], [-75.139136, 39.180021], [-75.165979, 39.201842], [-75.164798, 39.216606], [-75.170444, 39.234643], [-75.177506, 39.242746], [-75.205857, 39.262619], [-75.21251, 39.262755], [-75.241639, 39.274097], [-75.244056, 39.27769], [-75.242881, 39.280574], [-75.244357, 39.2857], [-75.251806, 39.299913], [-75.271629, 39.304041], [-75.28262, 39.299055], [-75.285333, 39.292212], [-75.288898, 39.289557], [-75.30601, 39.301712], [-75.315201, 39.310593], [-75.326754, 39.332473], [-75.327463, 39.33927], [-75.333743, 39.345335], [-75.341969, 39.348697], [-75.355558, 39.347823], [-75.365016, 39.341388], [-75.39003, 39.358259], [-75.394331, 39.363753], [-75.395181, 39.371398], [-75.399304, 39.37949], [-75.407294, 39.381954]]]}, "bbox": [-75.407294, 39.177553, -74.855894, 39.568643]}, {"id": "34013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.164799, 40.754718], [-74.165987, 40.745199], [-74.161958, 40.736007], [-74.116993, 40.737125], [-74.117057, 40.710381], [-74.112787, 40.703102], [-74.122911, 40.691172], [-74.136703, 40.674444], [-74.201589, 40.686602], [-74.222452, 40.707249], [-74.28587, 40.722225], [-74.30123, 40.713472], [-74.302092, 40.713301], [-74.302695, 40.713601], [-74.303691, 40.7133], [-74.305393, 40.713701], [-74.306991, 40.714002], [-74.307589, 40.714201], [-74.308793, 40.714508], [-74.309388, 40.714901], [-74.309791, 40.715501], [-74.311691, 40.715601], [-74.312794, 40.717101], [-74.313793, 40.718001], [-74.315293, 40.718601], [-74.315991, 40.719199], [-74.318992, 40.719201], [-74.321408, 40.719072], [-74.325596, 40.717075], [-74.342682, 40.725181], [-74.354942, 40.7345], [-74.371923, 40.739229], [-74.334316, 40.905302], [-74.270702, 40.89692], [-74.259813, 40.883769], [-74.246691, 40.880799], [-74.130031, 40.819962], [-74.136487, 40.8182], [-74.139825, 40.803147], [-74.138487, 40.7987], [-74.147529, 40.786491], [-74.147859, 40.784683], [-74.148266, 40.779876], [-74.155798, 40.770815], [-74.157688, 40.7661], [-74.163388, 40.759401], [-74.164799, 40.754718]]]}, "bbox": [-74.371923, 40.674444, -74.112787, 40.905302]}, {"id": "34015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.210972, 39.865706], [-75.210425, 39.865913], [-75.184952, 39.881615], [-75.153925, 39.906144], [-75.08707, 39.779576], [-74.930585, 39.69085], [-74.877189, 39.608288], [-74.911566, 39.57862], [-74.985223, 39.514802], [-75.061973, 39.568643], [-75.199706, 39.666912], [-75.326452, 39.689992], [-75.378232, 39.745763], [-75.440623, 39.780926], [-75.437938, 39.783413], [-75.416095, 39.79583], [-75.415041, 39.801786], [-75.390169, 39.816549], [-75.374635, 39.82577], [-75.3065, 39.849812], [-75.271159, 39.84944], [-75.235026, 39.856613], [-75.210972, 39.865706]]]}, "bbox": [-75.440623, 39.514802, -74.877189, 39.906144]}, {"id": "34017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.986864, 40.798344], [-73.993029, 40.788746], [-74.000905, 40.776488], [-74.009184, 40.763601], [-74.013784, 40.756601], [-74.024543, 40.709436], [-74.038538, 40.710741], [-74.051185, 40.695802], [-74.069885, 40.684502], [-74.082786, 40.673702], [-74.089986, 40.659903], [-74.087397, 40.653607], [-74.094086, 40.649703], [-74.143387, 40.641903], [-74.161397, 40.644092], [-74.160288, 40.645903], [-74.153041, 40.6548], [-74.136703, 40.674444], [-74.122911, 40.691172], [-74.112787, 40.703102], [-74.117057, 40.710381], [-74.116993, 40.737125], [-74.161958, 40.736007], [-74.165987, 40.745199], [-74.164799, 40.754718], [-74.163388, 40.759401], [-74.157688, 40.7661], [-74.155798, 40.770815], [-74.148266, 40.779876], [-74.147859, 40.784683], [-74.147529, 40.786491], [-74.044977, 40.807702], [-74.017204, 40.823541], [-73.986864, 40.798344]]]}, "bbox": [-74.165987, 40.641903, -73.986864, 40.823541]}, {"id": "34019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.724418, 40.719455], [-74.71315, 40.583903], [-74.782513, 40.487775], [-74.748147, 40.424156], [-74.856262, 40.346695], [-74.937954, 40.340634], [-75.024775, 40.403455], [-75.035548, 40.406309], [-75.058848, 40.418065], [-75.061489, 40.422848], [-75.070568, 40.455165], [-75.065853, 40.519495], [-75.06509, 40.526148], [-75.067344, 40.536428], [-75.068615, 40.542223], [-75.100325, 40.567811], [-75.117292, 40.573211], [-75.135389, 40.575624], [-75.147368, 40.573152], [-75.190161, 40.589321], [-75.190858, 40.591342], [-74.968454, 40.710791], [-74.889753, 40.787832], [-74.724418, 40.719455]]]}, "bbox": [-75.190858, 40.340634, -74.71315, 40.787832]}, {"id": "34021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.724179, 40.147324], [-74.721604, 40.15381], [-74.722304, 40.160609], [-74.758613, 40.201342], [-74.770706, 40.214908], [-74.860492, 40.284584], [-74.937954, 40.340634], [-74.856262, 40.346695], [-74.748147, 40.424156], [-74.722156, 40.375146], [-74.622744, 40.384421], [-74.617525, 40.377862], [-74.619591, 40.374397], [-74.572559, 40.301054], [-74.484287, 40.253299], [-74.587847, 40.138237], [-74.589318, 40.138051], [-74.589614, 40.13819], [-74.589638, 40.138741], [-74.589954, 40.138879], [-74.591221, 40.137913], [-74.591754, 40.137981], [-74.592468, 40.138494], [-74.59265, 40.137818], [-74.593354, 40.137855], [-74.593987, 40.137541], [-74.59477, 40.137875], [-74.724179, 40.147324]]]}, "bbox": [-74.937954, 40.137541, -74.484287, 40.424156]}, {"id": "34023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.490547, 40.523048], [-74.495398, 40.529403], [-74.499362, 40.531951], [-74.503309, 40.534119], [-74.512729, 40.540541], [-74.514622, 40.542711], [-74.515782, 40.544955], [-74.463351, 40.599245], [-74.4568, 40.5955], [-74.437334, 40.597188], [-74.424699, 40.598513], [-74.416106, 40.59891], [-74.399895, 40.600603], [-74.394634, 40.600901], [-74.372794, 40.602303], [-74.303392, 40.608903], [-74.291391, 40.591903], [-74.258114, 40.60225], [-74.255822, 40.602194], [-74.25381, 40.600989], [-74.24779, 40.600103], [-74.231748, 40.598881], [-74.215101, 40.604074], [-74.206731, 40.594569], [-74.208988, 40.576304], [-74.214788, 40.560604], [-74.218189, 40.557204], [-74.231589, 40.559204], [-74.248641, 40.549601], [-74.251441, 40.542301], [-74.246237, 40.520963], [-74.26829, 40.499205], [-74.269998, 40.495014], [-74.27269, 40.488405], [-74.26759, 40.471806], [-74.261889, 40.464706], [-74.236689, 40.457806], [-74.225035, 40.453301], [-74.360699, 40.318386], [-74.37859, 40.304116], [-74.381135, 40.301546], [-74.394112, 40.288463], [-74.393517, 40.279574], [-74.408085, 40.273791], [-74.460776, 40.251358], [-74.484287, 40.253299], [-74.572559, 40.301054], [-74.619591, 40.374397], [-74.494275, 40.469807], [-74.493226, 40.47077], [-74.489524, 40.474415], [-74.459922, 40.491015], [-74.490547, 40.523048]]]}, "bbox": [-74.619591, 40.251358, -74.206731, 40.608903]}, {"id": "34025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.408085, 40.273791], [-74.393517, 40.279574], [-74.394112, 40.288463], [-74.381135, 40.301546], [-74.37859, 40.304116], [-74.360699, 40.318386], [-74.225035, 40.453301], [-74.224047, 40.452919], [-74.222959, 40.452499], [-74.209788, 40.447407], [-74.206188, 40.440707], [-74.206419, 40.438789], [-74.208655, 40.43752], [-74.207205, 40.435434], [-74.202128, 40.43894], [-74.193908, 40.440995], [-74.191309, 40.44299], [-74.187787, 40.447407], [-74.174787, 40.455607], [-74.174893, 40.454491], [-74.175074, 40.449144], [-74.176842, 40.44774], [-74.175346, 40.446607], [-74.169977, 40.45064], [-74.167009, 40.448737], [-74.166193, 40.447128], [-74.164029, 40.448312], [-74.163314, 40.448424], [-74.157787, 40.446607], [-74.153611, 40.447647], [-74.152686, 40.447344], [-74.151952, 40.448062], [-74.142886, 40.450407], [-74.139886, 40.453407], [-74.138415, 40.454468], [-74.135823, 40.455196], [-74.133727, 40.454672], [-74.131135, 40.453245], [-74.127466, 40.451061], [-74.124692, 40.44958], [-74.122327, 40.448258], [-74.116863, 40.446069], [-74.088085, 40.438407], [-74.076185, 40.433707], [-74.058984, 40.422708], [-74.047884, 40.418908], [-74.006383, 40.411108], [-73.998505, 40.410911], [-73.995486, 40.419472], [-73.991682, 40.442908], [-74.006077, 40.464625], [-74.017783, 40.472207], [-74.017917, 40.474338], [-74.014031, 40.476471], [-74.0071, 40.475298], [-73.995683, 40.468707], [-73.978282, 40.440208], [-73.976982, 40.408508], [-73.971381, 40.371709], [-73.971381, 40.34801], [-73.977442, 40.299373], [-73.981681, 40.279411], [-73.993292, 40.237669], [-74.016017, 40.166914], [-74.030181, 40.122814], [-74.03408, 40.103115], [-74.031861, 40.101047], [-74.10803, 40.136873], [-74.224411, 40.108982], [-74.263763, 40.168264], [-74.406777, 40.172355], [-74.553105, 40.07913], [-74.587847, 40.138237], [-74.484287, 40.253299], [-74.460776, 40.251358], [-74.408085, 40.273791]]]}, "bbox": [-74.587847, 40.07913, -73.971381, 40.476471]}, {"id": "34027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.767874, 40.911823], [-74.65303, 40.921623], [-74.536002, 41.058497], [-74.504928, 41.084805], [-74.502892, 41.085904], [-74.334605, 41.003719], [-74.315226, 41.001991], [-74.309838, 40.998484], [-74.300327, 41.002743], [-74.270702, 40.89692], [-74.334316, 40.905302], [-74.371923, 40.739229], [-74.461231, 40.673397], [-74.47002, 40.667934], [-74.484289, 40.666065], [-74.484118, 40.663387], [-74.503863, 40.659627], [-74.510502, 40.650295], [-74.523627, 40.649702], [-74.534387, 40.667256], [-74.513608, 40.697339], [-74.526846, 40.710872], [-74.528827, 40.728133], [-74.548999, 40.740994], [-74.555771, 40.758005], [-74.724418, 40.719455], [-74.889753, 40.787832], [-74.767874, 40.911823]]]}, "bbox": [-74.889753, 40.649702, -74.270702, 41.085904]}, {"id": "34029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.417393, 39.557255], [-74.390399, 39.596037], [-74.389905, 39.773428], [-74.434653, 39.854803], [-74.528808, 40.036964], [-74.553105, 40.07913], [-74.406777, 40.172355], [-74.263763, 40.168264], [-74.224411, 40.108982], [-74.10803, 40.136873], [-74.031861, 40.101047], [-74.031318, 40.100541], [-74.033546, 40.099518], [-74.039421, 40.081437], [-74.058798, 40.001244], [-74.064135, 39.979157], [-74.077247, 39.910991], [-74.090945, 39.799978], [-74.097071, 39.767847], [-74.096906, 39.76303], [-74.09892, 39.759538], [-74.101443, 39.756173], [-74.113655, 39.740719], [-74.141733, 39.689435], [-74.190974, 39.625118], [-74.240506, 39.554911], [-74.249043, 39.547994], [-74.27737, 39.514064], [-74.291585, 39.507705], [-74.311037, 39.506715], [-74.312451, 39.499869], [-74.417393, 39.557255]]]}, "bbox": [-74.553105, 39.499869, -74.031318, 40.172355]}, {"id": "34031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.234473, 41.142883], [-74.213373, 41.133828], [-74.270521, 41.022131], [-74.170988, 40.976997], [-74.17021, 40.983865], [-74.141048, 40.966348], [-74.146429, 40.948441], [-74.148158, 40.942339], [-74.148059, 40.94159], [-74.130031, 40.819962], [-74.246691, 40.880799], [-74.259813, 40.883769], [-74.270702, 40.89692], [-74.300327, 41.002743], [-74.309838, 40.998484], [-74.315226, 41.001991], [-74.334605, 41.003719], [-74.502892, 41.085904], [-74.365897, 41.202894], [-74.365664, 41.2034], [-74.234473, 41.142883]]]}, "bbox": [-74.502892, 40.819962, -74.130031, 41.2034]}, {"id": "34035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.782513, 40.487775], [-74.71315, 40.583903], [-74.724418, 40.719455], [-74.555771, 40.758005], [-74.548999, 40.740994], [-74.528827, 40.728133], [-74.526846, 40.710872], [-74.513608, 40.697339], [-74.534387, 40.667256], [-74.523627, 40.649702], [-74.510502, 40.650295], [-74.503863, 40.659627], [-74.484118, 40.663387], [-74.484289, 40.666065], [-74.47002, 40.667934], [-74.461231, 40.673397], [-74.408264, 40.644185], [-74.417038, 40.628077], [-74.43804, 40.60991], [-74.463351, 40.599245], [-74.515782, 40.544955], [-74.514622, 40.542711], [-74.512729, 40.540541], [-74.503309, 40.534119], [-74.499362, 40.531951], [-74.495398, 40.529403], [-74.490547, 40.523048], [-74.459922, 40.491015], [-74.489524, 40.474415], [-74.493226, 40.47077], [-74.494275, 40.469807], [-74.619591, 40.374397], [-74.617525, 40.377862], [-74.622744, 40.384421], [-74.722156, 40.375146], [-74.748147, 40.424156], [-74.782513, 40.487775]]]}, "bbox": [-74.782513, 40.374397, -74.408264, 40.758005]}, {"id": "34037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.969434, 41.096074], [-74.974338, 41.103912], [-74.923169, 41.138146], [-74.882139, 41.180836], [-74.867287, 41.208754], [-74.864356, 41.224854], [-74.867267, 41.228861], [-74.861678, 41.241575], [-74.838366, 41.277286], [-74.830057, 41.2872], [-74.795847, 41.318951], [-74.76173, 41.336398], [-74.694914, 41.357423], [-74.457584, 41.248225], [-74.392098, 41.215594], [-74.365664, 41.2034], [-74.365897, 41.202894], [-74.502892, 41.085904], [-74.504928, 41.084805], [-74.536002, 41.058497], [-74.65303, 40.921623], [-74.767874, 40.911823], [-74.78921, 40.931298], [-74.966349, 41.094003], [-74.967389, 41.094049], [-74.969434, 41.096074]]]}, "bbox": [-74.974338, 40.911823, -74.365664, 41.357423]}, {"id": "34039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.206731, 40.594569], [-74.215101, 40.604074], [-74.231748, 40.598881], [-74.24779, 40.600103], [-74.25381, 40.600989], [-74.255822, 40.602194], [-74.258114, 40.60225], [-74.291391, 40.591903], [-74.303392, 40.608903], [-74.372794, 40.602303], [-74.394634, 40.600901], [-74.399895, 40.600603], [-74.416106, 40.59891], [-74.424699, 40.598513], [-74.437334, 40.597188], [-74.4568, 40.5955], [-74.463351, 40.599245], [-74.43804, 40.60991], [-74.417038, 40.628077], [-74.408264, 40.644185], [-74.461231, 40.673397], [-74.371923, 40.739229], [-74.354942, 40.7345], [-74.342682, 40.725181], [-74.325596, 40.717075], [-74.321408, 40.719072], [-74.318992, 40.719201], [-74.315991, 40.719199], [-74.315293, 40.718601], [-74.313793, 40.718001], [-74.312794, 40.717101], [-74.311691, 40.715601], [-74.309791, 40.715501], [-74.309388, 40.714901], [-74.308793, 40.714508], [-74.307589, 40.714201], [-74.306991, 40.714002], [-74.305393, 40.713701], [-74.303691, 40.7133], [-74.302695, 40.713601], [-74.302092, 40.713301], [-74.30123, 40.713472], [-74.28587, 40.722225], [-74.222452, 40.707249], [-74.201589, 40.686602], [-74.136703, 40.674444], [-74.153041, 40.6548], [-74.160288, 40.645903], [-74.161397, 40.644092], [-74.181083, 40.646484], [-74.186027, 40.646076], [-74.189106, 40.643832], [-74.202223, 40.631053], [-74.206731, 40.594569]]]}, "bbox": [-74.463351, 40.591903, -74.136703, 40.739229]}, {"id": "34041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.980674, 41.078178], [-74.968389, 41.087797], [-74.966759, 41.093425], [-74.967389, 41.094049], [-74.966349, 41.094003], [-74.78921, 40.931298], [-74.767874, 40.911823], [-74.889753, 40.787832], [-74.968454, 40.710791], [-75.190858, 40.591342], [-75.196803, 40.60858], [-75.200708, 40.618356], [-75.20392, 40.691498], [-75.196533, 40.751631], [-75.171587, 40.777745], [-75.16365, 40.778386], [-75.149378, 40.774786], [-75.1344, 40.773765], [-75.108505, 40.791094], [-75.053294, 40.8599], [-75.051029, 40.865662], [-75.052538, 40.872051], [-75.117764, 40.953023], [-75.119893, 40.961646], [-75.120316, 40.96263], [-75.120435, 40.968302], [-75.120564, 40.968313], [-75.131364, 40.969277], [-75.135526, 40.973807], [-75.130575, 40.991093], [-75.109114, 41.004102], [-75.091377, 41.012283], [-75.069277, 41.019348], [-75.051794, 41.027142], [-75.036982, 41.034702], [-75.026003, 41.042687], [-74.980674, 41.078178]]]}, "bbox": [-75.20392, 40.591342, -74.767874, 41.094049]}, {"id": "35001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-106.414475, 34.892225], [-106.685889, 34.90615], [-106.720666, 34.870053], [-107.024784, 34.870254], [-107.066694, 34.957189], [-107.19617, 35.219323], [-106.962038, 35.218392], [-106.763162, 35.218141], [-106.729852, 35.218073], [-106.598652, 35.217939], [-106.244827, 35.215204], [-106.243683, 35.041219], [-106.243866, 35.040088], [-106.243866, 34.953293], [-106.150155, 34.953449], [-106.149575, 34.870142], [-106.410977, 34.870254], [-106.410974, 34.889494], [-106.414475, 34.892225]]]}, "bbox": [-107.19617, 34.870053, -106.149575, 35.219323]}, {"id": "35013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-106.377174, 32.00149], [-106.394298, 32.001484], [-106.411075, 32.001334], [-106.565142, 32.000736], [-106.566056, 32.000759], [-106.587972, 32.000749], [-106.595333, 32.000778], [-106.598639, 32.000754], [-106.599096, 32.000731], [-106.614702, 31.956], [-106.616136, 31.948439], [-106.627808, 31.860593], [-106.625763, 31.856276], [-106.621857, 31.852854], [-106.614637, 31.84649], [-106.605845, 31.846305], [-106.605245, 31.845905], [-106.566844, 31.813306], [-106.563444, 31.812606], [-106.545344, 31.805007], [-106.544714, 31.804287], [-106.542144, 31.802107], [-106.542097, 31.802146], [-106.535843, 31.798607], [-106.535343, 31.797507], [-106.535154, 31.797089], [-106.534743, 31.796107], [-106.533043, 31.791907], [-106.533, 31.791829], [-106.53248, 31.791914], [-106.530515, 31.792103], [-106.527943, 31.790507], [-106.527738, 31.789761], [-106.527623, 31.789119], [-106.527997, 31.786945], [-106.528543, 31.784407], [-106.528543, 31.783907], [-106.750547, 31.783706], [-106.750547, 31.783898], [-106.993544, 31.783689], [-106.998235, 31.783671], [-107.00056, 31.783679], [-107.00056, 31.783513], [-107.296824, 31.783762], [-107.299463, 32.605534], [-107.299371, 32.780603], [-106.887733, 32.779311], [-106.887859, 32.822844], [-106.340473, 33.052795], [-106.340731, 32.95825], [-106.376614, 32.957941], [-106.377174, 32.00149]]]}, "bbox": [-107.299463, 31.783513, -106.340473, 33.052795]}, {"id": "35017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-107.608283, 32.605382], [-107.92349, 32.60438], [-107.923489, 32.517283], [-108.229259, 32.516996], [-108.217194, 31.864096], [-108.524702, 31.863694], [-108.524586, 32.079732], [-108.538135, 32.079836], [-108.537035, 32.516751], [-108.647155, 32.516897], [-108.646373, 32.603582], [-108.853075, 32.603627], [-108.854381, 32.777276], [-109.047117, 32.777569], [-109.047117, 32.77757], [-109.04748, 33.06842], [-109.047453, 33.069427], [-109.046905, 33.091931], [-109.047013, 33.092917], [-109.047117, 33.137559], [-109.047116, 33.137995], [-109.047237, 33.208965], [-108.449988, 33.200997], [-108.000597, 33.201563], [-107.858292, 33.200879], [-107.836192, 33.067763], [-107.856672, 33.002539], [-107.780548, 32.952776], [-107.773088, 32.853775], [-107.716186, 32.762676], [-107.736949, 32.629494], [-107.608283, 32.605382]]]}, "bbox": [-109.04748, 31.863694, -107.608283, 33.208965]}, {"id": "35028", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-106.24825, 35.755739], [-106.4007, 35.807567], [-106.399644, 35.960055], [-106.247949, 35.966335], [-106.248096, 35.959386], [-106.245466, 35.959346], [-106.245439, 35.93093], [-106.248257, 35.839178], [-106.171656, 35.828176], [-106.24825, 35.755739]]]}, "bbox": [-106.4007, 35.755739, -106.171656, 35.966335]}, {"id": "35031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-108.468585, 35.299239], [-108.469264, 34.958972], [-109.045851, 34.959718], [-109.046082, 35.174665], [-109.046481, 35.546326], [-109.046509, 35.54644], [-109.046296, 35.614251], [-109.046295, 35.616517], [-109.046024, 35.8798], [-109.046055, 35.888721], [-109.046054, 35.92586], [-109.046011, 35.925896], [-109.045973, 36.002338], [-107.62651, 36.00032], [-107.308212, 35.99869], [-107.306591, 35.41853], [-107.309634, 35.419011], [-107.310041, 35.305192], [-107.628344, 35.304766], [-107.62821, 35.348333], [-107.734079, 35.348332], [-107.734212, 35.304934], [-108.468586, 35.306755], [-108.468585, 35.299239]]]}, "bbox": [-109.046509, 34.958972, -107.306591, 36.002338]}, {"id": "35045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-107.62425, 36.219799], [-107.62651, 36.00032], [-109.045973, 36.002338], [-109.045433, 36.874589], [-109.045407, 36.874998], [-109.045272, 36.968871], [-109.045244, 36.969489], [-109.045223, 36.999084], [-108.958868, 36.998913], [-108.954404, 36.998906], [-108.620309, 36.999287], [-108.619689, 36.999249], [-108.379203, 36.999459], [-108.320721, 36.99951], [-108.320464, 36.999499], [-108.2884, 36.99952], [-108.288086, 36.999555], [-107.481737, 36.999973], [-107.420915, 37.000005], [-107.451445, 36.904036], [-107.605517, 36.798039], [-107.618348, 36.804739], [-107.62425, 36.219799]]]}, "bbox": [-109.045973, 36.00032, -107.420915, 37.000005]}, {"id": "35049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-106.194229, 35.040274], [-106.243866, 35.040088], [-106.243683, 35.041219], [-106.244827, 35.215204], [-106.245061, 35.228292], [-106.245514, 35.229722], [-106.24516, 35.23182], [-106.245676, 35.238458], [-106.248491, 35.443199], [-106.24825, 35.755739], [-106.171656, 35.828176], [-106.248257, 35.839178], [-106.245439, 35.93093], [-106.054128, 35.930783], [-106.071394, 36.002028], [-105.71675, 36.002356], [-105.717374, 35.97876], [-105.72054, 35.875028], [-105.72028, 35.871015], [-105.714475, 35.041562], [-106.194229, 35.040274]]]}, "bbox": [-106.248491, 35.040088, -105.714475, 36.002356]}, {"id": "36001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.809369, 42.778869], [-73.722663, 42.820677], [-73.719863, 42.801277], [-73.688362, 42.775477], [-73.676762, 42.783277], [-73.761265, 42.610379], [-73.773161, 42.509377], [-73.784594, 42.489947], [-73.783721, 42.464231], [-74.254303, 42.408207], [-74.241572, 42.550802], [-74.169725, 42.667426], [-74.180274, 42.729979], [-73.809603, 42.775016], [-73.809369, 42.778869]]]}, "bbox": [-74.254303, 42.408207, -73.676762, 42.820677]}, {"id": "36005", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-73.773361, 40.859449], [-73.770552, 40.86033], [-73.766333, 40.857317], [-73.765128, 40.854228], [-73.766032, 40.844961], [-73.769648, 40.84466], [-73.773038, 40.848125], [-73.773717, 40.854831], [-73.773361, 40.859449]]], [[[-73.785964, 40.800862], [-73.793403, 40.799881], [-73.811001, 40.805077], [-73.830548, 40.803162], [-73.862704, 40.797276], [-73.866707, 40.793653], [-73.870992, 40.786979], [-73.884867, 40.786621], [-73.889918, 40.787398], [-73.890586, 40.790145], [-73.892205, 40.79038], [-73.899809, 40.792524], [-73.912506, 40.79618], [-73.907, 40.873455], [-73.907105, 40.876277], [-73.911405, 40.879278], [-73.9152, 40.875581], [-73.933408, 40.882075], [-73.933406, 40.882078], [-73.92747, 40.895682], [-73.919705, 40.913478], [-73.917905, 40.917577], [-73.824047, 40.889866], [-73.823557, 40.889865], [-73.823617, 40.890413], [-73.82312, 40.890648], [-73.823244, 40.891199], [-73.806395, 40.886801], [-73.804789, 40.886505], [-73.783545, 40.88104], [-73.784803, 40.878528], [-73.785502, 40.869079], [-73.788786, 40.858485], [-73.78806, 40.854131], [-73.784754, 40.851793], [-73.782174, 40.847358], [-73.782093, 40.844616], [-73.782254, 40.842359], [-73.781206, 40.838891], [-73.782577, 40.837601], [-73.783867, 40.836795], [-73.785399, 40.838004], [-73.788221, 40.842036], [-73.791044, 40.846552], [-73.789512, 40.85139], [-73.792253, 40.855825], [-73.793785, 40.855583], [-73.797252, 40.852196], [-73.799543, 40.848027], [-73.806914, 40.849501], [-73.81281, 40.846737], [-73.815574, 40.835129], [-73.815205, 40.831075], [-73.811889, 40.825363], [-73.804518, 40.818546], [-73.797332, 40.815597], [-73.785964, 40.800862]]]]}, "bbox": [-73.933408, 40.786621, -73.765128, 40.917577]}, {"id": "36007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.359579, 41.999445], [-75.431961, 41.999363], [-75.436216, 41.999353], [-75.477144, 41.999407], [-75.48315, 41.999259], [-75.483738, 41.999244], [-75.98025, 41.999035], [-75.983082, 41.999035], [-76.10584, 41.998858], [-76.111106, 42.112436], [-76.114033, 42.153418], [-76.081134, 42.230495], [-76.130181, 42.410337], [-75.86402, 42.415702], [-75.843792, 42.259707], [-75.638299, 42.248686], [-75.63711, 42.195628], [-75.532776, 42.195241], [-75.419907, 42.194918], [-75.418421, 42.195032], [-75.418544, 42.189504], [-75.418807, 42.188104], [-75.418689, 42.188022], [-75.418438, 42.186797], [-75.418827, 42.180702], [-75.419664, 42.150436], [-75.421776, 42.04203], [-75.359579, 41.999445]]]}, "bbox": [-76.130181, 41.998858, -75.359579, 42.415702]}, {"id": "36009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.918854, 41.997961], [-79.052473, 41.999179], [-79.061265, 41.999259], [-79.060777, 42.537853], [-78.991702, 42.529249], [-78.920446, 42.442556], [-78.695937, 42.47194], [-78.46394, 42.536332], [-78.464556, 42.519166], [-78.308839, 42.521217], [-78.308128, 41.999415], [-78.59665, 41.999877], [-78.874759, 41.997559], [-78.918854, 41.997961]]]}, "bbox": [-79.061265, 41.997559, -78.308128, 42.537853]}, {"id": "36013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.610839, 41.998989], [-79.625301, 41.999068], [-79.625287, 41.999003], [-79.761374, 41.999067], [-79.762122, 42.131246], [-79.761861, 42.150712], [-79.761759, 42.162675], [-79.761921, 42.173319], [-79.761929, 42.179693], [-79.761833, 42.183627], [-79.762152, 42.243054], [-79.761964, 42.251354], [-79.761951, 42.26986], [-79.717825, 42.284711], [-79.645358, 42.315631], [-79.593992, 42.341641], [-79.546262, 42.363417], [-79.510999, 42.382373], [-79.474794, 42.404291], [-79.453533, 42.411157], [-79.429119, 42.42838], [-79.405458, 42.453281], [-79.381943, 42.466491], [-79.36213, 42.480195], [-79.351989, 42.48892], [-79.342316, 42.489664], [-79.335129, 42.488321], [-79.331483, 42.489076], [-79.323079, 42.494795], [-79.31774, 42.499884], [-79.283364, 42.511228], [-79.264624, 42.523159], [-79.242889, 42.531757], [-79.223195, 42.536087], [-79.193232, 42.545881], [-79.148723, 42.553672], [-79.138569, 42.564462], [-79.136725, 42.569693], [-79.060777, 42.537853], [-79.061265, 41.999259], [-79.538445, 41.998527], [-79.551385, 41.998666], [-79.610839, 41.998989]]]}, "bbox": [-79.762152, 41.998527, -79.060777, 42.569693]}, {"id": "36015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.927084, 42.001674], [-76.937084, 42.001674], [-76.942585, 42.001574], [-76.965686, 42.001274], [-76.965728, 42.001274], [-76.965028, 42.278495], [-76.733912, 42.29372], [-76.642256, 42.233721], [-76.619303, 42.282853], [-76.561601, 42.281986], [-76.538349, 42.281755], [-76.557624, 42.000149], [-76.558118, 42.000155], [-76.815878, 42.001673], [-76.835079, 42.001773], [-76.920784, 42.001774], [-76.921884, 42.001674], [-76.927084, 42.001674]]]}, "bbox": [-76.965728, 42.000149, -76.538349, 42.29372]}, {"id": "36019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.909687, 44.429699], [-73.966148, 44.709118], [-73.986382, 44.707773], [-74.027392, 44.995765], [-73.874597, 45.001223], [-73.624588, 45.003954], [-73.343124, 45.01084], [-73.350188, 44.994304], [-73.35945, 44.915684], [-73.369647, 44.829136], [-73.339958, 44.778893], [-73.365326, 44.703294], [-73.390231, 44.618353], [-73.374389, 44.575455], [-73.361952, 44.563064], [-73.356788, 44.557918], [-73.338634, 44.546847], [-73.463838, 44.537681], [-73.496604, 44.486081], [-73.700717, 44.445571], [-73.909687, 44.429699]]]}, "bbox": [-74.027392, 44.429699, -73.338634, 45.01084]}, {"id": "36023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.130181, 42.410337], [-76.253359, 42.407568], [-76.265584, 42.623588], [-76.274673, 42.771257], [-75.896079, 42.790964], [-75.889832, 42.723844], [-75.86402, 42.415702], [-76.130181, 42.410337]]]}, "bbox": [-76.274673, 42.407568, -75.86402, 42.790964]}, {"id": "36027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.953307, 41.589977], [-73.947382, 41.667493], [-73.942482, 41.684093], [-73.943482, 41.690293], [-73.945782, 41.695593], [-73.946682, 41.699396], [-73.944435, 41.714634], [-73.941081, 41.732693], [-73.941081, 41.735993], [-73.962221, 41.90102], [-73.929626, 42.078778], [-73.71093, 42.005488], [-73.527072, 41.97798], [-73.496879, 42.049675], [-73.487314, 42.049638], [-73.504944, 41.824285], [-73.505008, 41.823773], [-73.510171, 41.758686], [-73.517473, 41.666646], [-73.521457, 41.616429], [-73.530067, 41.527194], [-73.933775, 41.488279], [-73.981486, 41.438905], [-74.000108, 41.456549], [-73.997609, 41.487212], [-73.953307, 41.589977]]]}, "bbox": [-74.000108, 41.438905, -73.487314, 42.078778]}, {"id": "36029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.136725, 42.569693], [-79.12963, 42.589824], [-79.126261, 42.590937], [-79.121921, 42.594234], [-79.113713, 42.605994], [-79.111361, 42.613358], [-79.078761, 42.640058], [-79.073261, 42.639958], [-79.06376, 42.644758], [-79.062261, 42.668358], [-79.04886, 42.689158], [-79.01886, 42.701558], [-79.00616, 42.704558], [-78.991159, 42.705358], [-78.944158, 42.731958], [-78.918157, 42.737258], [-78.868556, 42.770258], [-78.853455, 42.783958], [-78.851355, 42.791758], [-78.856456, 42.800258], [-78.859356, 42.800658], [-78.863656, 42.813058], [-78.865656, 42.826758], [-78.860445, 42.83511], [-78.859456, 42.841358], [-78.865592, 42.852358], [-78.872227, 42.853306], [-78.882557, 42.867258], [-78.891655, 42.884845], [-78.912458, 42.886557], [-78.905758, 42.899957], [-78.905659, 42.923357], [-78.909159, 42.933257], [-78.918859, 42.946857], [-78.921206, 42.948422], [-78.93236, 42.955857], [-78.972524, 42.966804], [-79.011563, 42.985256], [-79.019964, 42.994756], [-79.028353, 43.066897], [-79.009664, 43.069558], [-78.945262, 43.066956], [-78.828805, 43.030139], [-78.733606, 43.084219], [-78.464449, 43.088703], [-78.463887, 42.924325], [-78.464381, 42.867461], [-78.46394, 42.536332], [-78.695937, 42.47194], [-78.920446, 42.442556], [-78.991702, 42.529249], [-79.060777, 42.537853], [-79.136725, 42.569693]]]}, "bbox": [-79.136725, 42.442556, -78.463887, 43.088703]}, {"id": "36033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.09349, 44.137615], [-74.28187, 44.120552], [-74.535156, 44.09925], [-74.525683, 44.170636], [-74.641872, 44.952621], [-74.720307, 44.953011], [-74.72498, 45.005915], [-74.702018, 45.003322], [-74.291307, 44.992058], [-74.146814, 44.9915], [-74.027392, 44.995765], [-73.986382, 44.707773], [-73.966148, 44.709118], [-73.909687, 44.429699], [-74.141424, 44.407268], [-74.12756, 44.330211], [-74.09349, 44.137615]]]}, "bbox": [-74.72498, 44.09925, -73.909687, 45.005915]}, {"id": "36035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.097467, 42.982934], [-74.289304, 42.984415], [-74.488844, 42.985118], [-74.542367, 42.98553], [-74.759895, 43.047423], [-74.696333, 43.173515], [-74.712615, 43.286143], [-74.534657, 43.228115], [-74.326378, 43.241635], [-74.220902, 43.221403], [-74.140147, 43.253979], [-74.097467, 42.982934]]]}, "bbox": [-74.759895, 42.982934, -74.097467, 43.286143]}, {"id": "36047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.868917, 40.69515], [-73.866027, 40.681918], [-73.85566, 40.663802], [-73.86049, 40.654655], [-73.849852, 40.588669], [-73.938598, 40.566161], [-73.944558, 40.568716], [-73.95005, 40.573363], [-73.95938, 40.572682], [-73.991346, 40.57035], [-74.002056, 40.570623], [-74.00903, 40.572846], [-74.012022, 40.574528], [-74.012996, 40.578169], [-74.007276, 40.583616], [-74.00635, 40.584767], [-74.001591, 40.590684], [-74.003281, 40.595754], [-74.010926, 40.600789], [-74.032856, 40.604421], [-74.03959, 40.612934], [-74.042412, 40.624847], [-74.038336, 40.637074], [-74.035868, 40.640776], [-74.032066, 40.646479], [-74.018272, 40.659019], [-74.020467, 40.67877], [-74.022911, 40.681267], [-74.019347, 40.679548], [-74.008117, 40.686615], [-74.003946, 40.689047], [-73.994648, 40.704135], [-73.969845, 40.709047], [-73.962645, 40.722747], [-73.961543, 40.723876], [-73.962795, 40.737674], [-73.961188, 40.737091], [-73.954732, 40.739292], [-73.947064, 40.737516], [-73.937339, 40.72992], [-73.929223, 40.727849], [-73.923865, 40.720056], [-73.921473, 40.709004], [-73.912058, 40.703446], [-73.904425, 40.695671], [-73.896497, 40.682447], [-73.889575, 40.68418], [-73.874021, 40.694191], [-73.868917, 40.69515]]]}, "bbox": [-74.042412, 40.566161, -73.849852, 40.739292]}, {"id": "36051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.909832, 42.987762], [-77.730957, 42.988372], [-77.732378, 42.945285], [-77.580377, 42.943963], [-77.61167, 42.763169], [-77.598815, 42.671965], [-77.486875, 42.670279], [-77.490889, 42.577288], [-77.659917, 42.580409], [-77.722964, 42.471216], [-77.840231, 42.474576], [-77.840901, 42.517767], [-78.038261, 42.521522], [-78.048247, 42.579306], [-77.956334, 42.667322], [-77.954964, 42.862754], [-77.909832, 42.987762]]]}, "bbox": [-78.048247, 42.471216, -77.486875, 42.988372]}, {"id": "36053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.884275, 43.155562], [-75.737774, 43.164673], [-75.552774, 43.037554], [-75.544211, 42.93177], [-75.444173, 42.933089], [-75.437167, 42.863319], [-75.247963, 42.871604], [-75.295877, 42.744106], [-75.889832, 42.723844], [-75.896079, 42.790964], [-75.917189, 43.085779], [-75.975588, 43.091278], [-75.975849, 43.094606], [-75.974724, 43.096919], [-75.976286, 43.098489], [-75.975641, 43.100336], [-75.976396, 43.103038], [-75.974149, 43.103563], [-75.971524, 43.104914], [-75.972988, 43.106379], [-75.97203, 43.107522], [-75.970349, 43.107567], [-75.971725, 43.109186], [-75.969201, 43.110504], [-75.96543, 43.116721], [-75.965594, 43.119552], [-75.964695, 43.119811], [-75.963383, 43.119043], [-75.963517, 43.117563], [-75.959703, 43.115459], [-75.956023, 43.115148], [-75.955995, 43.11623], [-75.9544, 43.116857], [-75.955843, 43.118314], [-75.957416, 43.118194], [-75.95595, 43.119515], [-75.95713, 43.120241], [-75.959414, 43.119808], [-75.95701, 43.121973], [-75.958339, 43.123728], [-75.960494, 43.122969], [-75.958817, 43.125112], [-75.958833, 43.128093], [-75.956763, 43.126804], [-75.954592, 43.127986], [-75.952421, 43.130705], [-75.950287, 43.132551], [-75.953277, 43.133363], [-75.950066, 43.134376], [-75.950296, 43.135195], [-75.953405, 43.135459], [-75.954803, 43.134008], [-75.957129, 43.136297], [-75.958196, 43.135082], [-75.957184, 43.133947], [-75.960459, 43.13284], [-75.961672, 43.133941], [-75.963961, 43.133799], [-75.964403, 43.135128], [-75.967318, 43.134819], [-75.969221, 43.136765], [-75.96992, 43.13863], [-75.972347, 43.140476], [-75.975318, 43.138939], [-75.973837, 43.137342], [-75.975602, 43.136169], [-75.977349, 43.136343], [-75.97678, 43.137905], [-75.977515, 43.139791], [-75.976964, 43.140754], [-75.972648, 43.142995], [-75.971783, 43.143847], [-75.972702, 43.145473], [-75.973342, 43.149225], [-75.971235, 43.154639], [-75.972903, 43.155894], [-75.977068, 43.157646], [-75.976752, 43.160269], [-75.974629, 43.161917], [-75.97438, 43.163175], [-75.97788, 43.164591], [-75.979131, 43.166262], [-75.978319, 43.167706], [-75.981008, 43.167704], [-75.979478, 43.170698], [-75.982668, 43.173631], [-75.986514, 43.171572], [-75.988447, 43.172616], [-75.990028, 43.171527], [-75.991933, 43.172953], [-75.992635, 43.173849], [-75.989672, 43.179591], [-75.990766, 43.180917], [-75.991437, 43.18325], [-75.993394, 43.183376], [-75.992428, 43.185164], [-75.986894, 43.183938], [-75.979489, 43.177401], [-75.973438, 43.179898], [-75.959359, 43.180389], [-75.955599, 43.172182], [-75.932778, 43.176583], [-75.927453, 43.162738], [-75.884275, 43.155562]]]}, "bbox": [-75.993394, 42.723844, -75.247963, 43.185164]}, {"id": "36055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.995591, 43.365293], [-77.994838, 43.365259], [-77.976438, 43.369159], [-77.965238, 43.368059], [-77.952937, 43.36346], [-77.922736, 43.35696], [-77.904836, 43.35696], [-77.875335, 43.34966], [-77.816533, 43.34356], [-77.797381, 43.339857], [-77.785132, 43.339261], [-77.760231, 43.341161], [-77.756931, 43.337361], [-77.73063, 43.330161], [-77.714129, 43.323561], [-77.701429, 43.308261], [-77.660359, 43.282998], [-77.653759, 43.279484], [-77.628315, 43.271303], [-77.602161, 43.256949], [-77.577223, 43.243263], [-77.551022, 43.235763], [-77.534184, 43.234569], [-77.50092, 43.250363], [-77.476642, 43.254522], [-77.436831, 43.265701], [-77.414516, 43.269263], [-77.391015, 43.276363], [-77.385388, 43.276847], [-77.376038, 43.277652], [-77.374351, 43.152584], [-77.371478, 43.034696], [-77.485418, 43.034564], [-77.482517, 42.943164], [-77.580377, 42.943963], [-77.732378, 42.945285], [-77.730957, 42.988372], [-77.909832, 42.987762], [-77.951044, 43.039544], [-77.905934, 43.133561], [-77.99729, 43.132981], [-77.995723, 43.284963], [-77.995665, 43.287448], [-77.995591, 43.365293]]]}, "bbox": [-77.99729, 42.943164, -77.371478, 43.369159]}, {"id": "36057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.289304, 42.984415], [-74.097467, 42.982934], [-74.093814, 42.959378], [-74.09298, 42.955868], [-74.083883, 42.897354], [-74.263314, 42.796534], [-74.454911, 42.772979], [-74.648298, 42.829558], [-74.650213, 42.829941], [-74.702054, 42.845305], [-74.763303, 42.863237], [-74.759895, 43.047423], [-74.542367, 42.98553], [-74.488844, 42.985118], [-74.289304, 42.984415]]]}, "bbox": [-74.763303, 42.772979, -74.083883, 43.047423]}, {"id": "36059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.754323, 40.586357], [-73.700582, 40.743184], [-73.700872, 40.746866], [-73.701744, 40.75253], [-73.74676, 40.780382], [-73.768431, 40.800704], [-73.768301, 40.800797], [-73.754032, 40.820941], [-73.7544, 40.826837], [-73.728275, 40.8529], [-73.726675, 40.8568], [-73.730675, 40.8654], [-73.729575, 40.8665], [-73.713674, 40.870099], [-73.675573, 40.856999], [-73.670692, 40.858708], [-73.655872, 40.863899], [-73.654372, 40.878199], [-73.641072, 40.892599], [-73.633771, 40.898198], [-73.626972, 40.899397], [-73.617571, 40.897898], [-73.60187, 40.902798], [-73.59517, 40.907298], [-73.569969, 40.915398], [-73.566169, 40.915798], [-73.548068, 40.908698], [-73.519267, 40.914298], [-73.514999, 40.912821], [-73.499941, 40.918166], [-73.497061, 40.922801], [-73.454172, 40.834097], [-73.440967, 40.764399], [-73.424758, 40.679052], [-73.423269, 40.670893], [-73.424618, 40.666272], [-73.425586, 40.656291], [-73.423806, 40.609869], [-73.450369, 40.603501], [-73.562372, 40.583703], [-73.583773, 40.586703], [-73.610873, 40.587703], [-73.646674, 40.582804], [-73.701138, 40.58361], [-73.754776, 40.584404], [-73.754323, 40.586357]]]}, "bbox": [-73.768431, 40.582804, -73.423269, 40.922801]}, {"id": "36061", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-74.04086, 40.700117], [-74.040018, 40.700678], [-74.039401, 40.700454], [-74.037998, 40.698995], [-74.043441, 40.68968], [-74.044451, 40.688445], [-74.046359, 40.689175], [-74.047313, 40.690466], [-74.04692, 40.691139], [-74.04086, 40.700117]]], [[[-73.962795, 40.737674], [-73.961543, 40.723876], [-73.962645, 40.722747], [-73.969845, 40.709047], [-73.994648, 40.704135], [-74.003946, 40.689047], [-74.008117, 40.686615], [-74.019347, 40.679548], [-74.022911, 40.681267], [-74.023982, 40.68236], [-74.024827, 40.687007], [-74.021721, 40.693504], [-74.01849, 40.695457], [-74.0168, 40.701794], [-74.019526, 40.706985], [-74.024543, 40.709436], [-74.013784, 40.756601], [-74.009184, 40.763601], [-74.000905, 40.776488], [-73.993029, 40.788746], [-73.986864, 40.798344], [-73.948281, 40.858399], [-73.938081, 40.874699], [-73.933408, 40.882075], [-73.9152, 40.875581], [-73.911405, 40.879278], [-73.907105, 40.876277], [-73.907, 40.873455], [-73.912506, 40.79618], [-73.910551, 40.790988], [-73.916316, 40.786601], [-73.92797, 40.776762], [-73.93508, 40.779218], [-73.938399, 40.774606], [-73.938076, 40.772551], [-73.93519, 40.771745], [-73.936536, 40.769835], [-73.940844, 40.767399], [-73.943951, 40.764434], [-73.95492, 40.751509], [-73.9583, 40.745731], [-73.961544, 40.743081], [-73.962795, 40.737674]]]]}, "bbox": [-74.047313, 40.679548, -73.907, 40.882075]}, {"id": "36063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.828805, 43.030139], [-78.945262, 43.066956], [-79.009664, 43.069558], [-79.028353, 43.066897], [-79.028653, 43.069474], [-79.058399, 43.075231], [-79.066269, 43.09097], [-79.056767, 43.126855], [-79.044066, 43.138055], [-79.042366, 43.143655], [-79.058399, 43.238924], [-79.070469, 43.262454], [-79.019848, 43.273686], [-78.971866, 43.281254], [-78.930764, 43.293254], [-78.859362, 43.310955], [-78.836261, 43.318455], [-78.834061, 43.317555], [-78.777759, 43.327055], [-78.747158, 43.334555], [-78.696856, 43.341255], [-78.634346, 43.357624], [-78.547395, 43.369541], [-78.488857, 43.374763], [-78.482526, 43.374425], [-78.473099, 43.370812], [-78.465502, 43.371232], [-78.466429, 43.302775], [-78.460416, 43.216222], [-78.465505, 43.128619], [-78.464306, 43.091514], [-78.464449, 43.088703], [-78.733606, 43.084219], [-78.828805, 43.030139]]]}, "bbox": [-79.070469, 43.030139, -78.460416, 43.374763]}, {"id": "36065", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.247963, 42.871604], [-75.437167, 42.863319], [-75.444173, 42.933089], [-75.544211, 42.93177], [-75.552774, 43.037554], [-75.737774, 43.164673], [-75.884275, 43.155562], [-75.886756, 43.325021], [-75.814627, 43.483578], [-75.756213, 43.470388], [-75.5335, 43.419756], [-75.11016, 43.615229], [-75.086851, 43.41701], [-75.076581, 43.330705], [-75.16035, 43.255805], [-75.069165, 43.227333], [-75.219106, 43.052469], [-75.212158, 42.879973], [-75.242745, 42.877869], [-75.247963, 42.871604]]]}, "bbox": [-75.886756, 42.863319, -75.069165, 43.615229]}, {"id": "36067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.499312, 43.097949], [-76.479224, 43.227519], [-76.258951, 43.237468], [-76.202944, 43.271605], [-75.993394, 43.183376], [-75.991437, 43.18325], [-75.990766, 43.180917], [-75.989672, 43.179591], [-75.992635, 43.173849], [-75.991933, 43.172953], [-75.990028, 43.171527], [-75.988447, 43.172616], [-75.986514, 43.171572], [-75.982668, 43.173631], [-75.979478, 43.170698], [-75.981008, 43.167704], [-75.978319, 43.167706], [-75.979131, 43.166262], [-75.97788, 43.164591], [-75.97438, 43.163175], [-75.974629, 43.161917], [-75.976752, 43.160269], [-75.977068, 43.157646], [-75.972903, 43.155894], [-75.971235, 43.154639], [-75.973342, 43.149225], [-75.972702, 43.145473], [-75.971783, 43.143847], [-75.972648, 43.142995], [-75.976964, 43.140754], [-75.977515, 43.139791], [-75.97678, 43.137905], [-75.977349, 43.136343], [-75.975602, 43.136169], [-75.973837, 43.137342], [-75.975318, 43.138939], [-75.972347, 43.140476], [-75.96992, 43.13863], [-75.969221, 43.136765], [-75.967318, 43.134819], [-75.964403, 43.135128], [-75.963961, 43.133799], [-75.961672, 43.133941], [-75.960459, 43.13284], [-75.957184, 43.133947], [-75.958196, 43.135082], [-75.957129, 43.136297], [-75.954803, 43.134008], [-75.953405, 43.135459], [-75.950296, 43.135195], [-75.950066, 43.134376], [-75.953277, 43.133363], [-75.950287, 43.132551], [-75.952421, 43.130705], [-75.954592, 43.127986], [-75.956763, 43.126804], [-75.958833, 43.128093], [-75.958817, 43.125112], [-75.960494, 43.122969], [-75.958339, 43.123728], [-75.95701, 43.121973], [-75.959414, 43.119808], [-75.95713, 43.120241], [-75.95595, 43.119515], [-75.957416, 43.118194], [-75.955843, 43.118314], [-75.9544, 43.116857], [-75.955995, 43.11623], [-75.956023, 43.115148], [-75.959703, 43.115459], [-75.963517, 43.117563], [-75.963383, 43.119043], [-75.964695, 43.119811], [-75.965594, 43.119552], [-75.96543, 43.116721], [-75.969201, 43.110504], [-75.971725, 43.109186], [-75.970349, 43.107567], [-75.97203, 43.107522], [-75.972988, 43.106379], [-75.971524, 43.104914], [-75.974149, 43.103563], [-75.976396, 43.103038], [-75.975641, 43.100336], [-75.976286, 43.098489], [-75.974724, 43.096919], [-75.975849, 43.094606], [-75.975588, 43.091278], [-75.917189, 43.085779], [-75.896079, 42.790964], [-76.274673, 42.771257], [-76.356974, 42.84945], [-76.450738, 42.84576], [-76.462999, 43.006316], [-76.499312, 43.097949]]]}, "bbox": [-76.499312, 42.771257, -75.896079, 43.271605]}, {"id": "36069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.971392, 42.764223], [-77.018626, 42.7638], [-77.313004, 42.761265], [-77.367106, 42.667866], [-77.366505, 42.576368], [-77.490889, 42.577288], [-77.486875, 42.670279], [-77.598815, 42.671965], [-77.61167, 42.763169], [-77.580377, 42.943963], [-77.482517, 42.943164], [-77.485418, 43.034564], [-77.371478, 43.034696], [-77.134335, 43.039926], [-77.133397, 43.012463], [-76.963926, 43.013157], [-76.96335, 42.90302], [-76.971392, 42.764223]]]}, "bbox": [-77.61167, 42.576368, -76.96335, 43.039926]}, {"id": "36071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.953307, 41.589977], [-73.997609, 41.487212], [-74.000108, 41.456549], [-73.981486, 41.438905], [-73.981384, 41.324693], [-74.161789, 41.195794], [-74.234473, 41.142883], [-74.365664, 41.2034], [-74.392098, 41.215594], [-74.457584, 41.248225], [-74.694914, 41.357423], [-74.689767, 41.361558], [-74.691129, 41.367324], [-74.752562, 41.426518], [-74.75595, 41.426804], [-74.752399, 41.493743], [-74.475591, 41.504334], [-74.367055, 41.590977], [-74.264093, 41.632738], [-74.126393, 41.582544], [-73.953307, 41.589977]]]}, "bbox": [-74.75595, 41.142883, -73.953307, 41.632738]}, {"id": "36077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.71158, 42.517799], [-74.97494, 42.467488], [-75.197237, 42.358329], [-75.415319, 42.314151], [-75.374905, 42.410784], [-75.404464, 42.479117], [-75.330143, 42.568082], [-75.295877, 42.744106], [-75.247963, 42.871604], [-75.242745, 42.877869], [-75.212158, 42.879973], [-75.13987, 42.85976], [-75.100999, 42.908363], [-74.906738, 42.824943], [-74.878822, 42.898274], [-74.763303, 42.863237], [-74.702054, 42.845305], [-74.650213, 42.829941], [-74.648298, 42.829558], [-74.667512, 42.75071], [-74.630631, 42.626674], [-74.71158, 42.517799]]]}, "bbox": [-75.415319, 42.314151, -74.630631, 42.908363]}, {"id": "36079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.982584, 41.321693], [-73.981384, 41.324693], [-73.981486, 41.438905], [-73.933775, 41.488279], [-73.530067, 41.527194], [-73.533969, 41.479693], [-73.534055, 41.478968], [-73.53415, 41.47806], [-73.534269, 41.476911], [-73.534269, 41.476394], [-73.534369, 41.475894], [-73.535769, 41.457159], [-73.535857, 41.455709], [-73.535885, 41.455236], [-73.535986, 41.45306], [-73.536067, 41.451331], [-73.536969, 41.441094], [-73.537469, 41.43589], [-73.537673, 41.433905], [-73.543641, 41.376778], [-73.544728, 41.366375], [-73.982584, 41.321693]]]}, "bbox": [-73.982584, 41.321693, -73.530067, 41.527194]}, {"id": "36081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.868917, 40.69515], [-73.874021, 40.694191], [-73.889575, 40.68418], [-73.896497, 40.682447], [-73.904425, 40.695671], [-73.912058, 40.703446], [-73.921473, 40.709004], [-73.923865, 40.720056], [-73.929223, 40.727849], [-73.937339, 40.72992], [-73.947064, 40.737516], [-73.954732, 40.739292], [-73.961188, 40.737091], [-73.962795, 40.737674], [-73.961544, 40.743081], [-73.9583, 40.745731], [-73.95492, 40.751509], [-73.943951, 40.764434], [-73.940844, 40.767399], [-73.936536, 40.769835], [-73.93519, 40.771745], [-73.938076, 40.772551], [-73.938399, 40.774606], [-73.93508, 40.779218], [-73.92797, 40.776762], [-73.916316, 40.786601], [-73.910551, 40.790988], [-73.912506, 40.79618], [-73.899809, 40.792524], [-73.892205, 40.79038], [-73.890586, 40.790145], [-73.889918, 40.787398], [-73.884867, 40.786621], [-73.870992, 40.786979], [-73.866707, 40.793653], [-73.862704, 40.797276], [-73.830548, 40.803162], [-73.811001, 40.805077], [-73.793403, 40.799881], [-73.785964, 40.800862], [-73.781369, 40.794907], [-73.776032, 40.795275], [-73.768431, 40.800704], [-73.74676, 40.780382], [-73.701744, 40.75253], [-73.700872, 40.746866], [-73.700582, 40.743184], [-73.754323, 40.586357], [-73.753349, 40.59056], [-73.774928, 40.590759], [-73.80143, 40.585659], [-73.806834, 40.584619], [-73.834408, 40.577201], [-73.878906, 40.560888], [-73.934512, 40.545175], [-73.934466, 40.555281], [-73.932729, 40.560266], [-73.935686, 40.564914], [-73.938598, 40.566161], [-73.849852, 40.588669], [-73.86049, 40.654655], [-73.85566, 40.663802], [-73.866027, 40.681918], [-73.868917, 40.69515]]]}, "bbox": [-73.962795, 40.545175, -73.700582, 40.805077]}, {"id": "36083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.659663, 42.818978], [-73.68461, 42.892399], [-73.635463, 42.94129], [-73.274294, 42.943652], [-73.274393, 42.942482], [-73.274466, 42.940361], [-73.278673, 42.83341], [-73.285388, 42.834093], [-73.290944, 42.80192], [-73.276421, 42.746019], [-73.264957, 42.74594], [-73.307004, 42.632653], [-73.352527, 42.510002], [-73.783721, 42.464231], [-73.784594, 42.489947], [-73.773161, 42.509377], [-73.761265, 42.610379], [-73.676762, 42.783277], [-73.673463, 42.790276], [-73.672355, 42.795791], [-73.661362, 42.802977], [-73.659663, 42.818978]]]}, "bbox": [-73.784594, 42.464231, -73.264957, 42.943652]}, {"id": "36085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.144428, 40.53516], [-74.148697, 40.534489], [-74.160859, 40.52679], [-74.177986, 40.519603], [-74.182157, 40.520634], [-74.199923, 40.511729], [-74.210474, 40.509448], [-74.219787, 40.502603], [-74.23324, 40.501299], [-74.246688, 40.496103], [-74.250188, 40.496703], [-74.254588, 40.502303], [-74.256088, 40.507903], [-74.252702, 40.513895], [-74.242888, 40.520903], [-74.241732, 40.531273], [-74.247808, 40.543396], [-74.229002, 40.555041], [-74.216997, 40.554991], [-74.210887, 40.560902], [-74.204054, 40.589336], [-74.19682, 40.597037], [-74.195407, 40.601806], [-74.196096, 40.616169], [-74.200994, 40.616906], [-74.201812, 40.619507], [-74.20058, 40.631448], [-74.1894, 40.642121], [-74.180191, 40.645521], [-74.174085, 40.645109], [-74.170187, 40.642201], [-74.152973, 40.638886], [-74.120186, 40.642201], [-74.086485, 40.648601], [-74.075884, 40.648101], [-74.0697, 40.641216], [-74.067598, 40.623865], [-74.060345, 40.611999], [-74.053125, 40.603678], [-74.059184, 40.593502], [-74.068184, 40.584102], [-74.090797, 40.566463], [-74.111471, 40.546908], [-74.112585, 40.547603], [-74.121672, 40.542691], [-74.137241, 40.530076], [-74.14023, 40.533738], [-74.144428, 40.53516]]]}, "bbox": [-74.256088, 40.496103, -74.053125, 40.648601]}, {"id": "36087", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.947965, 41.223101], [-73.931482, 41.204994], [-73.909281, 41.164395], [-73.895381, 41.153995], [-73.88718, 41.133095], [-73.89488, 41.082396], [-73.8947, 41.069937], [-73.88938, 41.037597], [-73.893979, 40.997197], [-73.90268, 40.997297], [-73.91188, 41.001297], [-74.041049, 41.059086], [-74.041054, 41.059088], [-74.092486, 41.081896], [-74.096786, 41.083796], [-74.213373, 41.133828], [-74.234473, 41.142883], [-74.161789, 41.195794], [-73.981384, 41.324693], [-73.982584, 41.321693], [-73.947965, 41.223101]]]}, "bbox": [-74.234473, 40.997197, -73.88718, 41.324693]}, {"id": "36089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.72498, 45.005915], [-74.720307, 44.953011], [-74.641872, 44.952621], [-74.525683, 44.170636], [-74.535156, 44.09925], [-74.854171, 44.070089], [-75.062779, 44.0504], [-75.170159, 44.096959], [-75.446124, 44.217655], [-75.86006, 44.403282], [-75.82083, 44.432244], [-75.807778, 44.471644], [-75.765495, 44.516285], [-75.696586, 44.567583], [-75.491201, 44.712947], [-75.433124, 44.750062], [-75.333744, 44.806378], [-75.301975, 44.826637], [-75.30763, 44.836813], [-75.283136, 44.849156], [-75.216486, 44.877478], [-75.189313, 44.883037], [-75.139868, 44.896676], [-75.064826, 44.929449], [-75.027125, 44.946568], [-75.005155, 44.958402], [-74.999655, 44.965921], [-74.99927, 44.971638], [-74.992756, 44.977449], [-74.972463, 44.983402], [-74.826578, 45.01585], [-74.801625, 45.014571], [-74.72498, 45.005915]]]}, "bbox": [-75.86006, 44.0504, -74.525683, 45.01585]}, {"id": "36093", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-74.180274, 42.729979], [-74.272295, 42.71427], [-74.263314, 42.796534], [-74.083883, 42.897354], [-74.09298, 42.955868], [-73.895938, 42.851076], [-73.809369, 42.778869], [-73.809603, 42.775016], [-74.180274, 42.729979]]]}, "bbox": [-74.272295, 42.71427, -73.809369, 42.955868]}, {"id": "36103", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-72.132225, 41.104387], [-72.128352, 41.108131], [-72.126704, 41.115139], [-72.084207, 41.101524], [-72.081167, 41.09394], [-72.086975, 41.058292], [-72.095711, 41.05402], [-72.0972, 41.054884], [-72.097136, 41.075844], [-72.103152, 41.086484], [-72.1064, 41.088883], [-72.12056, 41.093171], [-72.139233, 41.092451], [-72.141921, 41.094371], [-72.142929, 41.097811], [-72.140737, 41.100835], [-72.132225, 41.104387]]], [[[-71.943563, 41.286675], [-71.926802, 41.290122], [-71.935259, 41.280579], [-71.94627, 41.276306], [-71.962598, 41.270968], [-71.978926, 41.265002], [-71.994717, 41.256451], [-72.002461, 41.252867], [-72.036846, 41.249794], [-72.034958, 41.255458], [-72.029438, 41.26309], [-72.023422, 41.270994], [-72.018926, 41.274114], [-72.006872, 41.27348], [-71.991117, 41.281331], [-71.980061, 41.280291], [-71.952864, 41.285098], [-71.943563, 41.286675]]], [[[-73.454172, 40.834097], [-73.497061, 40.922801], [-73.496642, 40.923476], [-73.491765, 40.942097], [-73.485365, 40.946397], [-73.484798, 40.946065], [-73.48011, 40.943319], [-73.478365, 40.942297], [-73.47441, 40.941056], [-73.463708, 40.937697], [-73.460603, 40.937375], [-73.456523, 40.936953], [-73.445026, 40.935763], [-73.437509, 40.934985], [-73.436664, 40.934897], [-73.429863, 40.929797], [-73.429665, 40.928203], [-73.428836, 40.921506], [-73.406074, 40.920235], [-73.402963, 40.925097], [-73.403462, 40.942197], [-73.400862, 40.953997], [-73.399762, 40.955197], [-73.392862, 40.955297], [-73.374462, 40.937597], [-73.365961, 40.931697], [-73.352761, 40.926697], [-73.345561, 40.925297], [-73.344161, 40.927297], [-73.33136, 40.929597], [-73.295061, 40.924497], [-73.295059, 40.924497], [-73.229285, 40.905121], [-73.148994, 40.928898], [-73.146242, 40.935074], [-73.144673, 40.955842], [-73.140785, 40.966178], [-73.110368, 40.971938], [-73.081582, 40.973058], [-73.043701, 40.962185], [-73.040445, 40.964498], [-72.995931, 40.966498], [-72.955163, 40.966146], [-72.913834, 40.962466], [-72.88825, 40.962962], [-72.826057, 40.969794], [-72.774104, 40.965314], [-72.760031, 40.975334], [-72.714425, 40.985596], [-72.689341, 40.989776], [-72.665018, 40.987496], [-72.635374, 40.990536], [-72.585327, 40.997587], [-72.565406, 41.009508], [-72.560974, 41.015444], [-72.549853, 41.019844], [-72.521548, 41.037652], [-72.477306, 41.052212], [-72.460778, 41.067012], [-72.445242, 41.086116], [-72.417945, 41.087955], [-72.397, 41.096307], [-72.356087, 41.133635], [-72.333351, 41.138018], [-72.322381, 41.140664], [-72.291109, 41.155874], [-72.278789, 41.158722], [-72.272997, 41.15501], [-72.2681, 41.154146], [-72.245348, 41.161217], [-72.238211, 41.15949], [-72.237731, 41.156434], [-72.253572, 41.137138], [-72.265124, 41.128482], [-72.300374, 41.112274], [-72.300044, 41.132059], [-72.306381, 41.13784], [-72.312734, 41.138546], [-72.318146, 41.137134], [-72.32663, 41.132162], [-72.335271, 41.120274], [-72.335177, 41.106917], [-72.317238, 41.088659], [-72.297718, 41.081042], [-72.280373, 41.080402], [-72.276709, 41.076722], [-72.283093, 41.067874], [-72.273657, 41.051533], [-72.260515, 41.042065], [-72.241252, 41.04477], [-72.229364, 41.044355], [-72.217476, 41.040611], [-72.201859, 41.032275], [-72.190563, 41.032579], [-72.183266, 41.035619], [-72.17949, 41.038435], [-72.174882, 41.046147], [-72.162898, 41.053187], [-72.16037, 41.053827], [-72.153857, 41.051859], [-72.137297, 41.039684], [-72.135137, 41.031284], [-72.137409, 41.023908], [-72.116368, 40.999796], [-72.109008, 40.994084], [-72.10216, 40.991509], [-72.095456, 40.991349], [-72.083039, 40.996453], [-72.079951, 41.003429], [-72.079208, 41.006437], [-72.076175, 41.009093], [-72.061448, 41.009442], [-72.057934, 41.004789], [-72.057075, 41.004893], [-72.055188, 41.005236], [-72.051585, 41.006437], [-72.049526, 41.009697], [-72.051549, 41.015741], [-72.051928, 41.020506], [-72.047468, 41.022565], [-72.035792, 41.020759], [-72.015013, 41.028348], [-71.99926, 41.039669], [-71.96704, 41.047772], [-71.961078, 41.054277], [-71.960355, 41.059878], [-71.961563, 41.064021], [-71.959595, 41.071237], [-71.93825, 41.077413], [-71.919385, 41.080517], [-71.899256, 41.080837], [-71.895496, 41.077381], [-71.889543, 41.075701], [-71.869558, 41.075046], [-71.86447, 41.076918], [-71.857494, 41.073558], [-71.856214, 41.070598], [-71.87391, 41.052278], [-71.903736, 41.040166], [-71.935689, 41.034182], [-72.029357, 40.999909], [-72.114448, 40.972085], [-72.39585, 40.86666], [-72.469996, 40.84274], [-72.573441, 40.813251], [-72.745208, 40.767091], [-72.753112, 40.763571], [-72.757176, 40.764371], [-72.768152, 40.761587], [-72.863164, 40.732962], [-72.923214, 40.713282], [-73.012545, 40.679651], [-73.054963, 40.666371], [-73.145266, 40.645491], [-73.20844, 40.630884], [-73.23914, 40.6251], [-73.262106, 40.621476], [-73.264493, 40.621437], [-73.306396, 40.620756], [-73.30974, 40.622532], [-73.319257, 40.635795], [-73.351465, 40.6305], [-73.391967, 40.617501], [-73.423806, 40.609869], [-73.425586, 40.656291], [-73.424618, 40.666272], [-73.423269, 40.670893], [-73.424758, 40.679052], [-73.440967, 40.764399], [-73.454172, 40.834097]]]]}, "bbox": [-73.497061, 40.609869, -71.856214, 41.290122]}, {"id": "36105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.050074, 41.606893], [-75.053077, 41.618552], [-75.048199, 41.632011], [-75.053431, 41.752538], [-75.090799, 41.811991], [-75.114399, 41.843583], [-75.140241, 41.852078], [-75.146446, 41.850899], [-74.997252, 41.918485], [-74.780693, 42.016375], [-74.453685, 41.875595], [-74.575086, 41.745258], [-74.395071, 41.644876], [-74.367055, 41.590977], [-74.475591, 41.504334], [-74.752399, 41.493743], [-74.75595, 41.426804], [-74.799165, 41.430451], [-74.876721, 41.440338], [-74.891948, 41.448853], [-74.912517, 41.475605], [-74.93976, 41.483371], [-74.984226, 41.506299], [-75.04049, 41.569688], [-75.050074, 41.606893]]]}, "bbox": [-75.146446, 41.426804, -74.367055, 42.016375]}, {"id": "36109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.253359, 42.407568], [-76.250149, 42.296676], [-76.39465, 42.318509], [-76.415305, 42.318368], [-76.416199, 42.262976], [-76.538349, 42.281755], [-76.561601, 42.281986], [-76.619303, 42.282853], [-76.691406, 42.284307], [-76.696655, 42.54679], [-76.585989, 42.54991], [-76.666543, 42.623457], [-76.265584, 42.623588], [-76.253359, 42.407568]]]}, "bbox": [-76.696655, 42.262976, -76.250149, 42.623588]}, {"id": "36111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.942482, 41.684093], [-73.947382, 41.667493], [-73.953307, 41.589977], [-74.126393, 41.582544], [-74.264093, 41.632738], [-74.367055, 41.590977], [-74.395071, 41.644876], [-74.575086, 41.745258], [-74.453685, 41.875595], [-74.780693, 42.016375], [-74.451713, 42.169225], [-74.307571, 42.114346], [-74.074797, 42.096589], [-74.042393, 42.170386], [-73.910675, 42.127293], [-73.921465, 42.110025], [-73.929626, 42.078778], [-73.962221, 41.90102], [-73.941081, 41.735993], [-73.941081, 41.732693], [-73.944435, 41.714634], [-73.946682, 41.699396], [-73.945782, 41.695593], [-73.943482, 41.690293], [-73.942482, 41.684093]]]}, "bbox": [-74.780693, 41.582544, -73.910675, 42.170386]}, {"id": "36113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-73.86869, 43.762803], [-73.495503, 43.799319], [-73.43812, 43.803687], [-73.492893, 43.657303], [-73.62894, 43.486391], [-73.59496, 43.306118], [-73.835811, 43.253756], [-73.884139, 43.398041], [-74.1601, 43.371532], [-74.214625, 43.728703], [-74.057005, 43.744513], [-73.86869, 43.762803]]]}, "bbox": [-74.214625, 43.253756, -73.43812, 43.803687]}, {"id": "36117", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.374351, 43.152584], [-77.376038, 43.277652], [-77.341092, 43.280661], [-77.314619, 43.28103], [-77.303979, 43.27815], [-77.264177, 43.277363], [-77.214058, 43.284114], [-77.173088, 43.281509], [-77.143416, 43.287561], [-77.130429, 43.285635], [-77.111866, 43.287945], [-77.067295, 43.280937], [-77.033875, 43.271218], [-76.999691, 43.271456], [-76.988445, 43.2745], [-76.958402, 43.270005], [-76.952174, 43.270692], [-76.922351, 43.285006], [-76.904288, 43.291816], [-76.886913, 43.293891], [-76.877397, 43.292926], [-76.854976, 43.298443], [-76.841675, 43.305399], [-76.794708, 43.309632], [-76.769025, 43.318452], [-76.747067, 43.331477], [-76.731039, 43.343421], [-76.722501, 43.343686], [-76.705345, 43.125463], [-76.713806, 43.024035], [-76.963926, 43.013157], [-77.133397, 43.012463], [-77.134335, 43.039926], [-77.371478, 43.034696], [-77.374351, 43.152584]]]}, "bbox": [-77.376038, 43.012463, -76.705345, 43.343686]}, {"id": "36119", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-73.767176, 40.886299], [-73.767076, 40.885399], [-73.767076, 40.884799], [-73.767076, 40.883499], [-73.766276, 40.881099], [-73.766976, 40.880099], [-73.770876, 40.879299], [-73.775276, 40.882199], [-73.775176, 40.884199], [-73.772776, 40.884599], [-73.772276, 40.887499], [-73.770576, 40.888399], [-73.768276, 40.887599], [-73.767276, 40.886899], [-73.767176, 40.886299]]], [[[-73.514617, 41.198434], [-73.614407, 41.153001], [-73.632153, 41.144921], [-73.639672, 41.141495], [-73.727775, 41.100696], [-73.694273, 41.059296], [-73.687173, 41.050697], [-73.679973, 41.041797], [-73.670472, 41.030097], [-73.655371, 41.012797], [-73.654671, 41.011697], [-73.657336, 40.985171], [-73.655972, 40.979597], [-73.659972, 40.968398], [-73.662072, 40.966198], [-73.664472, 40.967198], [-73.678073, 40.962798], [-73.683273, 40.948998], [-73.686473, 40.945198], [-73.697974, 40.939598], [-73.721739, 40.932037], [-73.731775, 40.924999], [-73.756776, 40.912599], [-73.781338, 40.885447], [-73.783545, 40.88104], [-73.804789, 40.886505], [-73.806395, 40.886801], [-73.823244, 40.891199], [-73.82312, 40.890648], [-73.823617, 40.890413], [-73.823557, 40.889865], [-73.824047, 40.889866], [-73.917905, 40.917577], [-73.893979, 40.997197], [-73.88938, 41.037597], [-73.8947, 41.069937], [-73.89488, 41.082396], [-73.88718, 41.133095], [-73.895381, 41.153995], [-73.909281, 41.164395], [-73.931482, 41.204994], [-73.947965, 41.223101], [-73.982584, 41.321693], [-73.544728, 41.366375], [-73.550961, 41.295422], [-73.482709, 41.21276], [-73.509487, 41.200814], [-73.514617, 41.198434]]]]}, "bbox": [-73.982584, 40.879299, -73.482709, 41.366375]}, {"id": "36121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.46394, 42.536332], [-78.464381, 42.867461], [-77.954964, 42.862754], [-77.956334, 42.667322], [-78.048247, 42.579306], [-78.038261, 42.521522], [-78.040241, 42.520968], [-78.308839, 42.521217], [-78.464556, 42.519166], [-78.46394, 42.536332]]]}, "bbox": [-78.464556, 42.519166, -77.954964, 42.867461]}, {"id": "37001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.259481, 36.137273], [-79.249475, 35.876788], [-79.318849, 35.844078], [-79.54249, 35.843399], [-79.541978, 35.899627], [-79.541622, 35.902097], [-79.532365, 36.241342], [-79.532329, 36.241427], [-79.532096, 36.248584], [-79.523399, 36.249851], [-79.365366, 36.246411], [-79.315828, 36.245331], [-79.256964, 36.243866], [-79.259481, 36.137273]]]}, "bbox": [-79.54249, 35.843399, -79.249475, 36.249851]}, {"id": "37021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.169018, 35.527841], [-82.266847, 35.465854], [-82.570269, 35.431255], [-82.672392, 35.459534], [-82.744383, 35.423342], [-82.800276, 35.470536], [-82.766726, 35.566764], [-82.883665, 35.67819], [-82.806917, 35.685686], [-82.514519, 35.803194], [-82.408728, 35.818061], [-82.34816, 35.810581], [-82.275394, 35.704423], [-82.290797, 35.591288], [-82.169018, 35.527841]]]}, "bbox": [-82.883665, 35.423342, -82.169018, 35.818061]}, {"id": "37023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.824184, 35.574955], [-81.869347, 35.719574], [-81.987035, 35.806936], [-81.906607, 35.883437], [-81.943674, 35.959448], [-81.899583, 36.000127], [-81.80712, 35.962057], [-81.55596, 35.777332], [-81.364055, 35.767865], [-81.534359, 35.568811], [-81.535632, 35.567324], [-81.535733, 35.567064], [-81.536076, 35.566555], [-81.53776, 35.564472], [-81.692329, 35.579789], [-81.824184, 35.574955]]]}, "bbox": [-81.987035, 35.564472, -81.364055, 36.000127]}, {"id": "37025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.719625, 35.362842], [-80.744252, 35.380638], [-80.755284, 35.394927], [-80.764255, 35.400226], [-80.784339, 35.50584], [-80.737289, 35.505633], [-80.737069, 35.507163], [-80.688362, 35.506561], [-80.657612, 35.506059], [-80.650431, 35.506094], [-80.649002, 35.505915], [-80.645902, 35.505913], [-80.562402, 35.50311], [-80.295236, 35.502947], [-80.505334, 35.184048], [-80.506418, 35.185226], [-80.550297, 35.208381], [-80.665835, 35.268181], [-80.667274, 35.269014], [-80.69362, 35.346806], [-80.708556, 35.355213], [-80.719625, 35.362842]]]}, "bbox": [-80.784339, 35.184048, -80.295236, 35.507163]}, {"id": "37027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.334255, 35.79646], [-81.34634, 35.794072], [-81.355709, 35.780385], [-81.353862, 35.768895], [-81.364055, 35.767865], [-81.55596, 35.777332], [-81.80712, 35.962057], [-81.735974, 36.066826], [-81.81152, 36.111544], [-81.545455, 36.117398], [-81.328385, 35.99655], [-81.334255, 35.79646]]]}, "bbox": [-81.81152, 35.767865, -81.328385, 36.117398]}, {"id": "37035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.364055, 35.767865], [-81.353862, 35.768895], [-81.355709, 35.780385], [-81.34634, 35.794072], [-81.334255, 35.79646], [-81.142338, 35.827434], [-81.109416, 35.776638], [-80.924548, 35.621735], [-80.960029, 35.54781], [-80.961841, 35.548191], [-81.534359, 35.568811], [-81.364055, 35.767865]]]}, "bbox": [-81.534359, 35.54781, -80.924548, 35.827434]}, {"id": "37039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.321869, 34.988408], [-84.308576, 35.092761], [-84.308437, 35.093173], [-84.292321, 35.206677], [-84.29024, 35.225572], [-84.227818, 35.267878], [-84.223718, 35.269078], [-84.211818, 35.266078], [-84.202879, 35.255772], [-84.124915, 35.24983], [-84.12115, 35.250644], [-84.115279, 35.250438], [-84.115048, 35.249765], [-84.097508, 35.247382], [-84.055712, 35.268182], [-84.029033, 35.291049], [-83.958805, 35.216929], [-83.844709, 35.255408], [-83.702521, 35.248398], [-83.738106, 35.155911], [-83.857142, 35.137071], [-84.005457, 34.98744], [-84.021357, 34.98743], [-84.029954, 34.987321], [-84.129455, 34.987504], [-84.129555, 34.987504], [-84.321869, 34.988408]]]}, "bbox": [-84.321869, 34.987321, -83.702521, 35.291049]}, {"id": "37047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.710141, 33.994688], [-78.712206, 33.996732], [-79.071169, 34.29924], [-78.951088, 34.449026], [-78.87153, 34.482668], [-78.677447, 34.469435], [-78.44623, 34.376839], [-78.337248, 34.367089], [-78.256316, 34.399763], [-78.16235, 34.357007], [-78.25447, 34.216318], [-78.374233, 34.205023], [-78.422567, 34.139217], [-78.494928, 34.166772], [-78.545218, 34.145747], [-78.55685, 34.062377], [-78.6505, 33.944035], [-78.710141, 33.994688]]]}, "bbox": [-79.071169, 33.944035, -78.16235, 34.482668]}, {"id": "37049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.125021, 35.077561], [-77.339077, 35.155076], [-77.473716, 35.228983], [-77.390965, 35.340047], [-77.383581, 35.33536], [-77.374683, 35.333825], [-77.365484, 35.333651], [-77.361188, 35.331852], [-77.357402, 35.328827], [-77.353981, 35.327988], [-77.301155, 35.374239], [-77.295879, 35.379163], [-77.190423, 35.418955], [-76.895546, 35.253532], [-76.98696, 35.155811], [-76.935011, 35.105799], [-76.967297, 35.040655], [-76.896514, 34.981764], [-76.893266, 34.980285], [-76.839333, 34.95941], [-76.711278, 34.981971], [-76.65421, 34.937088], [-76.693085, 34.869219], [-76.939252, 34.828636], [-77.090323, 34.802755], [-77.108813, 34.887572], [-77.125021, 35.077561]]]}, "bbox": [-77.473716, 34.802755, -76.65421, 35.418955]}, {"id": "37051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.617079, 35.245706], [-78.6701, 35.092964], [-78.647522, 34.99482], [-78.522724, 34.88355], [-78.521229, 34.882736], [-78.519347, 34.882653], [-78.519742, 34.8837], [-78.518023, 34.883846], [-78.515661, 34.883], [-78.515626, 34.881958], [-78.51387, 34.881916], [-78.514457, 34.880927], [-78.512906, 34.880906], [-78.514079, 34.875956], [-78.51501, 34.875567], [-78.514758, 34.873734], [-78.513379, 34.873385], [-78.5133, 34.869287], [-78.511755, 34.867961], [-78.50694, 34.866669], [-78.506006, 34.865179], [-78.502835, 34.864663], [-78.502189, 34.861549], [-78.498938, 34.859302], [-78.496564, 34.859471], [-78.494838, 34.858841], [-78.49541, 34.857678], [-78.49461, 34.856464], [-78.901096, 34.834789], [-79.034715, 34.953584], [-79.035766, 34.955329], [-79.036447, 34.955582], [-79.036926, 34.956926], [-79.083163, 35.032662], [-79.097671, 35.174172], [-79.096389, 35.177682], [-79.098726, 35.183439], [-79.098031, 35.188359], [-79.09613, 35.192181], [-78.941859, 35.219211], [-78.825828, 35.259287], [-78.617079, 35.245706]]]}, "bbox": [-79.098726, 34.834789, -78.49461, 35.259287]}, {"id": "37057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.395389, 35.97321], [-80.26692, 35.996552], [-80.213906, 35.996876], [-80.213833, 36.026772], [-80.149775, 36.026697], [-80.137549, 36.024857], [-80.043272, 36.01061], [-80.045563, 35.956436], [-80.04575, 35.955596], [-80.046663, 35.935236], [-80.046709, 35.920663], [-80.046923, 35.916808], [-80.066842, 35.505661], [-80.182682, 35.504335], [-80.208176, 35.580401], [-80.326578, 35.675475], [-80.332228, 35.719047], [-80.339465, 35.721385], [-80.369852, 35.716236], [-80.391729, 35.722258], [-80.413844, 35.722471], [-80.458904, 35.742811], [-80.464086, 35.827538], [-80.365681, 35.895787], [-80.395389, 35.97321]]]}, "bbox": [-80.464086, 35.504335, -80.043272, 36.026772]}, {"id": "37063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.016699, 35.863201], [-78.95079, 36.23916], [-78.949311, 36.239435], [-78.802005, 36.235937], [-78.804983, 36.091883], [-78.749, 36.071246], [-78.69793, 36.012306], [-78.831781, 35.867314], [-78.90617, 35.867912], [-79.016699, 35.863201]]]}, "bbox": [-79.016699, 35.863201, -78.69793, 36.239435]}, {"id": "37067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.137549, 36.024857], [-80.149775, 36.026697], [-80.213833, 36.026772], [-80.213906, 35.996876], [-80.26692, 35.996552], [-80.395389, 35.97321], [-80.496403, 36.046536], [-80.516138, 36.092619], [-80.439622, 36.136552], [-80.452319, 36.241222], [-80.452452, 36.241356], [-80.452379, 36.241957], [-80.451954, 36.261635], [-80.03554, 36.257351], [-80.043272, 36.01061], [-80.137549, 36.024857]]]}, "bbox": [-80.516138, 35.97321, -80.03554, 36.261635]}, {"id": "37069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.496474, 36.175217], [-78.422426, 36.16416], [-78.307012, 36.266159], [-78.132887, 36.246445], [-78.006554, 36.202663], [-78.172179, 35.956301], [-78.254903, 35.81773], [-78.307314, 35.896587], [-78.546497, 36.021804], [-78.544801, 36.080678], [-78.496474, 36.175217]]]}, "bbox": [-78.546497, 35.81773, -78.006554, 36.266159]}, {"id": "37071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.043407, 35.14839], [-81.090215, 35.152627], [-81.239358, 35.159974], [-81.241686, 35.160081], [-81.269199, 35.16114], [-81.32802, 35.163404], [-81.321314, 35.260221], [-81.364925, 35.311225], [-81.456505, 35.419616], [-81.300355, 35.414611], [-80.955388, 35.400833], [-81.008979, 35.24574], [-81.013956, 35.220588], [-81.006196, 35.210301], [-81.005061, 35.189821], [-81.005851, 35.156562], [-81.042758, 35.146042], [-81.043407, 35.14839]]]}, "bbox": [-81.456505, 35.146042, -80.955388, 35.419616]}, {"id": "37081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.03554, 36.257351], [-80.027352, 36.257507], [-79.808899, 36.249619], [-79.797538, 36.248806], [-79.700569, 36.246043], [-79.532365, 36.241342], [-79.541622, 35.902097], [-79.541978, 35.899627], [-80.020377, 35.919611], [-80.046709, 35.920663], [-80.046663, 35.935236], [-80.04575, 35.955596], [-80.045563, 35.956436], [-80.043272, 36.01061], [-80.03554, 36.257351]]]}, "bbox": [-80.046709, 35.899627, -79.532365, 36.257507]}, {"id": "37083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.89795, 36.506849], [-77.645496, 36.480956], [-77.557072, 36.418606], [-77.586041, 36.337015], [-77.441747, 36.32409], [-77.386724, 36.213662], [-77.350899, 36.19128], [-77.330993, 36.192774], [-77.300445, 36.164944], [-77.29181, 36.16849], [-77.264744, 36.159745], [-77.230694, 36.103618], [-77.327686, 36.074512], [-77.339263, 36.064681], [-77.402701, 36.004933], [-77.526809, 36.037699], [-77.538311, 36.094037], [-77.697879, 36.152981], [-77.887083, 36.14384], [-78.006554, 36.202663], [-77.912023, 36.38227], [-77.89795, 36.506849]]]}, "bbox": [-78.006554, 36.004933, -77.230694, 36.506849]}, {"id": "37087", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.254231, 35.695807], [-83.250695, 35.709349], [-83.255489, 35.714974], [-83.251247, 35.719916], [-83.240669, 35.72676], [-83.164909, 35.759965], [-83.100233, 35.774745], [-83.100329, 35.774804], [-83.100225, 35.774765], [-82.995803, 35.773128], [-82.98397, 35.77801], [-82.964108, 35.7941], [-82.883665, 35.67819], [-82.766726, 35.566764], [-82.800276, 35.470536], [-82.744383, 35.423342], [-82.745209, 35.422924], [-82.832001, 35.318434], [-82.920819, 35.291868], [-82.996829, 35.372796], [-83.186052, 35.514573], [-83.181894, 35.671127], [-83.254231, 35.695807]]]}, "bbox": [-83.255489, 35.291868, -82.744383, 35.7941]}, {"id": "37089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.35243, 35.206595], [-82.384029, 35.210542], [-82.476136, 35.175486], [-82.51691, 35.163029], [-82.517284, 35.162643], [-82.535804, 35.158699], [-82.536527, 35.159137], [-82.574406, 35.144216], [-82.619513, 35.303758], [-82.745209, 35.422924], [-82.744383, 35.423342], [-82.672392, 35.459534], [-82.570269, 35.431255], [-82.266847, 35.465854], [-82.279615, 35.445973], [-82.270255, 35.400351], [-82.261456, 35.392984], [-82.346089, 35.286038], [-82.35243, 35.206595]]]}, "bbox": [-82.745209, 35.144216, -82.261456, 35.465854]}, {"id": "37091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.706556, 36.243869], [-77.183194, 36.242692], [-77.20879, 36.246875], [-77.119577, 36.474139], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.931821, 36.40107], [-76.762156, 36.352687], [-76.696601, 36.296211], [-76.690392, 36.267269], [-76.706556, 36.243869]]]}, "bbox": [-77.20879, 36.242692, -76.690392, 36.54633]}, {"id": "37097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.109416, 35.776638], [-81.093699, 35.794033], [-81.078943, 35.802775], [-81.075682, 35.814955], [-81.064742, 35.824393], [-81.05213, 35.844848], [-81.005381, 35.958205], [-81.028884, 36.045762], [-80.88218, 36.055731], [-80.693198, 36.051114], [-80.70767, 35.852913], [-80.771518, 35.674926], [-80.757239, 35.616265], [-80.737069, 35.507163], [-80.737289, 35.505633], [-80.784339, 35.50584], [-80.94703, 35.487699], [-80.960029, 35.54781], [-80.924548, 35.621735], [-81.109416, 35.776638]]]}, "bbox": [-81.109416, 35.487699, -80.693198, 36.055731]}, {"id": "37099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.920819, 35.291868], [-82.983329, 35.131904], [-83.055352, 35.053865], [-83.008447, 35.026974], [-83.108535, 35.000771], [-83.108714, 35.000768], [-83.339707, 35.331004], [-83.351373, 35.468354], [-83.186052, 35.514573], [-82.996829, 35.372796], [-82.920819, 35.291868]]]}, "bbox": [-83.351373, 35.000768, -82.920819, 35.514573]}, {"id": "37101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.391146, 35.262632], [-78.491383, 35.263362], [-78.541262, 35.315116], [-78.530282, 35.333775], [-78.660555, 35.496245], [-78.708629, 35.519081], [-78.566633, 35.62895], [-78.473733, 35.701551], [-78.254903, 35.81773], [-78.19207, 35.730443], [-78.125587, 35.603111], [-78.064603, 35.585419], [-78.154889, 35.417627], [-78.153233, 35.351421], [-78.304662, 35.286097], [-78.332587, 35.279446], [-78.391146, 35.262632]]]}, "bbox": [-78.708629, 35.262632, -78.064603, 35.81773]}, {"id": "37107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.747639, 35.071354], [-77.769064, 35.145471], [-77.83425, 35.177814], [-77.831055, 35.23344], [-77.805564, 35.369768], [-77.77768, 35.367682], [-77.749753, 35.373241], [-77.738695, 35.374869], [-77.701681, 35.380597], [-77.680542, 35.34776], [-77.660811, 35.352757], [-77.476, 35.426684], [-77.472532, 35.425518], [-77.470067, 35.420157], [-77.427046, 35.350424], [-77.390965, 35.340047], [-77.473716, 35.228983], [-77.478741, 35.230011], [-77.52321, 35.241725], [-77.527206, 35.243433], [-77.506638, 35.172177], [-77.601831, 35.071193], [-77.730784, 35.008259], [-77.73966, 35.016641], [-77.745885, 35.022587], [-77.747639, 35.071354]]]}, "bbox": [-77.83425, 35.008259, -77.390965, 35.426684]}, {"id": "37119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.906417, 35.076608], [-80.906553, 35.076763], [-80.93495, 35.107409], [-80.95787, 35.092639], [-81.041489, 35.044703], [-81.057465, 35.061983], [-81.058029, 35.07319], [-81.057236, 35.086129], [-81.052078, 35.096276], [-81.046524, 35.100617], [-81.036163, 35.103205], [-81.032547, 35.109102], [-81.042758, 35.146042], [-81.005851, 35.156562], [-81.005061, 35.189821], [-81.006196, 35.210301], [-81.013956, 35.220588], [-81.008979, 35.24574], [-80.955388, 35.400833], [-80.94703, 35.487699], [-80.784339, 35.50584], [-80.764255, 35.400226], [-80.755284, 35.394927], [-80.744252, 35.380638], [-80.719625, 35.362842], [-80.708556, 35.355213], [-80.69362, 35.346806], [-80.667274, 35.269014], [-80.665835, 35.268181], [-80.550297, 35.208381], [-80.770385, 35.034234], [-80.840461, 35.001566], [-80.906417, 35.076608]]]}, "bbox": [-81.058029, 35.001566, -80.550297, 35.50584]}, {"id": "37125", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.614306, 35.163679], [-79.698036, 35.251451], [-79.769285, 35.511457], [-79.555896, 35.515085], [-79.351354, 35.517761], [-79.350009, 35.517991], [-79.273565, 35.353369], [-79.183301, 35.306976], [-79.223065, 35.268134], [-79.09613, 35.192181], [-79.098031, 35.188359], [-79.098726, 35.183439], [-79.096389, 35.177682], [-79.097671, 35.174172], [-79.229885, 35.210678], [-79.335189, 35.161827], [-79.459176, 35.043096], [-79.575384, 35.069815], [-79.614306, 35.163679]]]}, "bbox": [-79.769285, 35.043096, -79.09613, 35.517991]}, {"id": "37127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.915581, 35.83659], [-77.927859, 35.831508], [-77.931355, 35.830165], [-78.19207, 35.730443], [-78.254903, 35.81773], [-78.172179, 35.956301], [-78.006554, 36.202663], [-77.887083, 36.14384], [-77.697879, 36.152981], [-77.774125, 35.998742], [-77.777751, 35.984635], [-77.8091, 35.909272], [-77.822385, 35.878216], [-77.828444, 35.867208], [-77.915581, 35.83659]]]}, "bbox": [-78.254903, 35.730443, -77.697879, 36.202663]}, {"id": "37129", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.937313, 33.928645], [-77.951643, 34.232368], [-78.029922, 34.331768], [-77.822995, 34.389359], [-77.715916, 34.292719], [-77.740136, 34.272546], [-77.764022, 34.245641], [-77.829209, 34.162618], [-77.841785, 34.140747], [-77.870327, 34.079221], [-77.874384, 34.075671], [-77.878161, 34.067963], [-77.915536, 33.971723], [-77.927926, 33.945265], [-77.937313, 33.928645]]]}, "bbox": [-78.029922, 33.928645, -77.715916, 34.389359]}, {"id": "37133", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.67149, 34.811643], [-77.675373, 34.973417], [-77.452144, 34.946963], [-77.367414, 34.906631], [-77.328398, 34.938317], [-77.221606, 34.887088], [-77.165803, 34.784945], [-77.1261, 34.756927], [-77.1128, 34.639352], [-77.136843, 34.632926], [-77.169701, 34.622023], [-77.209161, 34.605032], [-77.240991, 34.587507], [-77.322524, 34.535574], [-77.462922, 34.471354], [-77.491796, 34.456098], [-77.51796, 34.440483], [-77.576411, 34.478737], [-77.68056, 34.72064], [-77.676395, 34.787182], [-77.67149, 34.811643]]]}, "bbox": [-77.68056, 34.440483, -77.1128, 34.973417]}, {"id": "37135", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.259481, 36.137273], [-79.256964, 36.243866], [-79.153733, 36.242117], [-78.95079, 36.23916], [-79.016699, 35.863201], [-79.249475, 35.876788], [-79.259481, 36.137273]]]}, "bbox": [-79.259481, 35.863201, -78.95079, 36.243866]}, {"id": "37147", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.470067, 35.420157], [-77.472532, 35.425518], [-77.476, 35.426684], [-77.509307, 35.519569], [-77.700502, 35.652256], [-77.688822, 35.660166], [-77.661312, 35.677321], [-77.538364, 35.750162], [-77.516479, 35.760866], [-77.390227, 35.83292], [-77.350602, 35.819214], [-77.174034, 35.733026], [-77.173788, 35.635336], [-77.087521, 35.564047], [-77.175418, 35.474071], [-77.17394, 35.456715], [-77.179935, 35.455811], [-77.181276, 35.440975], [-77.19123, 35.434744], [-77.189107, 35.426036], [-77.190423, 35.418955], [-77.295879, 35.379163], [-77.301155, 35.374239], [-77.353981, 35.327988], [-77.357402, 35.328827], [-77.361188, 35.331852], [-77.365484, 35.333651], [-77.374683, 35.333825], [-77.383581, 35.33536], [-77.390965, 35.340047], [-77.427046, 35.350424], [-77.470067, 35.420157]]]}, "bbox": [-77.700502, 35.327988, -77.087521, 35.83292]}, {"id": "37151", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.046923, 35.916808], [-80.046709, 35.920663], [-80.020377, 35.919611], [-79.541978, 35.899627], [-79.54249, 35.843399], [-79.555896, 35.515085], [-79.769285, 35.511457], [-80.066842, 35.505661], [-80.046923, 35.916808]]]}, "bbox": [-80.066842, 35.505661, -79.541978, 35.920663]}, {"id": "37157", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.532096, 36.248584], [-79.532329, 36.241427], [-79.532365, 36.241342], [-79.700569, 36.246043], [-79.797538, 36.248806], [-79.808899, 36.249619], [-80.027352, 36.257507], [-80.03554, 36.257351], [-80.033218, 36.344867], [-80.027269, 36.542495]]]}, "bbox": [-80.03554, 36.241342, -79.510961, 36.542502]}, {"id": "37159", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.757239, 35.616265], [-80.771518, 35.674926], [-80.70767, 35.852913], [-80.631796, 35.845784], [-80.458904, 35.742811], [-80.413844, 35.722471], [-80.391729, 35.722258], [-80.369852, 35.716236], [-80.339465, 35.721385], [-80.332228, 35.719047], [-80.326578, 35.675475], [-80.208176, 35.580401], [-80.182682, 35.504335], [-80.295236, 35.502947], [-80.562402, 35.50311], [-80.645902, 35.505913], [-80.649002, 35.505915], [-80.650431, 35.506094], [-80.657612, 35.506059], [-80.688362, 35.506561], [-80.737069, 35.507163], [-80.757239, 35.616265]]]}, "bbox": [-80.771518, 35.502947, -80.182682, 35.852913]}, {"id": "37165", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.461754, 34.630432], [-79.468717, 34.635323], [-79.471599, 34.6372], [-79.479305, 34.64464], [-79.490201, 34.653819], [-79.519043, 34.677321], [-79.520269, 34.678327], [-79.554454, 34.706363], [-79.561691, 34.711996], [-79.631577, 34.768835], [-79.634216, 34.771012], [-79.688088, 34.804897], [-79.690201, 34.804937], [-79.692948, 34.804973], [-79.561826, 34.910363], [-79.572684, 34.991968], [-79.459176, 35.043096], [-79.354278, 34.945641], [-79.349143, 34.838476], [-79.359305, 34.743079], [-79.364296, 34.737549], [-79.461754, 34.630432]]]}, "bbox": [-79.692948, 34.630432, -79.349143, 35.043096]}, {"id": "37171", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.451954, 36.261635], [-80.452379, 36.241957], [-80.452452, 36.241356], [-80.452319, 36.241222], [-80.547478, 36.285246], [-80.652865, 36.252571], [-80.873259, 36.236383], [-80.868871, 36.326516], [-80.967066, 36.4016], [-80.974619, 36.452846], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131]]]}, "bbox": [-80.974619, 36.236383, -80.4401, 36.561754]}, {"id": "37179", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.561657, 34.817481], [-80.561674, 34.817481], [-80.621222, 34.818174], [-80.625993, 34.818239], [-80.626077, 34.818217], [-80.644656, 34.818568], [-80.646601, 34.818592], [-80.771792, 34.819646], [-80.777712, 34.819697], [-80.79675, 34.825281], [-80.782042, 34.935782], [-80.806461, 34.962894], [-80.806784, 34.963249], [-80.840461, 35.001566], [-80.770385, 35.034234], [-80.550297, 35.208381], [-80.506418, 35.185226], [-80.505334, 35.184048], [-80.48259, 35.180278], [-80.468247, 35.166815], [-80.438682, 35.161758], [-80.428251, 35.167347], [-80.277052, 35.196136], [-80.320413, 34.813813], [-80.399871, 34.815128], [-80.417014, 34.815508], [-80.418433, 34.815622], [-80.419586, 34.815581], [-80.425902, 34.81581], [-80.434843, 34.815968], [-80.448766, 34.816332], [-80.45166, 34.816396], [-80.485683, 34.816732], [-80.561657, 34.817481]]]}, "bbox": [-80.840461, 34.813813, -80.277052, 35.208381]}, {"id": "37181", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.496474, 36.175217], [-78.508635, 36.183152], [-78.510319, 36.240763], [-78.5113, 36.267521], [-78.510658, 36.309712], [-78.511276, 36.430753], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.28767, 36.358369], [-78.307012, 36.266159], [-78.422426, 36.16416], [-78.496474, 36.175217]]]}, "bbox": [-78.5113, 36.16416, -78.28767, 36.543809]}, {"id": "37183", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.254903, 35.81773], [-78.473733, 35.701551], [-78.566633, 35.62895], [-78.708629, 35.519081], [-78.913296, 35.583064], [-78.995054, 35.610233], [-78.971335, 35.675614], [-78.909427, 35.842941], [-78.90617, 35.867912], [-78.831781, 35.867314], [-78.69793, 36.012306], [-78.749, 36.071246], [-78.546497, 36.021804], [-78.307314, 35.896587], [-78.254903, 35.81773]]]}, "bbox": [-78.995054, 35.519081, -78.254903, 36.071246]}, {"id": "37189", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.725938, 36.340364], [-81.720969, 36.3875], [-81.56617, 36.272064], [-81.477298, 36.240272], [-81.455579, 36.199749], [-81.545455, 36.117398], [-81.81152, 36.111544], [-81.909121, 36.216374], [-81.918113, 36.28711], [-81.908137, 36.302013], [-81.855005, 36.337259], [-81.800812, 36.358073], [-81.793688, 36.360428], [-81.789712, 36.348324], [-81.764927, 36.338672], [-81.747842, 36.337356], [-81.730976, 36.341187], [-81.725938, 36.340364]]]}, "bbox": [-81.918113, 36.111544, -81.455579, 36.3875]}, {"id": "37191", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.805564, 35.369768], [-77.831055, 35.23344], [-77.83425, 35.177814], [-77.893043, 35.14656], [-78.043617, 35.192769], [-78.163539, 35.18937], [-78.304662, 35.286097], [-78.153233, 35.351421], [-78.154889, 35.417627], [-78.064603, 35.585419], [-77.823471, 35.585523], [-77.824291, 35.498663], [-77.826207, 35.476813], [-77.827, 35.431151], [-77.818414, 35.415911], [-77.80559, 35.407469], [-77.799961, 35.382462], [-77.802742, 35.372945], [-77.805258, 35.370218], [-77.805564, 35.369768]]]}, "bbox": [-78.304662, 35.14656, -77.799961, 35.585523]}, {"id": "37193", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.477298, 36.240272], [-81.378809, 36.277983], [-81.354467, 36.355678], [-81.253482, 36.365351], [-81.094829, 36.440433], [-81.013615, 36.371271], [-80.967066, 36.4016], [-80.868871, 36.326516], [-80.873259, 36.236383], [-80.88218, 36.055731], [-81.028884, 36.045762], [-81.190911, 36.036949], [-81.328385, 35.99655], [-81.545455, 36.117398], [-81.455579, 36.199749], [-81.477298, 36.240272]]]}, "bbox": [-81.545455, 35.99655, -80.868871, 36.440433]}, {"id": "37195", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.19207, 35.730443], [-77.931355, 35.830165], [-77.927859, 35.831508], [-77.915581, 35.83659], [-77.828444, 35.867208], [-77.751567, 35.82786], [-77.661312, 35.677321], [-77.688822, 35.660166], [-77.700502, 35.652256], [-77.753646, 35.615818], [-77.801698, 35.586132], [-77.806097, 35.583457], [-77.809014, 35.584179], [-77.811456, 35.586056], [-77.816125, 35.588443], [-77.818142, 35.587825], [-77.822372, 35.585467], [-77.823471, 35.585523], [-78.064603, 35.585419], [-78.125587, 35.603111], [-78.19207, 35.730443]]]}, "bbox": [-78.19207, 35.583457, -77.661312, 35.867208]}, {"id": "38015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-100.935983, 46.98284], [-100.882172, 47.015115], [-100.965156, 47.156631], [-100.74937, 47.157245], [-100.749334, 47.327685], [-100.673445, 47.32772], [-100.669601, 47.327435], [-100.113261, 47.327262], [-100.114637, 46.981666], [-100.075229, 46.981282], [-100.081198, 46.633396], [-100.66189, 46.63445], [-100.839414, 46.763776], [-100.819089, 46.792424], [-100.935983, 46.98284]]]}, "bbox": [-100.965156, 46.633396, -100.075229, 47.32772]}, {"id": "38017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.832946, 47.237588], [-96.826655, 47.150539], [-96.824807, 47.124968], [-96.82318, 46.999965], [-96.824598, 46.993309], [-96.823222, 46.970861], [-96.791558, 46.934264], [-96.780258, 46.928263], [-96.767458, 46.905163], [-96.802013, 46.812464], [-96.784205, 46.686768], [-96.783014, 46.630647], [-97.279948, 46.629348], [-97.682006, 46.629928], [-97.681508, 46.978481], [-97.706027, 46.978558], [-97.706034, 47.239978], [-97.451512, 47.239061], [-96.833019, 47.238095], [-96.832946, 47.237588]]]}, "bbox": [-97.706034, 46.629348, -96.767458, 47.239978]}, {"id": "38035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.903434, 48.194897], [-97.147401, 48.193779], [-97.147498, 48.173227], [-97.14751, 48.170572], [-97.123135, 48.109497], [-97.098275, 48.07131], [-97.088158, 48.059515], [-97.023156, 47.873978], [-97.000356, 47.860915], [-96.980391, 47.815662], [-96.890671, 47.672153], [-97.472745, 47.672051], [-97.882405, 47.672179], [-97.882179, 48.020803], [-97.903434, 48.194897]]]}, "bbox": [-97.903434, 47.672051, -96.890671, 48.194897]}, {"id": "38101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-102.021655, 48.807108], [-102.021428, 48.720283], [-101.842135, 48.720147], [-101.841969, 48.459545], [-101.059802, 48.458448], [-101.014138, 48.371432], [-101.015024, 48.022739], [-100.970497, 48.022645], [-100.971325, 47.848703], [-101.871862, 47.847589], [-101.871537, 48.023176], [-101.922123, 48.023173], [-101.922237, 48.37233], [-101.973399, 48.372095], [-101.973322, 48.547133], [-102.233892, 48.546339], [-102.2336, 48.72029], [-102.152545, 48.720294], [-102.152164, 48.8072], [-102.021655, 48.807108]]]}, "bbox": [-102.233892, 47.847589, -100.970497, 48.8072]}, {"id": "38105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.046913, 48.389433], [-104.046969, 48.390675], [-104.047134, 48.411057], [-104.04696, 48.421065], [-104.04709, 48.445903], [-104.047192, 48.447251], [-104.047294, 48.452529], [-104.047259, 48.452941], [-104.047392, 48.467086], [-104.047555, 48.49414], [-104.047675, 48.517852], [-104.047513, 48.525913], [-104.047876, 48.530798], [-104.047648, 48.531489], [-104.047783, 48.539737], [-104.047811, 48.56277], [-104.047974, 48.591606], [-104.048212, 48.599055], [-104.04793, 48.62019], [-104.047586, 48.625644], [-104.04762, 48.627015], [-104.047582, 48.633976], [-102.885775, 48.633298], [-102.886015, 48.561179], [-102.885775, 48.560628], [-102.885763, 48.54639], [-102.885737, 48.372578], [-102.828061, 48.37292], [-102.828477, 48.123664], [-103.107083, 48.146494], [-103.20189, 48.135208], [-103.234865, 48.061923], [-103.501172, 48.005925], [-103.584774, 48.054124], [-103.548572, 48.087724], [-103.597044, 48.13441], [-103.742216, 48.093403], [-103.800817, 47.994269], [-103.856306, 48.015072], [-103.919789, 47.95595], [-104.04412, 47.996107], [-104.045399, 48.16439], [-104.045498, 48.176249], [-104.045424, 48.192473], [-104.04556, 48.193913], [-104.045692, 48.241415], [-104.045729, 48.244586], [-104.045645, 48.246179], [-104.045861, 48.255097], [-104.046039, 48.256761], [-104.046332, 48.34229], [-104.046371, 48.374154], [-104.046654, 48.374773], [-104.046913, 48.389429], [-104.046913, 48.389433]]]}, "bbox": [-104.048212, 47.95595, -102.828061, 48.633976]}, {"id": "39003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.340531, 40.859099], [-84.109586, 40.860994], [-84.109516, 40.90473], [-83.880423, 40.920429], [-83.880063, 40.819919], [-83.880194, 40.64469], [-84.107787, 40.643069], [-84.222799, 40.685957], [-84.396778, 40.684926], [-84.397374, 40.815941], [-84.340531, 40.859099]]]}, "bbox": [-84.397374, 40.643069, -83.880063, 40.920429]}, {"id": "39007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.973674, 41.858122], [-80.971141, 41.858409], [-80.958494, 41.859838], [-80.936244, 41.862352], [-80.916528, 41.865954], [-80.900342, 41.868912], [-80.853542, 41.884685], [-80.852064, 41.885183], [-80.826889, 41.893668], [-80.819165, 41.896271], [-80.816444, 41.897188], [-80.814943, 41.897694], [-80.81324, 41.89876], [-80.812659, 41.899125], [-80.808697, 41.901606], [-80.80801, 41.902304], [-80.806133, 41.904211], [-80.801436, 41.908982], [-80.800794, 41.909635], [-80.799822, 41.909749], [-80.798311, 41.909926], [-80.794388, 41.910386], [-80.78641, 41.911322], [-80.785497, 41.911429], [-80.784682, 41.911525], [-80.782944, 41.908294], [-80.782052, 41.906635], [-80.781112, 41.906897], [-80.77709, 41.908018], [-80.771784, 41.909496], [-80.770756, 41.909782], [-80.76802, 41.910545], [-80.766046, 41.911095], [-80.762176, 41.912173], [-80.757945, 41.913352], [-80.727504, 41.918593], [-80.720816, 41.919744], [-80.717469, 41.920656], [-80.712218, 41.922087], [-80.708293, 41.923157], [-80.699363, 41.925591], [-80.693429, 41.927208], [-80.635576, 41.942976], [-80.619443, 41.947373], [-80.619242, 41.947428], [-80.60861, 41.950325], [-80.581882, 41.95761], [-80.579439, 41.958499], [-80.576735, 41.959483], [-80.576591, 41.959535], [-80.5755, 41.959932], [-80.572028, 41.961196], [-80.563327, 41.964362], [-80.560671, 41.965328], [-80.555898, 41.967065], [-80.553836, 41.967815], [-80.533774, 41.973475], [-80.53139, 41.974147], [-80.530164, 41.974493], [-80.529274, 41.974744], [-80.525521, 41.975803], [-80.522057, 41.97678], [-80.519461, 41.977513], [-80.519425, 41.977523], [-80.519425, 41.977522], [-80.519405, 41.976158], [-80.519304, 41.943992], [-80.519345, 41.929168], [-80.519294, 41.849563], [-80.519239, 41.765138], [-80.519369, 41.752487], [-80.519408, 41.739359], [-80.519373, 41.701473], [-80.519424, 41.671228], [-80.519357, 41.669767], [-80.519339, 41.539297], [-80.519157, 41.528769], [-80.519225, 41.499924], [-81.003125, 41.501685], [-81.00299, 41.700009], [-81.003631, 41.715137], [-81.004763, 41.726436], [-81.002117, 41.854908], [-80.991799, 41.856074], [-80.973674, 41.858122]]]}, "bbox": [-81.004763, 41.499924, -80.519157, 41.977523]}, {"id": "39009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.055779, 39.460053], [-81.844863, 39.450216], [-81.853668, 39.318165], [-81.721808, 39.269597], [-81.721551, 39.212448], [-81.740061, 39.190652], [-81.749853, 39.186489], [-81.749689, 39.180742], [-82.268583, 39.20376], [-82.263952, 39.253289], [-82.263767, 39.253786], [-82.263645, 39.255898], [-82.263682, 39.256194], [-82.260243, 39.292915], [-82.298476, 39.294996], [-82.289663, 39.384195], [-82.28041, 39.472906], [-82.167379, 39.466307], [-82.159161, 39.556574], [-82.047528, 39.550825], [-82.055779, 39.460053]]]}, "bbox": [-82.298476, 39.180742, -81.721551, 39.556574]}, {"id": "39017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.348199, 39.348512], [-84.353209, 39.292287], [-84.391125, 39.297585], [-84.428363, 39.298659], [-84.44696, 39.300808], [-84.630992, 39.311942], [-84.819451, 39.305153], [-84.819352, 39.309454], [-84.817453, 39.391753], [-84.815754, 39.477352], [-84.815754, 39.477358], [-84.815555, 39.510952], [-84.815555, 39.511052], [-84.815355, 39.52195], [-84.815355, 39.521951], [-84.815155, 39.548051], [-84.814955, 39.566251], [-84.814955, 39.567251], [-84.815036, 39.567695], [-84.478927, 39.56879], [-84.479213, 39.591024], [-84.474246, 39.590155], [-84.365232, 39.589493], [-84.332089, 39.548803], [-84.348199, 39.348512]]]}, "bbox": [-84.819451, 39.292287, -84.332089, 39.591024]}, {"id": "39023", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.051039, 39.879807], [-84.036069, 40.040182], [-83.516155, 40.010188], [-83.588041, 39.768778], [-83.647169, 39.773029], [-83.829495, 39.797851], [-83.827425, 39.822651], [-84.053736, 39.850458], [-84.053341, 39.855117], [-84.053136, 39.856158], [-84.052136, 39.866259], [-84.051636, 39.877665], [-84.051039, 39.879807]]]}, "bbox": [-84.053736, 39.768778, -83.516155, 40.040182]}, {"id": "39025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.259431, 39.270796], [-84.006782, 39.255068], [-83.99312, 39.254235], [-83.995284, 39.228189], [-84.052707, 38.770542], [-84.071491, 38.770475], [-84.205592, 38.802588], [-84.212904, 38.805707], [-84.2253, 38.817665], [-84.229954, 38.82765], [-84.231306, 38.830552], [-84.233727, 38.853576], [-84.232478, 38.874638], [-84.232132, 38.880483], [-84.234453, 38.893226], [-84.304698, 39.006455], [-84.31368, 39.016981], [-84.319936, 39.022081], [-84.316698, 39.226944], [-84.259431, 39.270796]]]}, "bbox": [-84.319936, 38.770475, -83.99312, 39.270796]}, {"id": "39027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.988613, 39.444397], [-83.977005, 39.569169], [-83.670196, 39.550254], [-83.576286, 39.544547], [-83.590878, 39.378736], [-83.784793, 39.262888], [-83.865679, 39.247333], [-83.99312, 39.254235], [-84.006782, 39.255068], [-83.988613, 39.444397]]]}, "bbox": [-84.006782, 39.247333, -83.576286, 39.569169]}, {"id": "39029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.519764, 40.899858], [-80.519039, 40.851339], [-80.51902, 40.850073], [-80.519081, 40.849157], [-80.518992, 40.801221], [-80.519058, 40.792298], [-80.518991, 40.638801], [-80.56072, 40.62368], [-80.589041, 40.620128], [-80.594065, 40.623664], [-80.601494, 40.625387], [-80.627171, 40.619936], [-80.634355, 40.616095], [-80.665892, 40.587728], [-80.667957, 40.582496], [-80.861994, 40.599404], [-80.918125, 40.643464], [-80.917172, 40.726934], [-81.087289, 40.727816], [-81.086679, 40.901609], [-80.519764, 40.899858]]]}, "bbox": [-81.087289, 40.582496, -80.518991, 40.901609]}, {"id": "39035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.878053, 41.275044], [-81.877066, 41.343557], [-81.971262, 41.351268], [-81.96813, 41.506422], [-81.964912, 41.505446], [-81.962664, 41.501341], [-81.958463, 41.498642], [-81.937862, 41.491443], [-81.930404, 41.490457], [-81.928652, 41.490226], [-81.87736, 41.483445], [-81.860262, 41.483841], [-81.850141, 41.486255], [-81.837092, 41.489367], [-81.836059, 41.489614], [-81.810992, 41.495592], [-81.810758, 41.495648], [-81.801207, 41.496223], [-81.800253, 41.496281], [-81.799746, 41.496311], [-81.794449, 41.49663], [-81.794157, 41.496648], [-81.782258, 41.49605], [-81.768898, 41.491663], [-81.768856, 41.491649], [-81.762489, 41.49046], [-81.75861, 41.489736], [-81.746095, 41.4874], [-81.745818, 41.487348], [-81.744755, 41.48715], [-81.744272, 41.487263], [-81.741852, 41.487827], [-81.738755, 41.48855], [-81.732674, 41.491437], [-81.727806, 41.493749], [-81.726429, 41.494402], [-81.725763, 41.494718], [-81.71931, 41.497782], [-81.716836, 41.498957], [-81.71559, 41.499549], [-81.710986, 41.501734], [-81.710953, 41.50175], [-81.707622, 41.505108], [-81.706864, 41.505872], [-81.69325, 41.514161], [-81.691248, 41.515379], [-81.688058, 41.517321], [-81.664884, 41.53143], [-81.664851, 41.53145], [-81.649872, 41.535775], [-81.648453, 41.536185], [-81.641055, 41.538321], [-81.633652, 41.540458], [-81.627431, 41.544163], [-81.61691, 41.550428], [-81.616567, 41.550633], [-81.615816, 41.551079], [-81.610163, 41.554446], [-81.60967, 41.55474], [-81.599747, 41.560649], [-81.593144, 41.565462], [-81.593092, 41.5655], [-81.591981, 41.56631], [-81.591471, 41.566682], [-81.579815, 41.575178], [-81.579746, 41.575228], [-81.579727, 41.575243], [-81.579285, 41.575565], [-81.578666, 41.576016], [-81.577459, 41.576896], [-81.575715, 41.578167], [-81.575577, 41.578267], [-81.562844, 41.587549], [-81.531674, 41.612972], [-81.531612, 41.613023], [-81.529955, 41.614374], [-81.529742, 41.614548], [-81.527026, 41.615373], [-81.520707, 41.617292], [-81.509359, 41.620739], [-81.50044, 41.623448], [-81.48864, 41.631348], [-81.488934, 41.627948], [-81.488062, 41.598556], [-81.488139, 41.577328], [-81.487842, 41.570051], [-81.419936, 41.56995], [-81.41763, 41.56967], [-81.408992, 41.56985], [-81.391005, 41.569716], [-81.391694, 41.348272], [-81.399585, 41.348573], [-81.450331, 41.349148], [-81.592653, 41.351119], [-81.598061, 41.350913], [-81.590542, 41.277554], [-81.68495, 41.277146], [-81.878053, 41.275044]]]}, "bbox": [-81.971262, 41.275044, -81.391005, 41.631348]}, {"id": "39037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.803918, 40.310094], [-84.803917, 40.310115], [-84.804119, 40.352757], [-84.434631, 40.354259], [-84.432575, 40.197037], [-84.425902, 39.919622], [-84.446101, 39.919266], [-84.446511, 39.918874], [-84.448023, 39.91923], [-84.485367, 39.918491], [-84.812411, 39.916915], [-84.812411, 39.916916], [-84.812357, 39.921764], [-84.812193, 39.92734], [-84.81067, 40.005074], [-84.810099, 40.034214], [-84.809737, 40.048929], [-84.808706, 40.107216], [-84.808305, 40.127018], [-84.808291, 40.129027], [-84.806766, 40.180128], [-84.806347, 40.192252], [-84.80634, 40.192327], [-84.806175, 40.197995], [-84.805627, 40.223659], [-84.804098, 40.302498], [-84.803918, 40.310094]]]}, "bbox": [-84.812411, 39.916915, -84.425902, 40.354259]}, {"id": "39041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.749896, 40.288636], [-82.750235, 40.284087], [-82.750747, 40.276996], [-82.761827, 40.125855], [-83.063981, 40.138289], [-83.149055, 40.141563], [-83.169981, 40.143087], [-83.17233, 40.244257], [-83.248428, 40.244466], [-83.248595, 40.443989], [-83.020798, 40.433795], [-82.924781, 40.415004], [-82.929588, 40.358123], [-82.744931, 40.349603], [-82.749896, 40.288636]]]}, "bbox": [-83.248595, 40.125855, -82.744931, 40.443989]}, {"id": "39043", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-82.700208, 41.61219], [-82.691123, 41.611331], [-82.68015, 41.61897], [-82.677772, 41.617986], [-82.680669, 41.594611], [-82.686033, 41.587246], [-82.688744, 41.585896], [-82.702027, 41.585437], [-82.725827, 41.595199], [-82.735766, 41.600982], [-82.735707, 41.603361], [-82.718802, 41.619629], [-82.70731, 41.619609], [-82.703438, 41.617734], [-82.700208, 41.61219]]], [[[-82.952224, 41.458239], [-82.920239, 41.458443], [-82.90665, 41.460215], [-82.856104, 41.471923], [-82.828317, 41.481802], [-82.694722, 41.493945], [-82.687921, 41.492324], [-82.658302, 41.461878], [-82.617745, 41.431833], [-82.616952, 41.428425], [-82.55808, 41.400005], [-82.513827, 41.384257], [-82.499099, 41.381541], [-82.481214, 41.381342], [-82.460599, 41.386316], [-82.431315, 41.396866], [-82.398086, 41.413945], [-82.361784, 41.426644], [-82.348076, 41.428431], [-82.342314, 41.283554], [-82.841475, 41.290023], [-82.847713, 41.430326], [-82.952224, 41.458239]]]]}, "bbox": [-82.952224, 41.283554, -82.342314, 41.619629]}, {"id": "39045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.824254, 39.794996], [-82.811458, 39.932374], [-82.810797, 39.941162], [-82.782495, 39.939662], [-82.581813, 39.930156], [-82.473423, 39.925065], [-82.462813, 39.93038], [-82.472402, 39.837223], [-82.396594, 39.833057], [-82.374531, 39.654959], [-82.490329, 39.661704], [-82.496123, 39.602849], [-82.617546, 39.608605], [-82.620088, 39.563987], [-82.731518, 39.554445], [-82.842953, 39.56148], [-82.824254, 39.794996]]]}, "bbox": [-82.842953, 39.554445, -82.374531, 39.941162]}, {"id": "39049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.811458, 39.932374], [-82.824254, 39.794996], [-83.013071, 39.804394], [-83.243702, 39.812503], [-83.25383, 40.049218], [-83.206273, 40.107733], [-83.170208, 40.106927], [-83.169981, 40.143087], [-83.149055, 40.141563], [-83.063981, 40.138289], [-82.761827, 40.125855], [-82.782495, 39.939662], [-82.810797, 39.941162], [-82.811458, 39.932374]]]}, "bbox": [-83.25383, 39.794996, -82.761827, 40.143087]}, {"id": "39053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.139279, 38.866407], [-82.184428, 38.816529], [-82.191172, 38.815137], [-82.215759, 38.797462], [-82.221566, 38.787187], [-82.220449, 38.773739], [-82.198882, 38.757725], [-82.188268, 38.734082], [-82.182467, 38.708782], [-82.172066, 38.625984], [-82.172066, 38.619284], [-82.175167, 38.608484], [-82.177267, 38.603784], [-82.181967, 38.599384], [-82.193824, 38.593096], [-82.218967, 38.591683], [-82.245969, 38.598483], [-82.26207, 38.598183], [-82.27427, 38.593683], [-82.287102, 38.582588], [-82.361674, 38.585182], [-82.354468, 38.67607], [-82.472478, 38.682279], [-82.483579, 38.772278], [-82.582683, 38.779077], [-82.575583, 38.844478], [-82.455179, 38.844577], [-82.435309, 39.035079], [-82.322874, 39.027674], [-82.095465, 39.002778], [-82.098762, 38.958288], [-82.139279, 38.866407]]]}, "bbox": [-82.582683, 38.582588, -82.095465, 39.035079]}, {"id": "39055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.003066, 41.425928], [-81.003194, 41.424482], [-81.003319, 41.34786], [-81.391694, 41.348272], [-81.391005, 41.569716], [-81.29588, 41.56995], [-81.294669, 41.640889], [-81.101422, 41.641457], [-81.102258, 41.714307], [-81.003631, 41.715137], [-81.00299, 41.700009], [-81.003125, 41.501685], [-81.003066, 41.425928]]]}, "bbox": [-81.391694, 41.34786, -81.00299, 41.715137]}, {"id": "39059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.694146, 39.842636], [-81.728611, 39.931728], [-81.716276, 40.152166], [-81.622683, 40.221308], [-81.338057, 40.214253], [-81.339565, 40.171999], [-81.225924, 40.170075], [-81.234053, 39.95127], [-81.386006, 39.950694], [-81.464108, 39.89455], [-81.57859, 39.897683], [-81.580313, 39.839104], [-81.694146, 39.842636]]]}, "bbox": [-81.728611, 39.839104, -81.225924, 40.221308]}, {"id": "39061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.510057, 39.093593], [-84.603444, 39.073699], [-84.620112, 39.073457], [-84.623732, 39.074427], [-84.632446, 39.07676], [-84.684847, 39.100459], [-84.689747, 39.104159], [-84.718548, 39.137059], [-84.732048, 39.144458], [-84.744149, 39.147458], [-84.754449, 39.146658], [-84.766749, 39.138558], [-84.78768, 39.115297], [-84.820157, 39.10548], [-84.819985, 39.149081], [-84.819826, 39.156504], [-84.819802, 39.157613], [-84.819813, 39.244334], [-84.819801, 39.247806], [-84.819859, 39.251018], [-84.819633, 39.261855], [-84.819622, 39.27159], [-84.819451, 39.305152], [-84.819451, 39.305153], [-84.630992, 39.311942], [-84.44696, 39.300808], [-84.428363, 39.298659], [-84.391125, 39.297585], [-84.353209, 39.292287], [-84.259431, 39.270796], [-84.316698, 39.226944], [-84.319936, 39.022081], [-84.326539, 39.027463], [-84.432841, 39.094261], [-84.493743, 39.10246], [-84.502062, 39.096641], [-84.506082, 39.095081], [-84.509743, 39.09366], [-84.510057, 39.093593]]]}, "bbox": [-84.820157, 39.022081, -84.259431, 39.311942]}, {"id": "39063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.421054, 41.16678], [-83.420319, 40.991889], [-83.515883, 40.818134], [-83.880063, 40.819919], [-83.880423, 40.920429], [-83.881149, 41.167824], [-83.421054, 41.16678]]]}, "bbox": [-83.881149, 40.818134, -83.420319, 41.167824]}, {"id": "39081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.617346, 40.396004], [-80.619196, 40.381768], [-80.609313, 40.360468], [-80.599895, 40.317669], [-80.602895, 40.307069], [-80.616696, 40.28027], [-80.637198, 40.25507], [-80.644598, 40.25127], [-80.652098, 40.24497], [-80.685391, 40.187642], [-80.703052, 40.157231], [-80.882892, 40.159495], [-80.865504, 40.422929], [-80.941911, 40.4247], [-80.92092, 40.556315], [-80.861994, 40.599404], [-80.667957, 40.582496], [-80.666917, 40.573664], [-80.610259, 40.490962], [-80.599194, 40.482566], [-80.612295, 40.434867], [-80.617346, 40.396004]]]}, "bbox": [-80.941911, 40.157231, -80.599194, 40.599404]}, {"id": "39083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.364344, 40.240957], [-82.476114, 40.264703], [-82.750747, 40.276996], [-82.750235, 40.284087], [-82.749896, 40.288636], [-82.744931, 40.349603], [-82.646503, 40.345076], [-82.623609, 40.549879], [-82.374898, 40.550871], [-82.336962, 40.555001], [-82.22011, 40.568206], [-82.179069, 40.573112], [-82.184607, 40.45628], [-82.184467, 40.454262], [-82.195911, 40.239071], [-82.326025, 40.239725], [-82.364344, 40.240957]]]}, "bbox": [-82.750747, 40.239071, -82.179069, 40.573112]}, {"id": "39085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.391005, 41.569716], [-81.408992, 41.56985], [-81.41763, 41.56967], [-81.419936, 41.56995], [-81.487842, 41.570051], [-81.488139, 41.577328], [-81.488062, 41.598556], [-81.488934, 41.627948], [-81.48864, 41.631348], [-81.486919, 41.632704], [-81.477544, 41.640086], [-81.466038, 41.649148], [-81.452461, 41.663139], [-81.447734, 41.668011], [-81.443647, 41.672222], [-81.442843, 41.673051], [-81.44272, 41.673178], [-81.442645, 41.673255], [-81.442552, 41.673314], [-81.441803, 41.673783], [-81.441339, 41.674074], [-81.438971, 41.67556], [-81.437809, 41.676289], [-81.437014, 41.676788], [-81.435582, 41.677686], [-81.431441, 41.680285], [-81.413062, 41.691816], [-81.407984, 41.695002], [-81.406098, 41.696185], [-81.404476, 41.697203], [-81.402417, 41.698495], [-81.400686, 41.699581], [-81.400617, 41.699624], [-81.388632, 41.707144], [-81.388269, 41.707355], [-81.380935, 41.711622], [-81.374509, 41.715361], [-81.374454, 41.715393], [-81.373666, 41.715852], [-81.372587, 41.71648], [-81.368913, 41.718618], [-81.36867, 41.718759], [-81.367498, 41.719441], [-81.353229, 41.727743], [-81.330154, 41.737938], [-81.309499, 41.747064], [-81.30701, 41.748164], [-81.306495, 41.748392], [-81.301626, 41.750543], [-81.288892, 41.758945], [-81.286925, 41.760243], [-81.279925, 41.759944], [-81.279187, 41.759859], [-81.265576, 41.758298], [-81.264224, 41.758143], [-81.263751, 41.758239], [-81.26311, 41.758369], [-81.259349, 41.75913], [-81.25552, 41.759905], [-81.252977, 41.76042], [-81.251918, 41.760634], [-81.248672, 41.761291], [-81.248609, 41.761316], [-81.247832, 41.761623], [-81.247607, 41.761712], [-81.202359, 41.77957], [-81.201721, 41.779822], [-81.192684, 41.783389], [-81.184368, 41.786671], [-81.183328, 41.78712], [-81.167638, 41.793903], [-81.122295, 41.813503], [-81.112885, 41.817571], [-81.098931, 41.821319], [-81.095592, 41.822216], [-81.092716, 41.822988], [-81.05192, 41.839557], [-81.024525, 41.846469], [-81.01049, 41.853962], [-81.002663, 41.854846], [-81.002117, 41.854908], [-81.004763, 41.726436], [-81.003631, 41.715137], [-81.102258, 41.714307], [-81.101422, 41.641457], [-81.294669, 41.640889], [-81.29588, 41.56995], [-81.391005, 41.569716]]]}, "bbox": [-81.488934, 41.56967, -81.002117, 41.854908]}, {"id": "39087", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.50667, 38.410092], [-82.520178, 38.407582], [-82.560664, 38.404338], [-82.593673, 38.421809], [-82.665485, 38.505734], [-82.665548, 38.505808], [-82.690509, 38.536576], [-82.696621, 38.542112], [-82.724846, 38.5576], [-82.730958, 38.559264], [-82.789776, 38.559951], [-82.800112, 38.563183], [-82.816012, 38.570733], [-82.740383, 38.597167], [-82.763895, 38.679974], [-82.706823, 38.677495], [-82.650039, 38.849073], [-82.626045, 38.847647], [-82.625022, 38.84754], [-82.575583, 38.844478], [-82.582683, 38.779077], [-82.483579, 38.772278], [-82.472478, 38.682279], [-82.354468, 38.67607], [-82.361674, 38.585182], [-82.287102, 38.582588], [-82.291271, 38.578983], [-82.293871, 38.572683], [-82.293271, 38.560283], [-82.295571, 38.539783], [-82.313935, 38.468084], [-82.320223, 38.454516], [-82.323999, 38.449268], [-82.330335, 38.4445], [-82.34064, 38.440948], [-82.50667, 38.410092]]]}, "bbox": [-82.816012, 38.404338, -82.287102, 38.849073]}, {"id": "39089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.581813, 39.930156], [-82.782495, 39.939662], [-82.761827, 40.125855], [-82.750747, 40.276996], [-82.476114, 40.264703], [-82.364344, 40.240957], [-82.326025, 40.239725], [-82.195911, 40.239071], [-82.182823, 40.238624], [-82.187105, 40.16688], [-82.198772, 39.95014], [-82.233974, 39.91326], [-82.462813, 39.93038], [-82.473423, 39.925065], [-82.581813, 39.930156]]]}, "bbox": [-82.782495, 39.91326, -82.182823, 40.276996]}, {"id": "39091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.551338, 40.22937], [-84.014763, 40.273459], [-84.002372, 40.483115], [-83.993867, 40.535174], [-83.879932, 40.538708], [-83.520227, 40.504077], [-83.551338, 40.22937]]]}, "bbox": [-84.014763, 40.22937, -83.520227, 40.538708]}, {"id": "39093", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.96813, 41.506422], [-81.971262, 41.351268], [-81.877066, 41.343557], [-81.878053, 41.275044], [-81.897853, 41.274916], [-81.906227, 41.275392], [-81.914792, 41.275469], [-81.920513, 41.275379], [-81.927005, 41.274818], [-81.972485, 41.274829], [-81.973895, 41.199831], [-82.072465, 41.19985], [-82.074266, 41.136456], [-82.169875, 41.137102], [-82.171492, 41.063537], [-82.336496, 41.065761], [-82.342314, 41.283554], [-82.348076, 41.428431], [-82.334182, 41.430243], [-82.29158, 41.428442], [-82.283488, 41.429283], [-82.268479, 41.430842], [-82.254678, 41.434441], [-82.193375, 41.46454], [-82.18885, 41.468097], [-82.186174, 41.47344], [-82.184774, 41.47404], [-82.181598, 41.471634], [-82.165373, 41.47444], [-82.094169, 41.495039], [-82.011966, 41.515639], [-81.994565, 41.51444], [-81.96813, 41.506422]]]}, "bbox": [-82.348076, 41.063537, -81.877066, 41.515639]}, {"id": "39095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.453832, 41.732647], [-83.455626, 41.727445], [-83.449001, 41.710719], [-83.446032, 41.706847], [-83.409531, 41.691247], [-83.39263, 41.691947], [-83.37573, 41.686647], [-83.357073, 41.687763], [-83.341817, 41.693518], [-83.337985, 41.698682], [-83.337977, 41.70341], [-83.326825, 41.701562], [-83.298731, 41.683871], [-83.29561, 41.681905], [-83.293928, 41.680846], [-83.29068, 41.676794], [-83.289682, 41.676409], [-83.288469, 41.675941], [-83.287125, 41.675423], [-83.285181, 41.674673], [-83.278455, 41.672078], [-83.238191, 41.651167], [-83.23166, 41.644218], [-83.194524, 41.631008], [-83.165713, 41.623246], [-83.415919, 41.618938], [-83.569934, 41.61715], [-83.703336, 41.528952], [-83.712432, 41.492856], [-83.883234, 41.414503], [-83.882943, 41.487543], [-83.882455, 41.603225], [-83.880387, 41.720086], [-83.763155, 41.72391], [-83.685337, 41.726449], [-83.665937, 41.726949], [-83.639636, 41.727749], [-83.636636, 41.727849], [-83.595235, 41.729148], [-83.593835, 41.729148], [-83.585235, 41.729348], [-83.504334, 41.731547], [-83.503433, 41.731547], [-83.499733, 41.731647], [-83.497733, 41.731847], [-83.453832, 41.732647]]]}, "bbox": [-83.883234, 41.414503, -83.165713, 41.732647]}, {"id": "39099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.519167, 41.133388], [-80.519167, 41.133343], [-80.519012, 41.125116], [-80.519012, 41.125093], [-80.519012, 41.125057], [-80.519056, 41.125057], [-80.518992, 41.115958], [-80.519192, 41.105358], [-80.519125, 41.100819], [-80.519092, 41.090658], [-80.519088, 41.082074], [-80.518999, 41.075014], [-80.51896, 41.071866], [-80.518928, 41.070954], [-80.51896, 41.061546], [-80.518927, 41.015387], [-80.518989, 40.995445], [-80.519, 40.98738], [-80.519091, 40.921061], [-80.51979, 40.900761], [-80.519764, 40.899858], [-81.086679, 40.901609], [-81.086688, 40.931737], [-81.086642, 40.932189], [-81.086601, 40.937622], [-81.086918, 40.939658], [-81.086614, 40.940774], [-81.086601, 40.944758], [-81.086719, 40.944945], [-81.086919, 40.981164], [-81.086817, 40.988158], [-81.001695, 40.987783], [-81.00229, 41.134189], [-80.789472, 41.134159], [-80.519167, 41.133388]]]}, "bbox": [-81.086919, 40.899858, -80.518927, 41.134189]}, {"id": "39101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.419836, 40.686823], [-83.304687, 40.702006], [-83.11136, 40.702915], [-82.858302, 40.705019], [-82.859753, 40.646395], [-82.957817, 40.645148], [-82.958401, 40.490664], [-83.020798, 40.433795], [-83.248595, 40.443989], [-83.248183, 40.507034], [-83.418378, 40.505232], [-83.415303, 40.515495], [-83.419836, 40.686823]]]}, "bbox": [-83.419836, 40.433795, -82.858302, 40.705019]}, {"id": "39103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.973895, 41.199831], [-81.972485, 41.274829], [-81.927005, 41.274818], [-81.920513, 41.275379], [-81.914792, 41.275469], [-81.906227, 41.275392], [-81.897853, 41.274916], [-81.878053, 41.275044], [-81.68495, 41.277146], [-81.685646, 41.202132], [-81.688491, 40.98859], [-82.129334, 40.991807], [-82.173359, 40.992046], [-82.171492, 41.063537], [-82.169875, 41.137102], [-82.074266, 41.136456], [-82.072465, 41.19985], [-81.973895, 41.199831]]]}, "bbox": [-82.173359, 40.98859, -81.68495, 41.277146]}, {"id": "39107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.455713, 40.567888], [-84.455418, 40.358589], [-84.434387, 40.354534], [-84.431632, 40.354198], [-84.434631, 40.354259], [-84.804119, 40.352757], [-84.804119, 40.352844], [-84.803068, 40.465388], [-84.802483, 40.528046], [-84.802265, 40.572212], [-84.802265, 40.572215], [-84.802135, 40.644859], [-84.802193, 40.660298], [-84.80222, 40.674776], [-84.802157, 40.689324], [-84.802127, 40.691405], [-84.802094, 40.702476], [-84.802181, 40.718602], [-84.802119, 40.728146], [-84.456172, 40.728306], [-84.45618, 40.684862], [-84.455713, 40.567888]]]}, "bbox": [-84.804119, 40.352757, -84.431632, 40.728306]}, {"id": "39109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.157223, 39.88563], [-84.157671, 39.92297], [-84.425902, 39.919622], [-84.432575, 40.197037], [-84.022919, 40.183945], [-84.036069, 40.040182], [-84.051039, 39.879807], [-84.056413, 39.879875], [-84.098237, 39.882529], [-84.10483, 39.882652], [-84.154452, 39.885587], [-84.157223, 39.88563]]]}, "bbox": [-84.432575, 39.879807, -84.022919, 40.197037]}, {"id": "39113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.157223, 39.88563], [-84.154452, 39.885587], [-84.10483, 39.882652], [-84.098237, 39.882529], [-84.056413, 39.879875], [-84.051039, 39.879807], [-84.051636, 39.877665], [-84.052136, 39.866259], [-84.053136, 39.856158], [-84.053341, 39.855117], [-84.053736, 39.850458], [-84.055238, 39.835958], [-84.092938, 39.838345], [-84.096937, 39.793033], [-84.114195, 39.577983], [-84.187334, 39.583081], [-84.365232, 39.589493], [-84.474246, 39.590155], [-84.479213, 39.591024], [-84.485367, 39.918491], [-84.448023, 39.91923], [-84.446511, 39.918874], [-84.446101, 39.919266], [-84.425902, 39.919622], [-84.157671, 39.92297], [-84.157223, 39.88563]]]}, "bbox": [-84.485367, 39.577983, -84.051039, 39.92297]}, {"id": "39119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.076639, 39.77096], [-82.072934, 39.816227], [-82.170047, 39.82075], [-82.162372, 39.909374], [-82.233974, 39.91326], [-82.198772, 39.95014], [-82.187105, 40.16688], [-81.716868, 40.152863], [-81.716276, 40.152166], [-81.728611, 39.931728], [-81.694146, 39.842636], [-81.697442, 39.755572], [-82.076639, 39.77096]]]}, "bbox": [-82.233974, 39.755572, -81.694146, 40.16688]}, {"id": "39139", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.41648, 40.902252], [-82.378397, 40.727145], [-82.339211, 40.726683], [-82.336962, 40.555001], [-82.374898, 40.550871], [-82.623609, 40.549879], [-82.627191, 40.709416], [-82.727164, 40.711203], [-82.724792, 40.995638], [-82.432852, 40.992944], [-82.4179, 40.992938], [-82.41648, 40.902252]]]}, "bbox": [-82.727164, 40.549879, -82.336962, 40.995638]}, {"id": "39141", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.998204, 39.480061], [-82.740729, 39.46835], [-82.740771, 39.466029], [-82.748591, 39.368165], [-82.762892, 39.207967], [-82.766692, 39.167768], [-82.785891, 39.168769], [-83.353531, 39.197585], [-83.393511, 39.267272], [-83.372714, 39.377416], [-83.317496, 39.449993], [-83.266737, 39.516249], [-82.98456, 39.506754], [-82.998204, 39.480061]]]}, "bbox": [-83.393511, 39.167768, -82.740729, 39.516249]}, {"id": "39143", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.414626, 41.500228], [-83.338196, 41.457508], [-82.952224, 41.458239], [-82.847713, 41.430326], [-82.841475, 41.290023], [-82.840087, 41.255337], [-83.419843, 41.254003], [-83.414626, 41.500228]]]}, "bbox": [-83.419843, 41.254003, -82.840087, 41.500228]}, {"id": "39145", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.04362, 38.956939], [-82.80709, 38.948073], [-82.753391, 38.945373], [-82.76069, 38.854875], [-82.650039, 38.849073], [-82.706823, 38.677495], [-82.763895, 38.679974], [-82.740383, 38.597167], [-82.816012, 38.570733], [-82.820161, 38.572703], [-82.839538, 38.586159], [-82.847186, 38.595166], [-82.853554, 38.610926], [-82.869592, 38.678177], [-82.873492, 38.710077], [-82.870392, 38.722077], [-82.869992, 38.730477], [-82.871292, 38.739376], [-82.874466, 38.745346], [-82.875492, 38.747276], [-82.879492, 38.751476], [-82.889193, 38.756076], [-82.894193, 38.756576], [-82.923694, 38.750076], [-82.943147, 38.74328], [-82.968695, 38.728776], [-82.979395, 38.725976], [-83.011816, 38.730057], [-83.030702, 38.72572], [-83.030889, 38.72556], [-83.127652, 38.642451], [-83.135046, 38.631719], [-83.142836, 38.625076], [-83.156926, 38.620547], [-83.265769, 38.605278], [-83.270817, 39.015791], [-83.212107, 38.960148], [-83.04362, 38.956939]]]}, "bbox": [-83.270817, 38.570733, -82.650039, 39.015791]}, {"id": "39151", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.467584, 40.907965], [-81.420418, 40.906504], [-81.393429, 40.988528], [-81.086817, 40.988158], [-81.086919, 40.981164], [-81.086719, 40.944945], [-81.086601, 40.944758], [-81.086614, 40.940774], [-81.086918, 40.939658], [-81.086601, 40.937622], [-81.086642, 40.932189], [-81.086688, 40.931737], [-81.086679, 40.901609], [-81.087289, 40.727816], [-81.237227, 40.723542], [-81.24125, 40.650534], [-81.317739, 40.651579], [-81.649199, 40.635106], [-81.650048, 40.65526], [-81.650045, 40.668117], [-81.647736, 40.914386], [-81.64595, 40.914257], [-81.467584, 40.907965]]]}, "bbox": [-81.650048, 40.635106, -81.086601, 40.988528]}, {"id": "39153", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.590542, 41.277554], [-81.598061, 41.350913], [-81.592653, 41.351119], [-81.450331, 41.349148], [-81.399585, 41.348573], [-81.391694, 41.348272], [-81.391686, 41.3413], [-81.391933, 41.336635], [-81.391593, 41.33155], [-81.391831, 41.276654], [-81.392357, 41.136952], [-81.392114, 41.135722], [-81.393429, 40.988528], [-81.420418, 40.906504], [-81.467584, 40.907965], [-81.64595, 40.914257], [-81.647736, 40.914386], [-81.688491, 40.98859], [-81.685646, 41.202132], [-81.68495, 41.277146], [-81.590542, 41.277554]]]}, "bbox": [-81.688491, 40.906504, -81.391593, 41.351119]}, {"id": "39155", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.519345, 41.34074], [-80.519345, 41.340145], [-80.519293, 41.339654], [-80.519293, 41.339054], [-80.519311, 41.339052], [-80.519281, 41.337174], [-80.519281, 41.337145], [-80.519281, 41.335958], [-80.519265, 41.333495], [-80.519129, 41.312408], [-80.518794, 41.305509], [-80.518996, 41.2683], [-80.518993, 41.268155], [-80.518893, 41.265155], [-80.518693, 41.248855], [-80.518893, 41.232556], [-80.518893, 41.219357], [-80.518893, 41.219356], [-80.51883, 41.209213], [-80.519144, 41.171203], [-80.519115, 41.14552], [-80.519167, 41.133388], [-80.789472, 41.134159], [-81.00229, 41.134189], [-81.00288, 41.271842], [-81.003319, 41.34786], [-81.003194, 41.424482], [-81.003066, 41.425928], [-81.003125, 41.501685], [-80.519225, 41.499924], [-80.519209, 41.489013], [-80.519169, 41.462581], [-80.518993, 41.435454], [-80.518993, 41.416437], [-80.519025, 41.416438], [-80.519249, 41.378918], [-80.519217, 41.372006], [-80.519249, 41.36103], [-80.519297, 41.350833], [-80.519345, 41.34074]]]}, "bbox": [-81.003319, 41.133388, -80.518693, 41.501685]}, {"id": "39157", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.649199, 40.635106], [-81.317739, 40.651579], [-81.321659, 40.566648], [-81.264744, 40.565042], [-81.269951, 40.433486], [-81.275319, 40.303434], [-81.334601, 40.304316], [-81.338057, 40.214253], [-81.622683, 40.221308], [-81.61603, 40.368118], [-81.712288, 40.370804], [-81.709132, 40.444775], [-81.669654, 40.443866], [-81.649199, 40.635106]]]}, "bbox": [-81.712288, 40.214253, -81.264744, 40.651579]}, {"id": "39167", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.371271, 39.342062], [-81.375961, 39.341697], [-81.384556, 39.343449], [-81.393794, 39.351706], [-81.406689, 39.38809], [-81.412706, 39.394618], [-81.435642, 39.408474], [-81.446543, 39.410374], [-81.456143, 39.409274], [-81.467744, 39.403774], [-81.542346, 39.352874], [-81.605816, 39.275851], [-81.695724, 39.242859], [-81.721551, 39.212448], [-81.721808, 39.269597], [-81.853668, 39.318165], [-81.844863, 39.450216], [-81.823158, 39.494072], [-81.708527, 39.480775], [-81.714447, 39.584236], [-81.588185, 39.586973], [-81.473471, 39.583318], [-81.47316, 39.645976], [-81.394934, 39.601547], [-81.283075, 39.605796], [-81.246808, 39.579037], [-81.036791, 39.572118], [-81.038691, 39.540464], [-81.063587, 39.520497], [-81.127696, 39.464879], [-81.215617, 39.388602], [-81.223581, 39.386062], [-81.249088, 39.389992], [-81.270716, 39.385914], [-81.295373, 39.37529], [-81.347567, 39.34577], [-81.356911, 39.343178], [-81.371271, 39.342062]]]}, "bbox": [-81.853668, 39.212448, -81.036791, 39.645976]}, {"id": "39169", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.1279, 40.900902], [-82.128544, 40.929977], [-82.127904, 40.937321], [-82.129334, 40.991807], [-81.688491, 40.98859], [-81.647736, 40.914386], [-81.650045, 40.668117], [-82.126199, 40.668229], [-82.12501, 40.886263], [-82.1279, 40.900902]]]}, "bbox": [-82.129334, 40.668117, -81.647736, 40.991807]}, {"id": "40013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.846334, 33.841136], [-95.949935, 33.857452], [-96.097526, 33.847544], [-96.14807, 33.837799], [-96.156717, 33.813324], [-96.1641, 33.784261], [-96.170055, 33.76917], [-96.181704, 33.758504], [-96.1999, 33.752117], [-96.220521, 33.74739], [-96.229859, 33.74832], [-96.304675, 33.745901], [-96.36959, 33.716809], [-96.378473, 33.726648], [-96.423362, 33.776365], [-96.436455, 33.78005], [-96.448045, 33.781031], [-96.500268, 33.772583], [-96.612925, 33.833939], [-96.61487, 33.841234], [-96.615843, 33.853393], [-96.612963, 33.867651], [-96.611466, 33.875278], [-96.613494, 33.878321], [-96.57701, 33.964406], [-96.624748, 34.005417], [-96.548028, 34.063302], [-96.585355, 34.114459], [-96.453839, 34.114406], [-96.40764, 34.157317], [-95.991578, 34.156815], [-95.93815, 34.1251], [-95.937947, 33.948163], [-95.836905, 33.873374], [-95.757156, 33.867293], [-95.763622, 33.847954], [-95.82468, 33.837726], [-95.846334, 33.841136]]]}, "bbox": [-96.624748, 33.716809, -95.757156, 34.157317]}, {"id": "40019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.933671, 34.172553], [-96.969627, 34.07102], [-97.560764, 34.071089], [-97.562616, 34.082921], [-97.562575, 34.289182], [-97.562323, 34.507036], [-97.35211, 34.506788], [-97.352158, 34.376227], [-97.036488, 34.375415], [-96.933457, 34.332661], [-96.933671, 34.172553]]]}, "bbox": [-97.562616, 34.07102, -96.933457, 34.507036]}, {"id": "40021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.807297, 35.638604], [-95.127464, 35.638894], [-95.127163, 35.812755], [-95.265679, 35.813266], [-95.231459, 35.851195], [-95.278701, 35.964102], [-95.207946, 36.074708], [-95.118377, 36.074544], [-95.1185, 36.16163], [-95.011303, 36.161815], [-94.797279, 36.16139], [-94.807297, 35.638604]]]}, "bbox": [-95.278701, 35.638604, -94.797279, 36.161815]}, {"id": "40027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.671369, 35.377151], [-97.423566, 35.377316], [-97.264992, 35.377368], [-97.142114, 35.37686], [-97.142349, 34.928176], [-97.341509, 34.964001], [-97.354192, 35.076656], [-97.54146, 35.214165], [-97.556987, 35.28844], [-97.671529, 35.337508], [-97.671369, 35.377151]]]}, "bbox": [-97.671529, 34.928176, -97.142114, 35.377368]}, {"id": "40031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.142148, 34.506994], [-98.24412, 34.507121], [-98.295928, 34.449043], [-98.504958, 34.449414], [-98.504988, 34.420452], [-98.661956, 34.405948], [-98.661982, 34.50746], [-98.82607, 34.50737], [-98.826008, 34.594413], [-98.826124, 34.855466], [-98.619816, 34.854953], [-98.092645, 34.854919], [-98.089558, 34.854929], [-98.089098, 34.681119], [-98.141799, 34.681158], [-98.142148, 34.506994]]]}, "bbox": [-98.826124, 34.405948, -98.089098, 34.855466]}, {"id": "40047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.462459, 36.593627], [-97.461603, 36.593637], [-97.460792, 36.164462], [-97.675617, 36.164663], [-98.103904, 36.164877], [-98.104427, 36.463105], [-98.104286, 36.593578], [-97.462459, 36.593627]]]}, "bbox": [-98.104427, 36.164462, -97.460792, 36.593637]}, {"id": "40071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.749838, 36.998988], [-96.752382, 36.782092], [-96.889475, 36.75123], [-96.931943, 36.686097], [-97.064107, 36.684207], [-97.057414, 36.593647], [-97.461603, 36.593637], [-97.462459, 36.593627], [-97.462346, 36.998685], [-97.46228, 36.998685], [-97.384925, 36.998843], [-97.372421, 36.998861], [-97.147721, 36.999111], [-97.122597, 36.999036], [-97.120285, 36.999014], [-97.104276, 36.99902], [-97.100652, 36.998998], [-97.039784, 36.999], [-97.030082, 36.998929], [-96.975562, 36.999019], [-96.967371, 36.999067], [-96.934642, 36.99907], [-96.921915, 36.999151], [-96.917093, 36.999182], [-96.90351, 36.999132], [-96.902083, 36.999155], [-96.87629, 36.999233], [-96.867517, 36.999217], [-96.822791, 36.999182], [-96.795199, 36.99886], [-96.79206, 36.99918], [-96.749838, 36.998988]]]}, "bbox": [-97.462459, 36.593627, -96.749838, 36.999233]}, {"id": "40101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.766166, 35.856403], [-95.65042, 35.856756], [-95.638313, 35.787596], [-95.265679, 35.813266], [-95.127163, 35.812755], [-95.127464, 35.638894], [-95.132437, 35.526196], [-95.049933, 35.458894], [-95.170462, 35.310106], [-95.243809, 35.261636], [-95.34465, 35.293097], [-95.34503, 35.552241], [-95.712957, 35.551802], [-95.713081, 35.725807], [-95.766265, 35.72575], [-95.766166, 35.856403]]]}, "bbox": [-95.766265, 35.261636, -95.049933, 35.856756]}, {"id": "40109", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.264992, 35.377368], [-97.423566, 35.377316], [-97.671369, 35.377151], [-97.671319, 35.464338], [-97.674026, 35.72597], [-97.141072, 35.724441], [-97.14149, 35.463977], [-97.142114, 35.37686], [-97.264992, 35.377368]]]}, "bbox": [-97.674026, 35.37686, -97.141072, 35.72597]}, {"id": "40111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.192563, 35.639087], [-96.192482, 35.857021], [-96.033118, 35.856824], [-95.819964, 35.8559], [-95.806224, 35.856028], [-95.805637, 35.856577], [-95.766166, 35.856403], [-95.766265, 35.72575], [-95.713081, 35.725807], [-95.712957, 35.551802], [-95.822361, 35.551693], [-95.823396, 35.463969], [-95.875572, 35.463625], [-95.875626, 35.37669], [-95.981307, 35.376828], [-96.08753, 35.376877], [-96.087795, 35.552119], [-96.192844, 35.551902], [-96.192563, 35.639087]]]}, "bbox": [-96.192844, 35.37669, -95.712957, 35.857021]}, {"id": "40119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.140583, 35.941991], [-97.32362, 36.010877], [-97.35387, 35.984934], [-97.354132, 36.159072], [-97.140668, 36.159231], [-97.140968, 36.246435], [-96.925069, 36.246474], [-96.818968, 36.246478], [-96.819005, 36.158886], [-96.621441, 36.159929], [-96.621097, 35.941519], [-97.140583, 35.941991]]]}, "bbox": [-97.354132, 35.941519, -96.621097, 36.246478]}, {"id": "40121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.671976, 34.593852], [-95.881987, 34.593528], [-95.882103, 34.680475], [-96.092043, 34.680556], [-96.092001, 34.767479], [-96.088843, 35.049863], [-95.98371, 35.151557], [-95.870663, 35.185986], [-95.75597, 35.177198], [-95.628064, 35.246798], [-95.59938, 35.221651], [-95.45125, 35.296019], [-95.454954, 35.160577], [-95.349339, 35.160296], [-95.349233, 35.058514], [-95.349437, 35.029299], [-95.507658, 35.029197], [-95.514514, 34.681142], [-95.514315, 34.594153], [-95.671976, 34.593852]]]}, "bbox": [-96.092043, 34.593528, -95.349233, 35.296019]}, {"id": "40123", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.930586, 34.964364], [-96.821488, 34.946112], [-96.775681, 34.899958], [-96.722891, 34.856782], [-96.556889, 34.914184], [-96.490786, 34.910585], [-96.406187, 34.908371], [-96.406483, 34.76759], [-96.406357, 34.680023], [-96.512171, 34.680065], [-96.513865, 34.505389], [-96.827288, 34.505989], [-96.82729, 34.59322], [-96.932423, 34.593261], [-96.932328, 34.636811], [-96.932471, 34.854455], [-96.930872, 34.854632], [-96.930586, 34.964364]]]}, "bbox": [-96.932471, 34.505389, -96.406187, 34.964364]}, {"id": "40125", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.623699, 35.400722], [-96.776707, 35.411372], [-96.775681, 34.899958], [-96.821488, 34.946112], [-96.930586, 34.964364], [-97.01593, 34.907348], [-97.142349, 34.928176], [-97.142114, 35.37686], [-97.14149, 35.463977], [-96.624865, 35.462706], [-96.623699, 35.400722]]]}, "bbox": [-97.142349, 34.899958, -96.623699, 35.463977]}, {"id": "40131", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.726408, 36.162496], [-95.730293, 36.162288], [-95.73201, 36.162498], [-95.743981, 36.162498], [-95.745119, 36.162823], [-95.747764, 36.162498], [-95.751545, 36.162723], [-95.76165, 36.16275], [-95.8154, 36.16263], [-95.81268, 36.42356], [-95.812449, 36.597516], [-95.809617, 36.597476], [-95.66077, 36.59752], [-95.43157, 36.59754], [-95.32837, 36.59763], [-95.32817, 36.51024], [-95.43561, 36.51016], [-95.43997, 36.0752], [-95.571525, 36.075282], [-95.61852, 36.162512], [-95.726408, 36.162496]]]}, "bbox": [-95.8154, 36.0752, -95.32817, 36.59763]}, {"id": "40143", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.029544, 35.988387], [-96.029583, 36.075366], [-96.297786, 36.075779], [-96.297888, 36.162279], [-96.268287, 36.16198], [-96.001055, 36.161294], [-96.001171, 36.423686], [-95.81268, 36.42356], [-95.8154, 36.16263], [-95.76165, 36.16275], [-95.761687, 35.900811], [-95.819964, 35.8559], [-96.033118, 35.856824], [-96.029544, 35.988387]]]}, "bbox": [-96.297888, 35.8559, -95.76165, 36.423686]}, {"id": "40147", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.001171, 36.423686], [-96.00081, 36.99886], [-95.96427, 36.999094], [-95.936992, 36.999268], [-95.928122, 36.999245], [-95.91018, 36.999336], [-95.877151, 36.999304], [-95.875257, 36.999302], [-95.873944, 36.9993], [-95.866899, 36.999261], [-95.80798, 36.999124], [-95.786762, 36.99931], [-95.80982, 36.94193], [-95.809617, 36.597476], [-95.812449, 36.597516], [-95.81268, 36.42356], [-96.001171, 36.423686]]]}, "bbox": [-96.001171, 36.42356, -95.786762, 36.999336]}, {"id": "41003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-123.602566, 44.721191], [-123.580757, 44.719441], [-123.347514, 44.720105], [-123.149058, 44.720277], [-123.073643, 44.657331], [-123.164428, 44.637507], [-123.260338, 44.555391], [-123.214683, 44.507681], [-123.205287, 44.443038], [-123.2436, 44.378545], [-123.18398, 44.283691], [-123.77542, 44.283561], [-123.816931, 44.344804], [-123.715212, 44.360569], [-123.72042, 44.433053], [-123.597217, 44.43289], [-123.602566, 44.721191]]]}, "bbox": [-123.816931, 44.283561, -123.073643, 44.721191]}, {"id": "41005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.696808, 45.258017], [-121.681033, 45.250788], [-121.682607, 45.228988], [-121.701557, 45.230198], [-121.745966, 45.186272], [-121.659355, 45.066511], [-121.805051, 45.01131], [-121.734167, 44.885782], [-122.395327, 44.885734], [-122.508396, 44.919805], [-122.788386, 45.130129], [-122.738988, 45.259532], [-122.849723, 45.259654], [-122.867816, 45.259585], [-122.868009, 45.317376], [-122.743741, 45.33201], [-122.744065, 45.433283], [-122.648725, 45.432718], [-122.651305, 45.436541], [-122.645205, 45.441641], [-122.652605, 45.445741], [-122.660979, 45.457819], [-121.820394, 45.461666], [-121.696889, 45.373758], [-121.696808, 45.258017]]]}, "bbox": [-122.868009, 44.885734, -121.659355, 45.461666]}, {"id": "41011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-123.812093, 42.789433], [-124.132985, 42.666379], [-124.141977, 42.849334], [-124.257111, 42.954757], [-124.479344, 42.95497], [-124.462619, 42.99143], [-124.456918, 43.000315], [-124.436198, 43.071312], [-124.432236, 43.097383], [-124.434451, 43.115986], [-124.424113, 43.126859], [-124.401726, 43.184896], [-124.395302, 43.211101], [-124.395607, 43.223908], [-124.38246, 43.270167], [-124.388891, 43.290523], [-124.393988, 43.29926], [-124.400404, 43.302121], [-124.402814, 43.305872], [-124.387642, 43.325968], [-124.373037, 43.338953], [-124.353332, 43.342667], [-124.341587, 43.351337], [-124.315012, 43.388389], [-124.286896, 43.436296], [-124.255609, 43.502172], [-124.233534, 43.55713], [-124.218876, 43.610319], [-123.875424, 43.608254], [-123.875529, 43.515949], [-123.816834, 43.51603], [-123.817707, 43.431237], [-123.764005, 43.432237], [-123.764, 43.257935], [-123.703798, 43.257835], [-123.701989, 43.087288], [-123.76063, 43.083127], [-123.762095, 42.996036], [-123.820798, 42.995935], [-123.812093, 42.789433]]]}, "bbox": [-124.479344, 42.666379, -123.701989, 43.610319]}, {"id": "41017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.799359, 44.258138], [-121.842667, 44.39244], [-121.107344, 44.390542], [-121.102637, 44.138042], [-120.987333, 44.133843], [-120.986527, 43.960943], [-120.748317, 43.957068], [-120.747946, 43.871266], [-120.3789, 43.871955], [-120.378508, 43.785033], [-120.257893, 43.785259], [-120.258018, 43.698762], [-119.898172, 43.698323], [-119.896365, 43.610259], [-120.368029, 43.611472], [-120.378194, 43.611059], [-120.378194, 43.615452], [-121.332982, 43.616629], [-122.002675, 43.615228], [-121.964854, 43.626826], [-121.986187, 43.661633], [-121.960872, 43.763805], [-121.975479, 43.856875], [-121.92018, 43.913816], [-121.869269, 43.911893], [-121.76855, 44.101437], [-121.799359, 44.258138]]]}, "bbox": [-122.002675, 43.610259, -119.896365, 44.39244]}, {"id": "41029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-123.230024, 42.287494], [-123.229857, 42.551783], [-123.2299, 42.702486], [-123.151421, 42.756069], [-122.794793, 42.779422], [-122.677211, 42.881341], [-122.460053, 42.939852], [-122.400467, 42.996426], [-122.281856, 42.996556], [-122.287446, 42.127168], [-122.290351, 42.127092], [-122.28974, 42.122561], [-122.289533, 42.007764], [-122.378193, 42.009518], [-122.501135, 42.00846], [-122.634739, 42.004858], [-123.001152, 42.003], [-123.045254, 42.003049], [-123.154908, 42.008036], [-123.230762, 42.003845], [-123.230764, 42.003845], [-123.230024, 42.287494]]]}, "bbox": [-123.230764, 42.003, -122.281856, 42.996556]}, {"id": "41033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-123.230024, 42.287494], [-123.230764, 42.003845], [-123.347562, 41.999108], [-123.49883, 42.000525], [-123.498896, 42.000474], [-123.501997, 42.000527], [-123.518075, 42.000436], [-123.624554, 41.999837], [-123.821472, 41.995473], [-123.856786, 42.141132], [-123.791241, 42.236398], [-123.839687, 42.311532], [-123.892189, 42.352831], [-124.025894, 42.35913], [-124.041983, 42.387656], [-124.008397, 42.496352], [-123.885746, 42.504233], [-123.831762, 42.632561], [-123.71619, 42.784234], [-123.715088, 42.739735], [-123.444177, 42.703138], [-123.365975, 42.73204], [-123.2299, 42.702486], [-123.229857, 42.551783], [-123.230024, 42.287494]]]}, "bbox": [-124.041983, 41.995473, -123.229857, 42.784234]}, {"id": "41035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.132044, 43.440445], [-122.130944, 43.557149], [-122.002675, 43.615228], [-121.332982, 43.616629], [-121.332708, 43.43857], [-121.348576, 43.356691], [-121.34988, 42.746671], [-120.88334, 42.743883], [-120.879481, 41.993781], [-121.035195, 41.993323], [-121.154347, 41.996352], [-121.334385, 41.996655], [-121.335734, 41.996518], [-121.340517, 41.99622], [-121.360253, 41.99668], [-121.376101, 41.997026], [-121.434977, 41.997022], [-121.43961, 41.99708], [-121.44754, 41.997169], [-121.52025, 41.997983], [-121.580865, 41.998668], [-121.675348, 42.000351], [-121.689159, 42.000584], [-121.705045, 42.000766], [-121.708199, 42.000815], [-122.001119, 42.004017], [-122.155408, 42.007429], [-122.156666, 42.007384], [-122.160438, 42.007637], [-122.161328, 42.007637], [-122.289527, 42.007764], [-122.289533, 42.007764], [-122.28974, 42.122561], [-122.290351, 42.127092], [-122.287446, 42.127168], [-122.281856, 42.996556], [-122.282245, 43.067547], [-122.091539, 43.07605], [-122.037839, 43.21725], [-121.973841, 43.261728], [-122.010239, 43.343249], [-122.132044, 43.440445]]]}, "bbox": [-122.290351, 41.993323, -120.879481, 43.616629]}, {"id": "41039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.132044, 43.440445], [-122.740765, 43.437142], [-122.741771, 43.544553], [-123.107475, 43.540004], [-123.137064, 43.60597], [-123.137677, 43.779666], [-123.347659, 43.780169], [-123.348016, 43.809165], [-123.470506, 43.810196], [-123.579681, 43.868138], [-123.6193, 43.92013], [-123.703461, 43.945131], [-123.827622, 43.945045], [-123.925513, 43.899167], [-123.92551, 43.865633], [-124.158684, 43.863504], [-124.150267, 43.91085], [-124.142704, 43.958182], [-124.133547, 44.035845], [-124.122406, 44.104442], [-124.125824, 44.12613], [-124.117006, 44.171913], [-124.114424, 44.198164], [-124.115671, 44.206554], [-124.111054, 44.235071], [-124.108945, 44.265475], [-124.109744, 44.270597], [-124.114869, 44.272721], [-124.115953, 44.274641], [-124.115849, 44.276277], [-123.77542, 44.283561], [-123.18398, 44.283691], [-123.165394, 44.200021], [-122.905594, 44.200247], [-122.864595, 44.287947], [-122.760494, 44.290548], [-122.577089, 44.228149], [-122.386174, 44.217149], [-122.326584, 44.253349], [-121.799359, 44.258138], [-121.76855, 44.101437], [-121.869269, 43.911893], [-121.92018, 43.913816], [-121.975479, 43.856875], [-121.960872, 43.763805], [-121.986187, 43.661633], [-121.964854, 43.626826], [-122.002675, 43.615228], [-122.130944, 43.557149], [-122.132044, 43.440445]]]}, "bbox": [-124.158684, 43.437142, -121.76855, 44.290548]}, {"id": "41043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-123.260338, 44.555391], [-123.164428, 44.637507], [-123.073643, 44.657331], [-123.149058, 44.720277], [-123.150429, 44.727611], [-123.133529, 44.738662], [-123.143556, 44.74967], [-123.061509, 44.747952], [-123.006847, 44.686898], [-122.798369, 44.791564], [-122.619769, 44.78895], [-122.478373, 44.755551], [-122.288446, 44.753065], [-122.230559, 44.697867], [-122.154047, 44.719762], [-122.033233, 44.685678], [-121.794077, 44.68394], [-121.842667, 44.39244], [-121.799359, 44.258138], [-122.326584, 44.253349], [-122.386174, 44.217149], [-122.577089, 44.228149], [-122.760494, 44.290548], [-122.864595, 44.287947], [-122.905594, 44.200247], [-123.165394, 44.200021], [-123.18398, 44.283691], [-123.2436, 44.378545], [-123.205287, 44.443038], [-123.214683, 44.507681], [-123.260338, 44.555391]]]}, "bbox": [-123.260338, 44.200021, -121.794077, 44.791564]}, {"id": "41045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-116.961535, 43.918388], [-116.979186, 43.879973], [-116.982482, 43.872799], [-116.996504, 43.864714], [-117.026634, 43.808104], [-117.026651, 43.733935], [-117.026841, 43.732905], [-117.026725, 43.714815], [-117.026825, 43.706193], [-117.026586, 43.683001], [-117.026623, 43.680865], [-117.026717, 43.675523], [-117.026661, 43.664385], [-117.026705, 43.631659], [-117.026905, 43.62488], [-117.027001, 43.621032], [-117.026937, 43.617614], [-117.026789, 43.610669], [-117.02676, 43.601912], [-117.026824, 43.600357], [-117.026889, 43.596033], [-117.026922, 43.593632], [-117.026774, 43.578674], [-117.026746, 43.577526], [-117.026652, 43.025128], [-117.026683, 43.024876], [-117.026253, 42.807447], [-117.026303, 42.80717], [-117.026331, 42.807015], [-117.026222, 42.000252], [-118.197189, 41.996995], [-118.195361, 42.275869], [-118.214725, 42.276029], [-118.231926, 43.77898], [-118.227435, 44.039981], [-118.23214, 44.256083], [-118.15234, 44.299583], [-117.971596, 44.443328], [-117.590992, 44.444461], [-117.485899, 44.387696], [-117.486153, 44.30142], [-117.197506, 44.29728], [-117.197777, 44.295789], [-117.196597, 44.287529], [-117.190107, 44.273958], [-117.170342, 44.25889], [-117.041144, 44.243653], [-117.03317, 44.248192], [-117.027558, 44.248881], [-116.98687, 44.245477], [-116.975905, 44.242844], [-116.902752, 44.179467], [-116.895757, 44.171267], [-116.894083, 44.160191], [-116.895931, 44.154295], [-116.897145, 44.152537], [-116.931719, 44.102474], [-116.935301, 43.988616], [-116.961535, 43.918388]]]}, "bbox": [-118.23214, 41.996995, -116.894083, 44.444461]}, {"id": "41047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.734167, 44.885782], [-121.733782, 44.88174], [-121.745582, 44.87544], [-121.753182, 44.86124], [-121.751131, 44.85699], [-121.742481, 44.85314], [-121.742081, 44.84534], [-121.749381, 44.83354], [-121.75948, 44.82564], [-121.794077, 44.68394], [-122.033233, 44.685678], [-122.154047, 44.719762], [-122.230559, 44.697867], [-122.288446, 44.753065], [-122.478373, 44.755551], [-122.619769, 44.78895], [-122.798369, 44.791564], [-123.006847, 44.686898], [-123.061509, 44.747952], [-123.143556, 44.74967], [-123.092503, 44.813538], [-123.178687, 44.833551], [-123.113081, 44.928577], [-123.039507, 44.951741], [-123.069955, 45.075108], [-122.996959, 45.11979], [-123.040165, 45.221961], [-122.962688, 45.284254], [-122.900435, 45.257063], [-122.849723, 45.259654], [-122.738988, 45.259532], [-122.788386, 45.130129], [-122.508396, 44.919805], [-122.395327, 44.885734], [-121.734167, 44.885782]]]}, "bbox": [-123.178687, 44.68394, -121.733782, 45.284254]}, {"id": "41051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.248993, 45.547745], [-122.2017, 45.564141], [-122.183695, 45.577696], [-122.14075, 45.584508], [-122.129548, 45.582945], [-122.12949, 45.582967], [-122.126197, 45.582573], [-122.126197, 45.582617], [-122.112356, 45.581409], [-122.101675, 45.583516], [-121.983038, 45.622812], [-121.922242, 45.648495], [-121.906742, 45.520497], [-121.820394, 45.461666], [-122.660979, 45.457819], [-122.652605, 45.445741], [-122.645205, 45.441641], [-122.651305, 45.436541], [-122.648725, 45.432718], [-122.744065, 45.433283], [-122.743809, 45.440429], [-122.743904, 45.442774], [-122.743633, 45.442959], [-122.743608, 45.447667], [-122.743807, 45.447902], [-122.74381, 45.452021], [-122.743613, 45.454868], [-122.743862, 45.519515], [-122.764458, 45.529727], [-122.929214, 45.633864], [-122.928961, 45.721502], [-122.762182, 45.728598], [-122.772511, 45.699637], [-122.774511, 45.680437], [-122.76381, 45.657138], [-122.738109, 45.644138], [-122.675008, 45.618039], [-122.643907, 45.609739], [-122.492259, 45.583281], [-122.380302, 45.575941], [-122.352802, 45.569441], [-122.331502, 45.548241], [-122.294901, 45.543541], [-122.266701, 45.543841], [-122.248993, 45.547745]]]}, "bbox": [-122.929214, 45.432718, -121.820394, 45.728598]}, {"id": "41061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-118.519063, 44.995956], [-118.548568, 45.080756], [-118.546678, 45.196951], [-118.655777, 45.196855], [-118.696782, 45.257653], [-118.697684, 45.345153], [-118.428268, 45.355151], [-118.428469, 45.428951], [-118.197957, 45.427153], [-118.198158, 45.470453], [-118.117053, 45.470754], [-118.117153, 45.688498], [-118.066823, 45.688365], [-118.045003, 45.817098], [-117.973666, 45.816978], [-117.972922, 45.860586], [-117.747313, 45.861012], [-117.747101, 45.773346], [-117.788236, 45.773726], [-117.787637, 45.689597], [-117.727149, 45.617272], [-117.727271, 45.514705], [-117.683957, 45.515143], [-117.663557, 45.365757], [-117.583018, 45.338291], [-117.521904, 45.267762], [-117.476987, 45.165315], [-117.267162, 45.165858], [-117.266572, 45.080805], [-117.563138, 45.079588], [-117.563714, 44.992788], [-117.777504, 44.992161], [-117.84343, 45.058477], [-117.969185, 44.995803], [-118.130309, 45.045124], [-118.244751, 44.958256], [-118.519063, 44.995956]]]}, "bbox": [-118.697684, 44.958256, -117.266572, 45.861012]}, {"id": "41067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.764458, 45.529727], [-122.743862, 45.519515], [-122.743613, 45.454868], [-122.74381, 45.452021], [-122.743807, 45.447902], [-122.743608, 45.447667], [-122.743633, 45.442959], [-122.743904, 45.442774], [-122.743809, 45.440429], [-122.744065, 45.433283], [-122.743741, 45.33201], [-122.868009, 45.317376], [-123.135329, 45.433302], [-123.464932, 45.43384], [-123.442733, 45.521198], [-123.299441, 45.607306], [-123.48472, 45.679313], [-123.360892, 45.708695], [-123.360962, 45.779669], [-123.030996, 45.779199], [-122.928961, 45.721502], [-122.929214, 45.633864], [-122.764458, 45.529727]]]}, "bbox": [-123.48472, 45.317376, -122.743608, 45.779669]}, {"id": "42001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.255209, 40.02076], [-77.137425, 40.069945], [-77.018648, 40.013947], [-76.954932, 39.85685], [-76.998377, 39.832115], [-76.999465, 39.720128], [-77.047104, 39.72], [-77.058204, 39.7202], [-77.058904, 39.7201], [-77.216806, 39.719998], [-77.217024, 39.719998], [-77.239807, 39.719998], [-77.243307, 39.719998], [-77.459427, 39.720017], [-77.471085, 39.944077], [-77.403788, 39.994447], [-77.255209, 40.02076]]]}, "bbox": [-77.471085, 39.719998, -76.954932, 40.069945]}, {"id": "42003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.701624, 40.525449], [-79.701985, 40.523787], [-79.702131, 40.489635], [-79.703834, 40.443526], [-79.704739, 40.427231], [-79.722151, 40.409098], [-79.783684, 40.315913], [-79.787853, 40.297693], [-79.775139, 40.287888], [-79.781761, 40.227711], [-79.870585, 40.197415], [-79.881913, 40.196519], [-79.888986, 40.194823], [-79.893281, 40.194352], [-79.912586, 40.197767], [-79.927883, 40.206822], [-79.956073, 40.213582], [-79.968335, 40.22382], [-79.970652, 40.231814], [-79.964764, 40.23767], [-79.952098, 40.240877], [-80.033712, 40.288034], [-80.183129, 40.332515], [-80.360873, 40.477539], [-80.360782, 40.477604], [-80.228579, 40.573072], [-80.14485, 40.613474], [-80.148451, 40.67429], [-79.69293, 40.669744], [-79.692587, 40.669732], [-79.765415, 40.549854], [-79.701624, 40.525449]]]}, "bbox": [-80.360873, 40.194352, -79.692587, 40.67429]}, {"id": "42007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.519054, 40.517922], [-80.519057, 40.517922], [-80.519055, 40.590173], [-80.519086, 40.590161], [-80.519086, 40.616385], [-80.519039, 40.616391], [-80.518991, 40.638801], [-80.519058, 40.792298], [-80.518992, 40.801221], [-80.519081, 40.849157], [-80.51902, 40.850073], [-80.519039, 40.851339], [-80.158534, 40.855157], [-80.148787, 40.676432], [-80.148451, 40.67429], [-80.14485, 40.613474], [-80.228579, 40.573072], [-80.360782, 40.477604], [-80.360873, 40.477539], [-80.448114, 40.477717], [-80.518692, 40.477365], [-80.519054, 40.517922]]]}, "bbox": [-80.519086, 40.477365, -80.14485, 40.855157]}, {"id": "42009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.620383, 40.327025], [-78.447895, 40.244395], [-78.434288, 40.302301], [-78.288764, 40.242107], [-78.257305, 40.297883], [-78.236302, 40.224559], [-78.134863, 40.165131], [-78.299003, 39.8255], [-78.380599, 39.722554], [-78.808387, 39.722726], [-78.757241, 39.823484], [-78.763206, 40.057005], [-78.658409, 40.242933], [-78.620383, 40.327025]]]}, "bbox": [-78.808387, 39.722554, -78.134863, 40.327025]}, {"id": "42011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.739442, 40.57994], [-75.738038, 40.579105], [-75.694308, 40.551149], [-75.682238, 40.543638], [-75.529694, 40.446995], [-75.695955, 40.242359], [-75.696782, 40.241863], [-75.729863, 40.224489], [-75.873375, 40.137107], [-75.875162, 40.138071], [-76.091764, 40.277692], [-76.149509, 40.314454], [-76.151215, 40.315971], [-76.151994, 40.31654], [-76.440181, 40.495952], [-76.171624, 40.534947], [-76.012226, 40.577713], [-75.996233, 40.629971], [-75.993212, 40.639712], [-75.891473, 40.67727], [-75.76674, 40.597033], [-75.739442, 40.57994]]]}, "bbox": [-76.440181, 40.137107, -75.529694, 40.67727]}, {"id": "42013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.542303, 40.468851], [-78.35043, 40.724827], [-78.359912, 40.732592], [-78.131834, 40.743017], [-78.116521, 40.739127], [-78.22197, 40.674539], [-78.197083, 40.558444], [-78.130081, 40.48199], [-78.257305, 40.297883], [-78.288764, 40.242107], [-78.434288, 40.302301], [-78.447895, 40.244395], [-78.620383, 40.327025], [-78.564085, 40.370609], [-78.542303, 40.468851]]]}, "bbox": [-78.620383, 40.242107, -78.116521, 40.743017]}, {"id": "42015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.874714, 41.596919], [-76.878699, 41.620344], [-76.883511, 41.666314], [-76.893201, 41.748463], [-76.927084, 42.001674], [-76.921884, 42.001674], [-76.920784, 42.001774], [-76.835079, 42.001773], [-76.815878, 42.001673], [-76.558118, 42.000155], [-76.557624, 42.000149], [-76.46654, 41.999025], [-76.462155, 41.998934], [-76.349898, 41.99841], [-76.343722, 41.998346], [-76.145519, 41.998913], [-76.115172, 41.651825], [-76.197998, 41.647823], [-76.220139, 41.541285], [-76.813731, 41.590034], [-76.874714, 41.596919]]]}, "bbox": [-76.927084, 41.541285, -76.115172, 42.001774]}, {"id": "42017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.106878, 40.192279], [-75.299774, 40.307835], [-75.484057, 40.418451], [-75.409733, 40.487984], [-75.367911, 40.514601], [-75.36661, 40.515424], [-75.338633, 40.534068], [-75.333514, 40.537057], [-75.196803, 40.60858], [-75.190858, 40.591342], [-75.190161, 40.589321], [-75.147368, 40.573152], [-75.135389, 40.575624], [-75.117292, 40.573211], [-75.100325, 40.567811], [-75.068615, 40.542223], [-75.067344, 40.536428], [-75.06509, 40.526148], [-75.065853, 40.519495], [-75.070568, 40.455165], [-75.061489, 40.422848], [-75.058848, 40.418065], [-75.035548, 40.406309], [-75.024775, 40.403455], [-74.937954, 40.340634], [-74.860492, 40.284584], [-74.770706, 40.214908], [-74.758613, 40.201342], [-74.722304, 40.160609], [-74.721604, 40.15381], [-74.724179, 40.147324], [-74.724304, 40.14701], [-74.740605, 40.13521], [-74.838008, 40.10091], [-74.900236, 40.077149], [-74.97429, 40.048872], [-74.984893, 40.057287], [-74.971268, 40.073744], [-74.958841, 40.082503], [-74.956164, 40.095745], [-74.961342, 40.097496], [-74.964991, 40.118635], [-74.981947, 40.120245], [-75.005946, 40.132524], [-75.00853, 40.133992], [-75.015066, 40.137992], [-75.104874, 40.191109], [-75.106878, 40.192279]]]}, "bbox": [-75.484057, 40.048872, -74.721604, 40.60858]}, {"id": "42019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.160006, 40.886909], [-80.16529, 41.00047], [-80.096861, 41.069804], [-79.999779, 41.171861], [-79.694984, 41.172865], [-79.69235, 41.172028], [-79.690711, 41.170691], [-79.689994, 40.741362], [-79.692331, 40.716656], [-79.692615, 40.688784], [-79.692794, 40.674604], [-79.692357, 40.672857], [-79.69293, 40.669744], [-80.148451, 40.67429], [-80.148787, 40.676432], [-80.158534, 40.855157], [-80.160006, 40.886909]]]}, "bbox": [-80.16529, 40.669744, -79.689994, 41.172865]}, {"id": "42021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.768593, 40.243441], [-78.884862, 40.244631], [-78.927601, 40.285041], [-79.055983, 40.285089], [-78.974649, 40.395972], [-78.922748, 40.48377], [-78.896938, 40.53316], [-78.860105, 40.604665], [-78.846656, 40.635638], [-78.801697, 40.724539], [-78.712747, 40.72435], [-78.513712, 40.725968], [-78.35043, 40.724827], [-78.542303, 40.468851], [-78.564085, 40.370609], [-78.620383, 40.327025], [-78.658409, 40.242933], [-78.760311, 40.243171], [-78.768593, 40.243441]]]}, "bbox": [-79.055983, 40.242933, -78.35043, 40.725968]}, {"id": "42025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.997348, 40.912985], [-75.73193, 41.00822], [-75.77196, 41.076751], [-75.649637, 41.122344], [-75.49599, 40.987181], [-75.57459, 40.951323], [-75.474193, 40.814746], [-75.608985, 40.787387], [-75.757807, 40.735414], [-75.997348, 40.912985]]]}, "bbox": [-75.997348, 40.735414, -75.474193, 41.122344]}, {"id": "42027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.667819, 40.735335], [-77.681334, 40.729758], [-77.824506, 40.743681], [-77.94425, 40.691557], [-78.116521, 40.739127], [-78.131834, 40.743017], [-78.359912, 40.732592], [-78.376518, 40.754417], [-78.24922, 40.855383], [-78.168128, 40.960865], [-78.07774, 40.958824], [-78.056276, 41.00417], [-78.112239, 41.114217], [-78.038203, 41.153633], [-77.898195, 41.252752], [-77.892724, 41.178259], [-77.79856, 41.18195], [-77.741911, 41.107614], [-77.621759, 41.091185], [-77.508596, 40.962938], [-77.14416, 41.044338], [-77.36418, 40.846937], [-77.667819, 40.735335]]]}, "bbox": [-78.376518, 40.691557, -77.14416, 41.252752]}, {"id": "42029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.361066, 40.065543], [-75.414991, 40.041787], [-75.435816, 39.985059], [-75.562539, 39.901638], [-75.594846, 39.837286], [-75.595756, 39.837156], [-75.634706, 39.830164], [-75.641518, 39.828363], [-75.662822, 39.82115], [-75.685991, 39.811054], [-75.716969, 39.791998], [-75.739705, 39.772623], [-75.788359, 39.721811], [-75.799563, 39.721882], [-75.810068, 39.721906], [-76.013067, 39.72192], [-76.027618, 39.721833], [-76.135584, 39.721556], [-76.066685, 39.759969], [-75.991644, 39.868713], [-75.985056, 39.937871], [-75.942997, 40.109266], [-75.873375, 40.137107], [-75.729863, 40.224489], [-75.696782, 40.241863], [-75.592657, 40.225491], [-75.573338, 40.195303], [-75.562878, 40.197361], [-75.557148, 40.207213], [-75.549174, 40.189542], [-75.525945, 40.148611], [-75.361066, 40.065543]]]}, "bbox": [-76.135584, 39.721556, -75.361066, 40.241863]}, {"id": "42033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.513712, 40.725968], [-78.712747, 40.72435], [-78.801697, 40.724539], [-78.806363, 40.845035], [-78.805167, 40.90598], [-78.804532, 41.132186], [-78.710248, 41.201859], [-78.646666, 41.253778], [-78.236817, 41.230475], [-78.093381, 41.216931], [-78.061007, 41.174539], [-78.038203, 41.153633], [-78.112239, 41.114217], [-78.056276, 41.00417], [-78.07774, 40.958824], [-78.168128, 40.960865], [-78.24922, 40.855383], [-78.376518, 40.754417], [-78.359912, 40.732592], [-78.35043, 40.724827], [-78.513712, 40.725968]]]}, "bbox": [-78.806363, 40.72435, -78.038203, 41.253778]}, {"id": "42037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.463481, 41.262612], [-76.460762, 41.264848], [-76.447597, 41.275629], [-76.407934, 41.308418], [-76.310133, 41.310199], [-76.317916, 41.205384], [-76.228975, 41.138466], [-76.207827, 40.94974], [-76.284611, 40.883588], [-76.30717, 40.801809], [-76.380152, 40.775511], [-76.409667, 40.833624], [-76.501312, 40.824817], [-76.528034, 40.882515], [-76.514951, 40.958959], [-76.618971, 41.063759], [-76.640767, 41.155718], [-76.592607, 41.157765], [-76.463481, 41.262612]]]}, "bbox": [-76.640767, 40.775511, -76.207827, 41.310199]}, {"id": "42039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.612598, 41.77503], [-79.612873, 41.623858], [-79.612866, 41.617058], [-79.748047, 41.617747], [-79.828876, 41.622057], [-79.999779, 41.490049], [-80.125316, 41.480395], [-80.519209, 41.489013], [-80.519225, 41.499924], [-80.519157, 41.528769], [-80.519339, 41.539297], [-80.519357, 41.669767], [-80.519424, 41.671228], [-80.519373, 41.701473], [-80.519408, 41.739359], [-80.519369, 41.752487], [-80.519239, 41.765138], [-80.519294, 41.849563], [-79.612072, 41.850056], [-79.612598, 41.77503]]]}, "bbox": [-80.519424, 41.480395, -79.612072, 41.850056]}, {"id": "42041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.137425, 40.069945], [-77.255209, 40.02076], [-77.403788, 39.994447], [-77.471085, 39.944077], [-77.614665, 40.198549], [-77.366018, 40.313569], [-77.419795, 40.26407], [-77.280548, 40.275923], [-77.270057, 40.278652], [-77.241691, 40.282847], [-77.229166, 40.283744], [-77.083942, 40.30122], [-76.91497, 40.328484], [-76.859023, 40.226328], [-76.905875, 40.165723], [-77.028853, 40.147838], [-77.137425, 40.069945]]]}, "bbox": [-77.614665, 39.944077, -76.859023, 40.328484]}, {"id": "42043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.91497, 40.328484], [-76.91727, 40.332715], [-76.92618, 40.34098], [-76.928521, 40.347985], [-76.933589, 40.356045], [-77.028645, 40.391197], [-76.949397, 40.469037], [-76.991939, 40.561475], [-76.983673, 40.578259], [-76.957444, 40.594677], [-76.949414, 40.628163], [-76.890875, 40.610096], [-76.701624, 40.658082], [-76.701566, 40.658048], [-76.701507, 40.658014], [-76.700933, 40.65768], [-76.698863, 40.656477], [-76.698173, 40.656076], [-76.696916, 40.655321], [-76.693145, 40.653057], [-76.691889, 40.652303], [-76.691603, 40.652118], [-76.690746, 40.651565], [-76.69056, 40.651445], [-76.690461, 40.651381], [-76.690418, 40.651353], [-76.690398, 40.65134], [-76.690289, 40.651271], [-76.690247, 40.651244], [-76.690172, 40.651195], [-76.68995, 40.651051], [-76.689876, 40.651003], [-76.687847, 40.649693], [-76.685028, 40.647873], [-76.681741, 40.645797], [-76.6797, 40.644509], [-76.678351, 40.643656], [-76.674304, 40.6411], [-76.673096, 40.640337], [-76.673026, 40.640292], [-76.672956, 40.640248], [-76.672894, 40.640208], [-76.672833, 40.640169], [-76.671471, 40.639296], [-76.668823, 40.637599], [-76.666982, 40.636502], [-76.665469, 40.635601], [-76.665355, 40.635533], [-76.665083, 40.635359], [-76.663935, 40.634624], [-76.663554, 40.63438], [-76.663552, 40.634379], [-76.662765, 40.633898], [-76.660405, 40.632455], [-76.659618, 40.631975], [-76.658169, 40.631089], [-76.655755, 40.629613], [-76.653822, 40.628431], [-76.652374, 40.627546], [-76.650217, 40.626228], [-76.648348, 40.625086], [-76.64373, 40.622304], [-76.641566, 40.621001], [-76.641488, 40.620955], [-76.641433, 40.620922], [-76.641259, 40.620812], [-76.641183, 40.620765], [-76.641162, 40.620752], [-76.641102, 40.620714], [-76.641082, 40.620702], [-76.64078, 40.620513], [-76.639877, 40.619948], [-76.639697, 40.619836], [-76.639576, 40.61976], [-76.637041, 40.618175], [-76.629437, 40.61342], [-76.626903, 40.611835], [-76.626499, 40.611582], [-76.625287, 40.610824], [-76.624883, 40.610572], [-76.624686, 40.610449], [-76.623653, 40.609799], [-76.622898, 40.609324], [-76.619966, 40.607481], [-76.618738, 40.606709], [-76.618353, 40.606466], [-76.617203, 40.605739], [-76.616824, 40.6055], [-76.616819, 40.605497], [-76.616703, 40.605423], [-76.616465, 40.605273], [-76.615405, 40.604603], [-76.615053, 40.60438], [-76.61461, 40.6041], [-76.614473, 40.604007], [-76.612764, 40.602846], [-76.612414, 40.602609], [-76.612186, 40.602473], [-76.612146, 40.602449], [-76.612026, 40.602377], [-76.611987, 40.602354], [-76.609607, 40.600932], [-76.609284, 40.600739], [-76.607903, 40.599915], [-76.601283, 40.595723], [-76.600084, 40.594964], [-76.598611, 40.594061], [-76.598325, 40.593885], [-76.597468, 40.59336], [-76.597183, 40.593185], [-76.596992, 40.593064], [-76.596422, 40.592701], [-76.596232, 40.59258], [-76.59427, 40.591333], [-76.588384, 40.587592], [-76.586423, 40.586345], [-76.585822, 40.585963], [-76.58448, 40.58511], [-76.584014, 40.584831], [-76.583404, 40.584466], [-76.583115, 40.584293], [-76.58225, 40.583775], [-76.581962, 40.583603], [-76.581662, 40.583423], [-76.580763, 40.582886], [-76.580464, 40.582707], [-76.579789, 40.582303], [-76.577765, 40.581091], [-76.577091, 40.580688], [-76.577073, 40.580677], [-76.575558, 40.57977], [-76.575216, 40.579566], [-76.571818, 40.577533], [-76.570965, 40.577007], [-76.56948, 40.576092], [-76.569445, 40.57607], [-76.568682, 40.575599], [-76.566393, 40.574189], [-76.565631, 40.573719], [-76.565486, 40.573629], [-76.565051, 40.573361], [-76.564906, 40.573272], [-76.564446, 40.572989], [-76.563068, 40.572141], [-76.562649, 40.571883], [-76.562609, 40.571859], [-76.560911, 40.570815], [-76.560743, 40.570712], [-76.556354, 40.568014], [-76.555148, 40.567273], [-76.553283, 40.566127], [-76.552318, 40.565533], [-76.549423, 40.563753], [-76.54846, 40.56316], [-76.548127, 40.562955], [-76.547134, 40.562344], [-76.546803, 40.562141], [-76.54514, 40.561118], [-76.545071, 40.561076], [-76.543218, 40.559937], [-76.539858, 40.557915], [-76.538117, 40.556868], [-76.537576, 40.556525], [-76.535954, 40.555499], [-76.535414, 40.555157], [-76.67804, 40.474717], [-76.566339, 40.196644], [-76.72162, 40.12007], [-76.859023, 40.226328], [-76.91497, 40.328484]]]}, "bbox": [-77.028645, 40.12007, -76.535414, 40.658082]}, {"id": "42045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.562539, 39.901638], [-75.435816, 39.985059], [-75.414991, 40.041787], [-75.361066, 40.065543], [-75.356534, 40.062787], [-75.349457, 40.052905], [-75.276482, 39.976959], [-75.262539, 39.876578], [-75.24047, 39.872381], [-75.215722, 39.876087], [-75.210972, 39.865706], [-75.235026, 39.856613], [-75.271159, 39.84944], [-75.3065, 39.849812], [-75.374635, 39.82577], [-75.390169, 39.816549], [-75.415041, 39.801786], [-75.428038, 39.809212], [-75.45374, 39.820312], [-75.498843, 39.833312], [-75.539346, 39.838211], [-75.579849, 39.838526], [-75.5799, 39.838522], [-75.593082, 39.8375], [-75.593666, 39.837455], [-75.594846, 39.837286], [-75.562539, 39.901638]]]}, "bbox": [-75.594846, 39.801786, -75.210972, 40.065543]}, {"id": "42049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.610839, 41.998989], [-79.612072, 41.850056], [-80.519294, 41.849563], [-80.519345, 41.929168], [-80.519304, 41.943992], [-80.519405, 41.976158], [-80.519425, 41.977522], [-80.519425, 41.977523], [-80.435451, 42.005611], [-80.409776, 42.011578], [-80.373066, 42.024102], [-80.371869, 42.023966], [-80.363251, 42.027973], [-80.349169, 42.030243], [-80.329976, 42.036168], [-80.296758, 42.049076], [-80.230486, 42.077957], [-80.188085, 42.094257], [-80.165884, 42.105857], [-80.154084, 42.114757], [-80.136213, 42.149937], [-80.13043, 42.156331], [-80.117368, 42.166341], [-80.088512, 42.173184], [-80.077388, 42.171262], [-80.073381, 42.168658], [-80.080028, 42.163625], [-80.071981, 42.155357], [-80.078781, 42.151457], [-80.076281, 42.147857], [-80.07198, 42.146057], [-80.06108, 42.144857], [-79.989186, 42.177051], [-79.931324, 42.206737], [-79.923924, 42.207546], [-79.90105, 42.216701], [-79.886187, 42.224933], [-79.867979, 42.230999], [-79.844661, 42.235486], [-79.798447, 42.255939], [-79.761951, 42.26986], [-79.761964, 42.251354], [-79.762152, 42.243054], [-79.761833, 42.183627], [-79.761929, 42.179693], [-79.761921, 42.173319], [-79.761759, 42.162675], [-79.761861, 42.150712], [-79.762122, 42.131246], [-79.761374, 41.999067], [-79.625287, 41.999003], [-79.625301, 41.999068], [-79.610839, 41.998989]]]}, "bbox": [-80.519425, 41.849563, -79.610839, 42.26986]}, {"id": "42051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.476662, 39.721078], [-79.608223, 39.721154], [-79.610623, 39.721245], [-79.763774, 39.720776], [-79.852904, 39.720713], [-79.853131, 39.720713], [-79.916266, 39.720792], [-79.915278, 39.8803], [-79.998014, 39.983322], [-79.877048, 40.036826], [-79.877385, 40.126792], [-79.72224, 40.121141], [-79.641098, 40.088317], [-79.592602, 40.092005], [-79.578966, 40.105496], [-79.540347, 40.114035], [-79.505188, 40.140568], [-79.479402, 40.142801], [-79.457008, 40.135108], [-79.293682, 40.040413], [-79.294283, 40.039429], [-79.296131, 40.03675], [-79.301533, 40.02986], [-79.302801, 40.0285], [-79.32525, 39.999872], [-79.330397, 39.992796], [-79.347363, 39.969492], [-79.417558, 39.853776], [-79.365695, 39.820546], [-79.392458, 39.72134], [-79.476662, 39.721078]]]}, "bbox": [-79.998014, 39.720713, -79.293682, 40.142801]}, {"id": "42055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.70303, 40.263576], [-77.685163, 40.276304], [-77.671761, 40.289825], [-77.614665, 40.198549], [-77.471085, 39.944077], [-77.459427, 39.720017], [-77.469145, 39.720018], [-77.533371, 39.720165], [-77.534758, 39.720134], [-77.672249, 39.720778], [-77.674522, 39.720847], [-77.724115, 39.720894], [-77.732615, 39.721094], [-77.743204, 39.721205], [-77.768534, 39.721358], [-78.073736, 39.722314], [-78.075771, 39.722301], [-78.09914, 39.722322], [-78.0027, 39.826599], [-77.920952, 40.00045], [-77.864489, 40.061568], [-77.70303, 40.263576]]]}, "bbox": [-78.09914, 39.720017, -77.459427, 40.289825]}, {"id": "42063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.846656, 40.635638], [-78.860105, 40.604665], [-78.896938, 40.53316], [-78.922748, 40.48377], [-78.974649, 40.395972], [-79.058481, 40.380868], [-79.192722, 40.414862], [-79.199233, 40.41078], [-79.206513, 40.415032], [-79.214783, 40.424458], [-79.233203, 40.430741], [-79.240175, 40.429991], [-79.247568, 40.43208], [-79.250605, 40.428726], [-79.454011, 40.485507], [-79.450176, 40.530149], [-79.251517, 40.737758], [-79.215215, 40.775942], [-79.21531, 40.911346], [-78.805167, 40.90598], [-78.806363, 40.845035], [-78.801697, 40.724539], [-78.846656, 40.635638]]]}, "bbox": [-79.454011, 40.380868, -78.801697, 40.911346]}, {"id": "42069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.687244, 41.339216], [-75.741539, 41.348179], [-75.760518, 41.360942], [-75.76786, 41.365841], [-75.795286, 41.378127], [-75.832631, 41.399934], [-75.834695, 41.427246], [-75.719887, 41.642263], [-75.469259, 41.64141], [-75.462411, 41.641587], [-75.441421, 41.260053], [-75.505607, 41.232539], [-75.600736, 41.161497], [-75.649257, 41.190951], [-75.687244, 41.339216]]]}, "bbox": [-75.834695, 41.161497, -75.441421, 41.642263]}, {"id": "42071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.091764, 40.277692], [-75.875162, 40.138071], [-75.873375, 40.137107], [-75.942997, 40.109266], [-75.985056, 39.937871], [-75.991644, 39.868713], [-76.066685, 39.759969], [-76.135584, 39.721556], [-76.224191, 39.721328], [-76.233259, 39.721305], [-76.233277, 39.721305], [-76.239805, 39.721305], [-76.47358, 39.947352], [-76.534524, 40.051348], [-76.663825, 40.063227], [-76.72162, 40.12007], [-76.566339, 40.196644], [-76.307578, 40.255066], [-76.151215, 40.315971], [-76.149509, 40.314454], [-76.091764, 40.277692]]]}, "bbox": [-76.72162, 39.721305, -75.873375, 40.315971]}, {"id": "42073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.096861, 41.069804], [-80.16529, 41.00047], [-80.160006, 40.886909], [-80.158534, 40.855157], [-80.519039, 40.851339], [-80.519764, 40.899858], [-80.51979, 40.900761], [-80.519091, 40.921061], [-80.519, 40.98738], [-80.518989, 40.995445], [-80.518927, 41.015387], [-80.51896, 41.061546], [-80.518928, 41.070954], [-80.51896, 41.071866], [-80.518999, 41.075014], [-80.519088, 41.082074], [-80.519092, 41.090658], [-80.519125, 41.100819], [-80.519192, 41.105358], [-80.518992, 41.115958], [-80.519056, 41.125057], [-80.519012, 41.125057], [-80.519012, 41.125093], [-80.385094, 41.126492], [-80.147164, 41.113795], [-80.096861, 41.069804]]]}, "bbox": [-80.51979, 40.851339, -80.096861, 41.126492]}, {"id": "42075", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.151994, 40.31654], [-76.151215, 40.315971], [-76.307578, 40.255066], [-76.566339, 40.196644], [-76.67804, 40.474717], [-76.535414, 40.555157], [-76.440181, 40.495952], [-76.151994, 40.31654]]]}, "bbox": [-76.67804, 40.196644, -76.151215, 40.555157]}, {"id": "42077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.694308, 40.551149], [-75.738038, 40.579105], [-75.739442, 40.57994], [-75.76674, 40.597033], [-75.891473, 40.67727], [-75.757807, 40.735414], [-75.608985, 40.787387], [-75.481469, 40.655744], [-75.430404, 40.674152], [-75.404412, 40.581154], [-75.333514, 40.537057], [-75.338633, 40.534068], [-75.36661, 40.515424], [-75.367911, 40.514601], [-75.409733, 40.487984], [-75.484057, 40.418451], [-75.529694, 40.446995], [-75.682238, 40.543638], [-75.694308, 40.551149]]]}, "bbox": [-75.891473, 40.418451, -75.333514, 40.787387]}, {"id": "42079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.207827, 40.94974], [-76.228975, 41.138466], [-76.317916, 41.205384], [-76.310133, 41.310199], [-76.284865, 41.372724], [-76.2831, 41.376517], [-76.00507, 41.384551], [-75.834695, 41.427246], [-75.832631, 41.399934], [-75.795286, 41.378127], [-75.76786, 41.365841], [-75.760518, 41.360942], [-75.741539, 41.348179], [-75.687244, 41.339216], [-75.649257, 41.190951], [-75.600736, 41.161497], [-75.603002, 41.151914], [-75.615557, 41.150001], [-75.634978, 41.123192], [-75.649637, 41.122344], [-75.77196, 41.076751], [-75.73193, 41.00822], [-75.997348, 40.912985], [-76.02815, 40.901986], [-76.207827, 40.94974]]]}, "bbox": [-76.317916, 40.901986, -75.600736, 41.427246]}, {"id": "42081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.463481, 41.262612], [-76.592607, 41.157765], [-76.640767, 41.155718], [-76.678776, 41.154172], [-76.732672, 41.17204], [-76.788659, 41.175762], [-76.880963, 41.158044], [-76.888145, 41.153807], [-76.896114, 41.13907], [-76.977939, 41.087883], [-77.144111, 41.06884], [-77.320891, 41.218932], [-77.526537, 41.358528], [-77.598129, 41.478576], [-77.599278, 41.542271], [-77.00871, 41.549883], [-76.874714, 41.596919], [-76.813731, 41.590034], [-76.749497, 41.405572], [-76.592532, 41.304332], [-76.447597, 41.275629], [-76.460762, 41.264848], [-76.463481, 41.262612]]]}, "bbox": [-77.599278, 41.06884, -76.447597, 41.596919]}, {"id": "42085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.99978, 41.274178], [-79.999779, 41.171861], [-80.096861, 41.069804], [-80.147164, 41.113795], [-80.385094, 41.126492], [-80.519012, 41.125093], [-80.519012, 41.125116], [-80.519167, 41.133343], [-80.519167, 41.133388], [-80.519115, 41.14552], [-80.519144, 41.171203], [-80.51883, 41.209213], [-80.518893, 41.219356], [-80.518893, 41.219357], [-80.518893, 41.232556], [-80.518693, 41.248855], [-80.518893, 41.265155], [-80.518993, 41.268155], [-80.518996, 41.2683], [-80.518794, 41.305509], [-80.519129, 41.312408], [-80.519265, 41.333495], [-80.519281, 41.335958], [-80.519281, 41.337145], [-80.519281, 41.337174], [-80.519311, 41.339052], [-80.519293, 41.339054], [-80.519293, 41.339654], [-80.519345, 41.340145], [-80.519345, 41.34074], [-80.519297, 41.350833], [-80.519249, 41.36103], [-80.519217, 41.372006], [-80.519249, 41.378918], [-80.519025, 41.416438], [-80.518993, 41.416437], [-80.518993, 41.435454], [-80.519169, 41.462581], [-80.519209, 41.489013], [-80.125316, 41.480395], [-79.999779, 41.490049], [-79.99978, 41.274178]]]}, "bbox": [-80.519345, 41.069804, -79.999779, 41.490049]}, {"id": "42087", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.667819, 40.735335], [-77.36418, 40.846937], [-77.357113, 40.844484], [-77.356628, 40.807334], [-77.354097, 40.701667], [-77.287941, 40.693595], [-77.323053, 40.683082], [-77.36069, 40.669991], [-77.49776, 40.609484], [-77.611315, 40.515017], [-77.75212, 40.378545], [-77.913844, 40.398679], [-77.816513, 40.500074], [-77.841827, 40.550035], [-77.68708, 40.67675], [-77.681334, 40.729758], [-77.667819, 40.735335]]]}, "bbox": [-77.913844, 40.378545, -77.287941, 40.846937]}, {"id": "42089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.600736, 41.161497], [-75.505607, 41.232539], [-75.359184, 41.239206], [-75.129721, 41.252101], [-75.156507, 41.150341], [-74.980674, 41.078178], [-75.026003, 41.042687], [-75.036982, 41.034702], [-75.051794, 41.027142], [-75.069277, 41.019348], [-75.091377, 41.012283], [-75.109114, 41.004102], [-75.130575, 40.991093], [-75.135526, 40.973807], [-75.131364, 40.969277], [-75.120564, 40.968313], [-75.300594, 40.859563], [-75.474193, 40.814746], [-75.57459, 40.951323], [-75.49599, 40.987181], [-75.649637, 41.122344], [-75.634978, 41.123192], [-75.615557, 41.150001], [-75.603002, 41.151914], [-75.600736, 41.161497]]]}, "bbox": [-75.649637, 40.814746, -74.980674, 41.252101]}, {"id": "42091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.361066, 40.065543], [-75.525945, 40.148611], [-75.549174, 40.189542], [-75.557148, 40.207213], [-75.562878, 40.197361], [-75.573338, 40.195303], [-75.592657, 40.225491], [-75.696782, 40.241863], [-75.695955, 40.242359], [-75.529694, 40.446995], [-75.484057, 40.418451], [-75.299774, 40.307835], [-75.106878, 40.192279], [-75.104874, 40.191109], [-75.015066, 40.137992], [-75.096733, 40.068989], [-75.087425, 40.063599], [-75.109406, 40.04584], [-75.124916, 40.054684], [-75.129021, 40.057091], [-75.135193, 40.061031], [-75.151596, 40.070328], [-75.176438, 40.084649], [-75.264431, 40.054094], [-75.249214, 39.990547], [-75.256119, 39.987301], [-75.263687, 39.982658], [-75.276482, 39.976959], [-75.349457, 40.052905], [-75.356534, 40.062787], [-75.361066, 40.065543]]]}, "bbox": [-75.696782, 39.976959, -75.015066, 40.446995]}, {"id": "42093", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.640767, 41.155718], [-76.618971, 41.063759], [-76.514951, 40.958959], [-76.528034, 40.882515], [-76.557013, 40.938617], [-76.661348, 40.967996], [-76.792878, 40.946583], [-76.732672, 41.17204], [-76.678776, 41.154172], [-76.640767, 41.155718]]]}, "bbox": [-76.792878, 40.882515, -76.514951, 41.17204]}, {"id": "42095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.474193, 40.814746], [-75.300594, 40.859563], [-75.120564, 40.968313], [-75.120435, 40.968302], [-75.120316, 40.96263], [-75.119893, 40.961646], [-75.117764, 40.953023], [-75.052538, 40.872051], [-75.051029, 40.865662], [-75.053294, 40.8599], [-75.108505, 40.791094], [-75.1344, 40.773765], [-75.149378, 40.774786], [-75.16365, 40.778386], [-75.171587, 40.777745], [-75.196533, 40.751631], [-75.20392, 40.691498], [-75.200708, 40.618356], [-75.196803, 40.60858], [-75.333514, 40.537057], [-75.404412, 40.581154], [-75.430404, 40.674152], [-75.481469, 40.655744], [-75.608985, 40.787387], [-75.474193, 40.814746]]]}, "bbox": [-75.608985, 40.537057, -75.051029, 40.968313]}, {"id": "42101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.264431, 40.054094], [-75.176438, 40.084649], [-75.151596, 40.070328], [-75.135193, 40.061031], [-75.129021, 40.057091], [-75.124916, 40.054684], [-75.109406, 40.04584], [-75.087425, 40.063599], [-75.096733, 40.068989], [-75.015066, 40.137992], [-75.00853, 40.133992], [-75.005946, 40.132524], [-74.981947, 40.120245], [-74.964991, 40.118635], [-74.961342, 40.097496], [-74.956164, 40.095745], [-74.958841, 40.082503], [-74.971268, 40.073744], [-74.984893, 40.057287], [-74.97429, 40.048872], [-74.974713, 40.048711], [-75.014343, 40.020976], [-75.056039, 39.991795], [-75.072017, 39.980612], [-75.085754, 39.967572], [-75.13322, 39.922512], [-75.153925, 39.906144], [-75.184952, 39.881615], [-75.210425, 39.865913], [-75.210972, 39.865706], [-75.215722, 39.876087], [-75.24047, 39.872381], [-75.262539, 39.876578], [-75.276482, 39.976959], [-75.263687, 39.982658], [-75.256119, 39.987301], [-75.249214, 39.990547], [-75.264431, 40.054094]]]}, "bbox": [-75.276482, 39.865706, -74.956164, 40.137992]}, {"id": "42105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.599278, 41.542271], [-77.598129, 41.478576], [-77.989194, 41.474822], [-78.050442, 41.475462], [-78.203422, 41.618157], [-78.206606, 41.999989], [-78.12473, 42.000452], [-78.031177, 41.999415], [-78.030963, 41.999392], [-77.83203, 41.998524], [-77.822799, 41.998547], [-77.749931, 41.998782], [-77.610028, 41.999519], [-77.599278, 41.542271]]]}, "bbox": [-78.206606, 41.474822, -77.598129, 42.000452]}, {"id": "42107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.996233, 40.629971], [-76.012226, 40.577713], [-76.171624, 40.534947], [-76.440181, 40.495952], [-76.535414, 40.555157], [-76.535954, 40.555499], [-76.537576, 40.556525], [-76.538117, 40.556868], [-76.539858, 40.557915], [-76.543218, 40.559937], [-76.545071, 40.561076], [-76.54514, 40.561118], [-76.546803, 40.562141], [-76.547134, 40.562344], [-76.548127, 40.562955], [-76.54846, 40.56316], [-76.549423, 40.563753], [-76.552318, 40.565533], [-76.553283, 40.566127], [-76.555148, 40.567273], [-76.556354, 40.568014], [-76.560743, 40.570712], [-76.560911, 40.570815], [-76.562609, 40.571859], [-76.562649, 40.571883], [-76.563068, 40.572141], [-76.564446, 40.572989], [-76.564906, 40.573272], [-76.565051, 40.573361], [-76.565486, 40.573629], [-76.565631, 40.573719], [-76.566393, 40.574189], [-76.568682, 40.575599], [-76.569445, 40.57607], [-76.56948, 40.576092], [-76.570965, 40.577007], [-76.571818, 40.577533], [-76.575216, 40.579566], [-76.575558, 40.57977], [-76.577073, 40.580677], [-76.577091, 40.580688], [-76.577765, 40.581091], [-76.579789, 40.582303], [-76.580464, 40.582707], [-76.580763, 40.582886], [-76.581662, 40.583423], [-76.581962, 40.583603], [-76.58225, 40.583775], [-76.583115, 40.584293], [-76.583404, 40.584466], [-76.584014, 40.584831], [-76.58448, 40.58511], [-76.585822, 40.585963], [-76.586423, 40.586345], [-76.588384, 40.587592], [-76.59427, 40.591333], [-76.596232, 40.59258], [-76.596422, 40.592701], [-76.596992, 40.593064], [-76.597183, 40.593185], [-76.597468, 40.59336], [-76.598325, 40.593885], [-76.598611, 40.594061], [-76.600084, 40.594964], [-76.601283, 40.595723], [-76.607903, 40.599915], [-76.609284, 40.600739], [-76.609607, 40.600932], [-76.611987, 40.602354], [-76.612026, 40.602377], [-76.612146, 40.602449], [-76.612186, 40.602473], [-76.612414, 40.602609], [-76.612764, 40.602846], [-76.614473, 40.604007], [-76.61461, 40.6041], [-76.615053, 40.60438], [-76.615405, 40.604603], [-76.616465, 40.605273], [-76.616703, 40.605423], [-76.616819, 40.605497], [-76.616824, 40.6055], [-76.617203, 40.605739], [-76.618353, 40.606466], [-76.618738, 40.606709], [-76.619966, 40.607481], [-76.622898, 40.609324], [-76.623653, 40.609799], [-76.624686, 40.610449], [-76.624883, 40.610572], [-76.625287, 40.610824], [-76.626499, 40.611582], [-76.626903, 40.611835], [-76.629437, 40.61342], [-76.637041, 40.618175], [-76.639576, 40.61976], [-76.639697, 40.619836], [-76.639877, 40.619948], [-76.64078, 40.620513], [-76.641082, 40.620702], [-76.641102, 40.620714], [-76.641162, 40.620752], [-76.641183, 40.620765], [-76.641259, 40.620812], [-76.641433, 40.620922], [-76.641488, 40.620955], [-76.641566, 40.621001], [-76.64373, 40.622304], [-76.648348, 40.625086], [-76.650217, 40.626228], [-76.652374, 40.627546], [-76.653822, 40.628431], [-76.655755, 40.629613], [-76.658169, 40.631089], [-76.659618, 40.631975], [-76.660405, 40.632455], [-76.662765, 40.633898], [-76.663552, 40.634379], [-76.663554, 40.63438], [-76.663935, 40.634624], [-76.665083, 40.635359], [-76.665355, 40.635533], [-76.665469, 40.635601], [-76.666982, 40.636502], [-76.668823, 40.637599], [-76.671471, 40.639296], [-76.672833, 40.640169], [-76.672894, 40.640208], [-76.672956, 40.640248], [-76.673026, 40.640292], [-76.673096, 40.640337], [-76.674304, 40.6411], [-76.678351, 40.643656], [-76.6797, 40.644509], [-76.681741, 40.645797], [-76.685028, 40.647873], [-76.687847, 40.649693], [-76.689876, 40.651003], [-76.68995, 40.651051], [-76.690172, 40.651195], [-76.690247, 40.651244], [-76.690289, 40.651271], [-76.690398, 40.65134], [-76.690418, 40.651353], [-76.690461, 40.651381], [-76.69056, 40.651445], [-76.690746, 40.651565], [-76.691603, 40.652118], [-76.691889, 40.652303], [-76.693145, 40.653057], [-76.696916, 40.655321], [-76.698173, 40.656076], [-76.698863, 40.656477], [-76.700933, 40.65768], [-76.701507, 40.658014], [-76.701566, 40.658048], [-76.701624, 40.658082], [-76.380152, 40.775511], [-76.30717, 40.801809], [-76.284611, 40.883588], [-76.207827, 40.94974], [-76.02815, 40.901986], [-75.997348, 40.912985], [-75.757807, 40.735414], [-75.891473, 40.67727], [-75.993212, 40.639712], [-75.996233, 40.629971]]]}, "bbox": [-76.701624, 40.495952, -75.757807, 40.94974]}, {"id": "42111", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.768593, 40.243441], [-78.760311, 40.243171], [-78.658409, 40.242933], [-78.763206, 40.057005], [-78.757241, 39.823484], [-78.808387, 39.722726], [-78.931175, 39.722775], [-78.931176, 39.722775], [-79.392458, 39.72134], [-79.365695, 39.820546], [-79.417558, 39.853776], [-79.347363, 39.969492], [-79.330397, 39.992796], [-79.32525, 39.999872], [-79.302801, 40.0285], [-79.301533, 40.02986], [-79.296131, 40.03675], [-79.294283, 40.039429], [-79.293682, 40.040413], [-79.185222, 40.109848], [-79.088656, 40.241259], [-79.086174, 40.242665], [-79.086734, 40.245342], [-79.082472, 40.250074], [-79.07925, 40.251172], [-79.078084, 40.25484], [-79.07957, 40.257928], [-79.076638, 40.260307], [-79.073523, 40.266727], [-79.067963, 40.272471], [-79.059378, 40.275767], [-79.056646, 40.278604], [-79.055983, 40.285089], [-78.927601, 40.285041], [-78.884862, 40.244631], [-78.768593, 40.243441]]]}, "bbox": [-79.417558, 39.72134, -78.658409, 40.285089]}, {"id": "42119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.356628, 40.807334], [-77.357113, 40.844484], [-77.36418, 40.846937], [-77.14416, 41.044338], [-77.143723, 41.04578], [-77.144111, 41.06884], [-76.977939, 41.087883], [-76.896114, 41.13907], [-76.88228, 40.971334], [-76.800242, 40.881994], [-76.940706, 40.888023], [-77.356628, 40.807334]]]}, "bbox": [-77.36418, 40.807334, -76.800242, 41.13907]}, {"id": "42121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.477822, 41.386479], [-79.47814, 41.335708], [-79.604161, 41.321478], [-79.694984, 41.172865], [-79.999779, 41.171861], [-79.99978, 41.274178], [-79.999779, 41.490049], [-79.828876, 41.622057], [-79.748047, 41.617747], [-79.612866, 41.617058], [-79.612873, 41.623858], [-79.51207, 41.624559], [-79.512276, 41.46524], [-79.477822, 41.386479]]]}, "bbox": [-79.99978, 41.171861, -79.477822, 41.624559]}, {"id": "42123", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.402653, 41.625968], [-79.51207, 41.624559], [-79.612873, 41.623858], [-79.612598, 41.77503], [-79.612072, 41.850056], [-79.610839, 41.998989], [-79.551385, 41.998666], [-79.538445, 41.998527], [-79.061265, 41.999259], [-79.052473, 41.999179], [-78.918854, 41.997961], [-78.948689, 41.83048], [-78.956056, 41.623863], [-78.956042, 41.623402], [-79.402653, 41.625968]]]}, "bbox": [-79.612873, 41.623402, -78.918854, 41.999259]}, {"id": "42125", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.519217, 39.962199], [-80.519218, 39.962424], [-80.519207, 39.963381], [-80.51912, 40.01641], [-80.519008, 40.077001], [-80.51896, 40.078089], [-80.519104, 40.159672], [-80.519056, 40.172744], [-80.519056, 40.172771], [-80.517991, 40.398868], [-80.517998, 40.399644], [-80.518692, 40.477365], [-80.448114, 40.477717], [-80.360873, 40.477539], [-80.183129, 40.332515], [-80.033712, 40.288034], [-79.952098, 40.240877], [-79.964764, 40.23767], [-79.970652, 40.231814], [-79.968335, 40.22382], [-79.956073, 40.213582], [-79.927883, 40.206822], [-79.912586, 40.197767], [-79.893281, 40.194352], [-79.888986, 40.194823], [-79.881913, 40.196519], [-79.870585, 40.197415], [-79.877385, 40.126792], [-79.877048, 40.036826], [-79.998014, 39.983322], [-80.157339, 39.999581], [-80.379505, 39.994125], [-80.519217, 39.962199]]]}, "bbox": [-80.519218, 39.962199, -79.870585, 40.477717]}, {"id": "42127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-75.505607, 41.232539], [-75.441421, 41.260053], [-75.462411, 41.641587], [-75.48315, 41.999259], [-75.477144, 41.999407], [-75.436216, 41.999353], [-75.431961, 41.999363], [-75.359579, 41.999445], [-75.341868, 41.993262], [-75.292589, 41.953897], [-75.279094, 41.938917], [-75.263005, 41.885109], [-75.146446, 41.850899], [-75.140241, 41.852078], [-75.114399, 41.843583], [-75.090799, 41.811991], [-75.053431, 41.752538], [-75.048199, 41.632011], [-75.053077, 41.618552], [-75.050074, 41.606893], [-75.311143, 41.331439], [-75.359184, 41.239206], [-75.505607, 41.232539]]]}, "bbox": [-75.505607, 41.232539, -75.048199, 41.999445]}, {"id": "42129", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.703834, 40.443526], [-79.702131, 40.489635], [-79.701985, 40.523787], [-79.701624, 40.525449], [-79.765415, 40.549854], [-79.692587, 40.669732], [-79.638137, 40.665601], [-79.56111, 40.564113], [-79.450176, 40.530149], [-79.454011, 40.485507], [-79.250605, 40.428726], [-79.247568, 40.43208], [-79.240175, 40.429991], [-79.233203, 40.430741], [-79.214783, 40.424458], [-79.206513, 40.415032], [-79.199233, 40.41078], [-79.192722, 40.414862], [-79.058481, 40.380868], [-78.974649, 40.395972], [-79.055983, 40.285089], [-79.056646, 40.278604], [-79.059378, 40.275767], [-79.067963, 40.272471], [-79.073523, 40.266727], [-79.076638, 40.260307], [-79.07957, 40.257928], [-79.078084, 40.25484], [-79.07925, 40.251172], [-79.082472, 40.250074], [-79.086734, 40.245342], [-79.086174, 40.242665], [-79.088656, 40.241259], [-79.185222, 40.109848], [-79.293682, 40.040413], [-79.457008, 40.135108], [-79.479402, 40.142801], [-79.505188, 40.140568], [-79.540347, 40.114035], [-79.578966, 40.105496], [-79.592602, 40.092005], [-79.641098, 40.088317], [-79.72224, 40.121141], [-79.877385, 40.126792], [-79.870585, 40.197415], [-79.781761, 40.227711], [-79.775139, 40.287888], [-79.787853, 40.297693], [-79.783684, 40.315913], [-79.722151, 40.409098], [-79.704739, 40.427231], [-79.703834, 40.443526]]]}, "bbox": [-79.877385, 40.040413, -78.974649, 40.669732]}, {"id": "42133", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.72162, 40.12007], [-76.663825, 40.063227], [-76.534524, 40.051348], [-76.47358, 39.947352], [-76.239805, 39.721305], [-76.380083, 39.721304], [-76.380583, 39.721304], [-76.395583, 39.721204], [-76.418684, 39.721304], [-76.418784, 39.721204], [-76.491887, 39.721304], [-76.517087, 39.721304], [-76.569389, 39.721203], [-76.569475, 39.721203], [-76.711894, 39.721103], [-76.715594, 39.721103], [-76.787096, 39.720802], [-76.787097, 39.720802], [-76.806397, 39.720602], [-76.809197, 39.720702], [-76.8901, 39.720401], [-76.897566, 39.720401], [-76.999465, 39.720128], [-76.998377, 39.832115], [-76.954932, 39.85685], [-77.018648, 40.013947], [-77.137425, 40.069945], [-77.028853, 40.147838], [-76.905875, 40.165723], [-76.859023, 40.226328], [-76.72162, 40.12007]]]}, "bbox": [-77.137425, 39.720128, -76.239805, 40.226328]}, {"id": "44003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.789678, 41.724568], [-71.455342, 41.732365], [-71.378273, 41.755297], [-71.372508, 41.744727], [-71.365207, 41.735649], [-71.364561, 41.734928], [-71.35508, 41.726962], [-71.353172, 41.725191], [-71.353748, 41.724702], [-71.365717, 41.711615], [-71.365717, 41.694947], [-71.372988, 41.672575], [-71.37791, 41.666646], [-71.382049, 41.667317], [-71.38988, 41.671903], [-71.390775, 41.680629], [-71.389432, 41.683425], [-71.390551, 41.684096], [-71.418069, 41.684208], [-71.441336, 41.686446], [-71.443082, 41.688303], [-71.441896, 41.690025], [-71.445923, 41.691144], [-71.449318, 41.687401], [-71.444468, 41.664409], [-71.430038, 41.667541], [-71.425452, 41.670785], [-71.409302, 41.662643], [-71.408636, 41.653819], [-71.484406, 41.602769], [-71.789359, 41.596852], [-71.789356, 41.59691], [-71.789465, 41.640017], [-71.789678, 41.724568]]]}, "bbox": [-71.789678, 41.596852, -71.353172, 41.755297]}, {"id": "44005", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-71.383586, 41.464782], [-71.389284, 41.460605], [-71.390275, 41.455043], [-71.399568, 41.448596], [-71.40056, 41.46094], [-71.395927, 41.492215], [-71.386511, 41.493071], [-71.378914, 41.504948], [-71.391005, 41.514578], [-71.392137, 41.524468], [-71.384478, 41.556736], [-71.379021, 41.567772], [-71.373618, 41.573214], [-71.370194, 41.573963], [-71.36356, 41.57086], [-71.359868, 41.556308], [-71.363292, 41.501952], [-71.360403, 41.483121], [-71.380947, 41.474561], [-71.383586, 41.464782]]], [[[-71.326769, 41.491286], [-71.325365, 41.487601], [-71.327822, 41.482985], [-71.343013, 41.495615], [-71.341122, 41.498598], [-71.326769, 41.491286]]], [[[-71.3312, 41.580318], [-71.335949, 41.585898], [-71.337048, 41.594688], [-71.333751, 41.605859], [-71.329559, 41.609097], [-71.326609, 41.616114], [-71.325877, 41.623988], [-71.333305, 41.629536], [-71.34657, 41.632229], [-71.362869, 41.651457], [-71.366165, 41.66098], [-71.348402, 41.663727], [-71.338696, 41.658782], [-71.336182, 41.647961], [-71.337048, 41.646146], [-71.342514, 41.644791], [-71.343666, 41.6399], [-71.330711, 41.632992], [-71.314889, 41.630398], [-71.30555, 41.622523], [-71.303352, 41.606591], [-71.307381, 41.597984], [-71.317474, 41.583187], [-71.326103, 41.578583], [-71.3312, 41.580318]]], [[[-71.281571, 41.648207], [-71.278171, 41.647309], [-71.274315, 41.638125], [-71.283791, 41.637797], [-71.286755, 41.642725], [-71.283005, 41.644434], [-71.281571, 41.648207]]], [[[-71.12057, 41.497448], [-71.136867, 41.493942], [-71.141093, 41.489937], [-71.140224, 41.485855], [-71.167345, 41.471405], [-71.170131, 41.463974], [-71.19302, 41.457931], [-71.194967, 41.459037], [-71.196857, 41.461116], [-71.196607, 41.464756], [-71.190016, 41.478275], [-71.190167, 41.484285], [-71.19939, 41.491769], [-71.199692, 41.495511], [-71.206382, 41.499215], [-71.200788, 41.514371], [-71.213563, 41.545818], [-71.20865, 41.571028], [-71.20778, 41.60066], [-71.212656, 41.610072], [-71.212417, 41.61829], [-71.212004, 41.62299], [-71.21616, 41.62549], [-71.240709, 41.619225], [-71.2436, 41.587508], [-71.23613, 41.574767], [-71.236642, 41.535852], [-71.234775, 41.532538], [-71.227989, 41.528297], [-71.229444, 41.521544], [-71.233056, 41.514757], [-71.233141, 41.514598], [-71.233435, 41.514045], [-71.240614, 41.500557], [-71.238586, 41.486845], [-71.237175, 41.486546], [-71.236751, 41.483369], [-71.237783, 41.481155], [-71.237902, 41.480899], [-71.239804, 41.476817], [-71.240047, 41.476296], [-71.24071, 41.474872], [-71.246703, 41.47196], [-71.246676, 41.472323], [-71.246174, 41.478917], [-71.245992, 41.481302], [-71.252692, 41.485902], [-71.264793, 41.488902], [-71.267579, 41.488755], [-71.282262, 41.487982], [-71.285639, 41.487805], [-71.295111, 41.48435], [-71.296517, 41.479829], [-71.300438, 41.46722], [-71.302583, 41.460325], [-71.302741, 41.459817], [-71.302895, 41.459323], [-71.302929, 41.459213], [-71.304247, 41.454976], [-71.304394, 41.454502], [-71.304604, 41.454391], [-71.305896, 41.453708], [-71.310357, 41.45135], [-71.310473, 41.451289], [-71.311344, 41.450829], [-71.311394, 41.450802], [-71.311404, 41.450807], [-71.312694, 41.451402], [-71.312718, 41.454597], [-71.32141, 41.4556], [-71.337377, 41.449033], [-71.337695, 41.448902], [-71.351096, 41.450802], [-71.351457, 41.451099], [-71.358166, 41.456616], [-71.358262, 41.456695], [-71.358356, 41.456772], [-71.358657, 41.457019], [-71.359015, 41.457314], [-71.359136, 41.457414], [-71.359292, 41.457542], [-71.361852, 41.459647], [-71.362201, 41.459934], [-71.362288, 41.460006], [-71.362699, 41.460343], [-71.362743, 41.460379], [-71.362736, 41.460405], [-71.362012, 41.463041], [-71.36176, 41.463955], [-71.36152, 41.464831], [-71.34707, 41.47123], [-71.335992, 41.469647], [-71.316519, 41.47756], [-71.317414, 41.488776], [-71.323125, 41.503088], [-71.327804, 41.504258], [-71.330694, 41.507699], [-71.330831, 41.518364], [-71.313079, 41.534672], [-71.310533, 41.54692], [-71.303652, 41.559925], [-71.294363, 41.571416], [-71.288376, 41.573274], [-71.285142, 41.577127], [-71.273445, 41.60699], [-71.272412, 41.615041], [-71.275234, 41.619444], [-71.271862, 41.623986], [-71.251082, 41.63878], [-71.212136, 41.641945], [-71.19564, 41.67509], [-71.19439, 41.674802], [-71.191178, 41.674216], [-71.191175, 41.674292], [-71.18129, 41.672502], [-71.17599, 41.671402], [-71.17609, 41.668502], [-71.17609, 41.668102], [-71.153989, 41.664102], [-71.14587, 41.662795], [-71.135188, 41.660502], [-71.134688, 41.660502], [-71.134478, 41.641262], [-71.134484, 41.641198], [-71.133796, 41.63409], [-71.133608, 41.632152], [-71.133353, 41.629509], [-71.12057, 41.497448]]]]}, "bbox": [-71.40056, 41.448596, -71.12057, 41.67509]}, {"id": "44007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-71.796822, 41.928552], [-71.799242, 42.008065], [-71.591104, 42.013713], [-71.576908, 42.014098], [-71.559439, 42.014342], [-71.527606, 42.014998], [-71.527306, 42.015098], [-71.500905, 42.017098], [-71.499905, 42.017198], [-71.498258, 42.01722], [-71.458104, 42.017762], [-71.381401, 42.018798], [-71.381466, 41.984998], [-71.381501, 41.966699], [-71.381401, 41.964799], [-71.3816, 41.922899], [-71.3817, 41.922699], [-71.3766, 41.893999], [-71.373799, 41.894399], [-71.370999, 41.894599], [-71.365399, 41.895299], [-71.364699, 41.895399], [-71.362499, 41.895599], [-71.354699, 41.896499], [-71.352699, 41.896699], [-71.339298, 41.893599], [-71.339298, 41.893399], [-71.337597, 41.8337], [-71.339597, 41.832], [-71.339297, 41.8065], [-71.327896, 41.780501], [-71.317795, 41.776101], [-71.31779, 41.776099], [-71.353897, 41.751301], [-71.356997, 41.741601], [-71.365207, 41.735649], [-71.372508, 41.744727], [-71.378273, 41.755297], [-71.455342, 41.732365], [-71.789678, 41.724568], [-71.789678, 41.724734], [-71.792767, 41.807001], [-71.792786, 41.80867], [-71.794161, 41.840141], [-71.794161, 41.841101], [-71.796089, 41.904468], [-71.796822, 41.928552]]]}, "bbox": [-71.799242, 41.724568, -71.31779, 42.018798]}, {"id": "44009", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-71.58955, 41.196557], [-71.580228, 41.204837], [-71.577301, 41.21471], [-71.576661, 41.224434], [-71.573785, 41.228436], [-71.561093, 41.224207], [-71.555006, 41.216822], [-71.554067, 41.212957], [-71.557459, 41.204542], [-71.564119, 41.195372], [-71.565752, 41.184373], [-71.560969, 41.176186], [-71.550226, 41.166787], [-71.544446, 41.164912], [-71.543872, 41.161321], [-71.547051, 41.153684], [-71.551953, 41.151718], [-71.5937, 41.146339], [-71.599993, 41.146932], [-71.611706, 41.153239], [-71.613133, 41.160281], [-71.605565, 41.182139], [-71.594994, 41.188392], [-71.58955, 41.196557]]], [[[-71.408636, 41.653819], [-71.40377, 41.589321], [-71.447712, 41.5804], [-71.442567, 41.565075], [-71.421649, 41.537892], [-71.417398, 41.534536], [-71.414825, 41.523126], [-71.414937, 41.516303], [-71.421425, 41.498629], [-71.419971, 41.484758], [-71.417957, 41.482073], [-71.417621, 41.477934], [-71.418404, 41.472652], [-71.421157, 41.469888], [-71.422991, 41.472682], [-71.430744, 41.470636], [-71.430926, 41.465655], [-71.427935, 41.459529], [-71.428652, 41.454158], [-71.433612, 41.444995], [-71.43767, 41.441302], [-71.441199, 41.441602], [-71.448948, 41.438479], [-71.455845, 41.432986], [-71.455371, 41.407962], [-71.474918, 41.386104], [-71.483295, 41.371722], [-71.513401, 41.374702], [-71.526724, 41.376636], [-71.555381, 41.373316], [-71.624505, 41.36087], [-71.68807, 41.342823], [-71.701631, 41.336968], [-71.72074, 41.331567], [-71.729247, 41.33099], [-71.773702, 41.327977], [-71.785957, 41.325739], [-71.833755, 41.315631], [-71.857432, 41.306318], [-71.862772, 41.309791], [-71.862109, 41.316612], [-71.85957, 41.322399], [-71.839782, 41.33469], [-71.83253, 41.341204], [-71.83124, 41.344645], [-71.831613, 41.370899], [-71.833443, 41.384524], [-71.842131, 41.395359], [-71.843472, 41.40583], [-71.842563, 41.409855], [-71.839649, 41.412119], [-71.81839, 41.419599], [-71.797683, 41.416709], [-71.797674, 41.41691], [-71.789359, 41.596852], [-71.484406, 41.602769], [-71.408636, 41.653819]]]]}, "bbox": [-71.862772, 41.146339, -71.40377, 41.653819]}, {"id": "45003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.522124, 33.825522], [-81.415308, 33.732161], [-81.187271, 33.652937], [-81.373494, 33.49051], [-81.372931, 33.490417], [-81.374827, 33.489652], [-81.516419, 33.382239], [-81.757035, 33.198148], [-81.772251, 33.18012], [-81.851975, 33.247408], [-81.852136, 33.247544], [-81.902737, 33.331242], [-81.912572, 33.408811], [-81.957934, 33.468632], [-81.967037, 33.480636], [-82.007138, 33.522835], [-82.007638, 33.523335], [-82.014293, 33.530313], [-82.012534, 33.532156], [-81.651759, 33.81451], [-81.571485, 33.87723], [-81.569149, 33.871845], [-81.563671, 33.865324], [-81.560733, 33.862645], [-81.554531, 33.860547], [-81.551552, 33.860657], [-81.546946, 33.858683], [-81.540865, 33.851915], [-81.542263, 33.848407], [-81.540866, 33.845608], [-81.538679, 33.844531], [-81.538291, 33.841496], [-81.534438, 33.837454], [-81.53359, 33.832154], [-81.527148, 33.829799], [-81.52286, 33.826967], [-81.522124, 33.825522]]]}, "bbox": [-82.014293, 33.18012, -81.187271, 33.87723]}, {"id": "45007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.486746, 34.819475], [-82.453789, 34.625114], [-82.419665, 34.557089], [-82.313996, 34.484002], [-82.741491, 34.208709], [-82.74192, 34.210063], [-82.744415, 34.224913], [-82.743461, 34.227343], [-82.74198, 34.230196], [-82.755028, 34.276067], [-82.766078, 34.293509], [-82.848651, 34.423844], [-82.874864, 34.468891], [-82.873831, 34.471508], [-82.882864, 34.479003], [-82.902665, 34.485902], [-82.939067, 34.486202], [-82.979568, 34.482702], [-82.992215, 34.479198], [-82.840253, 34.623212], [-82.788664, 34.672017], [-82.486746, 34.819475]]]}, "bbox": [-82.992215, 34.208709, -82.313996, 34.819475]}, {"id": "45011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.772251, 33.18012], [-81.757035, 33.198148], [-81.516419, 33.382239], [-81.374827, 33.489652], [-81.372931, 33.490417], [-81.222673, 33.44], [-81.227804, 33.160697], [-81.193099, 33.118668], [-81.364857, 33.108061], [-81.541881, 33.158279], [-81.615756, 33.092534], [-81.620287, 33.095408], [-81.696934, 33.116551], [-81.772251, 33.18012]]]}, "bbox": [-81.772251, 33.092534, -81.193099, 33.490417]}, {"id": "45013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.826309, 32.704321], [-80.66774, 32.665535], [-80.659751, 32.612683], [-80.551504, 32.565769], [-80.47691, 32.48539], [-80.48025, 32.477407], [-80.484617, 32.460976], [-80.480156, 32.447048], [-80.467588, 32.425259], [-80.446075, 32.423721], [-80.43296, 32.410659], [-80.429941, 32.401782], [-80.429291, 32.389667], [-80.434303, 32.375193], [-80.445451, 32.350335], [-80.456814, 32.336884], [-80.455192, 32.326458], [-80.466342, 32.31917], [-80.517871, 32.298796], [-80.539429, 32.287024], [-80.545688, 32.282076], [-80.571096, 32.273278], [-80.596394, 32.273549], [-80.618286, 32.260183], [-80.638857, 32.255618], [-80.658634, 32.248638], [-80.669166, 32.216783], [-80.688857, 32.200971], [-80.721463, 32.160427], [-80.749091, 32.140137], [-80.789996, 32.122494], [-80.812503, 32.109746], [-80.82153, 32.108589], [-80.828394, 32.113222], [-80.831531, 32.112709], [-80.844431, 32.109709], [-80.858735, 32.099581], [-80.878111, 32.079792], [-81.016341, 32.241923], [-81.006432, 32.306196], [-80.934935, 32.300369], [-80.829489, 32.411836], [-80.869705, 32.660935], [-80.837033, 32.700038], [-80.826309, 32.704321]]]}, "bbox": [-81.016341, 32.079792, -80.429291, 32.704321]}, {"id": "45019", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.446699, 33.213458], [-79.438387, 33.215136], [-79.413588, 33.198159], [-79.404858, 33.184929], [-79.268762, 33.136043], [-79.290754, 33.110051], [-79.291591, 33.109773], [-79.329909, 33.089986], [-79.337169, 33.072302], [-79.335346, 33.065362], [-79.339313, 33.050336], [-79.359961, 33.006672], [-79.403712, 33.003903], [-79.416515, 33.006815], [-79.423447, 33.015085], [-79.461047, 33.007639], [-79.483499, 33.001265], [-79.488727, 33.015832], [-79.506923, 33.032813], [-79.522449, 33.03535], [-79.55756, 33.021269], [-79.580725, 33.006447], [-79.58659, 32.991334], [-79.60102, 32.979282], [-79.606615, 32.972248], [-79.617611, 32.952726], [-79.617715, 32.94487], [-79.612928, 32.934815], [-79.606194, 32.925953], [-79.585897, 32.926461], [-79.581687, 32.931341], [-79.574951, 32.934526], [-79.572614, 32.933885], [-79.569762, 32.926692], [-79.576006, 32.906235], [-79.631149, 32.888606], [-79.655426, 32.872705], [-79.695141, 32.850398], [-79.699482, 32.839997], [-79.702956, 32.835781], [-79.719879, 32.825796], [-79.716761, 32.813627], [-79.726389, 32.805996], [-79.811021, 32.77696], [-79.818237, 32.766352], [-79.84035, 32.756816], [-79.848527, 32.755248], [-79.866742, 32.757422], [-79.872232, 32.752128], [-79.873605, 32.745657], [-79.868352, 32.734849], [-79.870336, 32.727777], [-79.888028, 32.695177], [-79.884961, 32.684402], [-79.915682, 32.664915], [-79.968468, 32.639732], [-79.975248, 32.639537], [-79.986917, 32.626388], [-79.99175, 32.616389], [-79.999374, 32.611851], [-80.010505, 32.608852], [-80.037276, 32.610236], [-80.077039, 32.603319], [-80.121368, 32.590523], [-80.148406, 32.578479], [-80.167286, 32.559885], [-80.171764, 32.546118], [-80.188401, 32.553604], [-80.193676, 32.554213], [-80.20523, 32.555547], [-80.246361, 32.531114], [-80.249566, 32.529584], [-80.352823, 32.500187], [-80.416586, 32.546318], [-80.389955, 32.647906], [-80.446077, 32.727477], [-80.40134, 32.858466], [-80.148108, 32.818904], [-80.158808, 32.830114], [-80.16313, 32.84127], [-80.17446, 32.845651], [-80.079028, 32.927811], [-80.149246, 33.021601], [-80.055463, 32.999514], [-80.011774, 32.899881], [-79.948848, 32.90811], [-79.928305, 32.823983], [-79.855069, 32.87387], [-79.643301, 33.123453], [-79.518844, 33.148297], [-79.446699, 33.213458]]]}, "bbox": [-80.446077, 32.500187, -79.268762, 33.215136]}, {"id": "45031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.072808, 34.086013], [-80.131441, 34.128666], [-80.112727, 34.197018], [-80.177225, 34.366203], [-80.288692, 34.364139], [-80.286936, 34.364572], [-80.28688, 34.365305], [-80.288596, 34.366207], [-80.045439, 34.492631], [-79.884542, 34.491218], [-79.829981, 34.531925], [-79.721794, 34.485416], [-79.750566, 34.436797], [-79.684559, 34.40049], [-79.657764, 34.30519], [-79.883065, 34.204112], [-79.999789, 34.129007], [-80.072808, 34.086013]]]}, "bbox": [-80.288692, 34.086013, -79.657764, 34.531925]}, {"id": "45035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.361851, 33.257443], [-80.299248, 33.130274], [-80.279567, 33.119213], [-80.149246, 33.021601], [-80.079028, 32.927811], [-80.17446, 32.845651], [-80.16313, 32.84127], [-80.158808, 32.830114], [-80.148108, 32.818904], [-80.40134, 32.858466], [-80.390533, 33.043909], [-80.6221, 33.06608], [-80.709736, 33.15647], [-80.790296, 33.18084], [-80.50279, 33.334496], [-80.484578, 33.280034], [-80.361851, 33.257443]]]}, "bbox": [-80.790296, 32.818904, -80.079028, 33.334496]}, {"id": "45041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.544036, 34.219676], [-79.568984, 34.175087], [-79.515308, 34.097207], [-79.482549, 33.937537], [-79.324317, 33.799123], [-79.496486, 33.775357], [-79.79837, 33.835562], [-79.87562, 33.885245], [-79.945584, 33.885717], [-79.974601, 33.946527], [-79.893517, 33.988017], [-80.000594, 34.047877], [-80.072808, 34.086013], [-79.999789, 34.129007], [-79.883065, 34.204112], [-79.657764, 34.30519], [-79.644463, 34.30119], [-79.641751, 34.299762], [-79.635373, 34.301299], [-79.633413, 34.297994], [-79.54793, 34.230913], [-79.54404, 34.225186], [-79.544036, 34.219676]]]}, "bbox": [-80.072808, 33.775357, -79.324317, 34.30519]}, {"id": "45043", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.235068, 33.69425], [-79.208955, 33.703126], [-79.195161, 33.703438], [-79.199432, 33.710101], [-79.190264, 33.705787], [-79.100653, 33.571807], [-79.002109, 33.572114], [-79.007356, 33.566565], [-79.028516, 33.533365], [-79.041125, 33.523773], [-79.084588, 33.483669], [-79.10136, 33.461016], [-79.135441, 33.403867], [-79.147496, 33.378243], [-79.152035, 33.350925], [-79.158429, 33.332811], [-79.162332, 33.327246], [-79.180318, 33.254141], [-79.180563, 33.237955], [-79.172394, 33.206577], [-79.18787, 33.173712], [-79.195631, 33.166016], [-79.215453, 33.155569], [-79.238262, 33.137055], [-79.24609, 33.124865], [-79.290754, 33.110051], [-79.268762, 33.136043], [-79.404858, 33.184929], [-79.413588, 33.198159], [-79.438387, 33.215136], [-79.446699, 33.213458], [-79.677014, 33.304944], [-79.53808, 33.496896], [-79.435733, 33.572702], [-79.409332, 33.68889], [-79.317041, 33.779878], [-79.316294, 33.778554], [-79.313573, 33.775846], [-79.30883, 33.771973], [-79.306679, 33.76623], [-79.30468, 33.763449], [-79.300613, 33.75883], [-79.298706, 33.757025], [-79.294779, 33.754324], [-79.293312, 33.75228], [-79.292578, 33.750167], [-79.29291, 33.747135], [-79.294366, 33.743757], [-79.293978, 33.741144], [-79.290436, 33.739116], [-79.286248, 33.737386], [-79.286157, 33.735701], [-79.289351, 33.734349], [-79.29139, 33.732392], [-79.291574, 33.728981], [-79.288312, 33.723526], [-79.28717, 33.718807], [-79.286441, 33.717597], [-79.282995, 33.715972], [-79.280518, 33.716324], [-79.278604, 33.718226], [-79.271664, 33.721855], [-79.269597, 33.719893], [-79.269411, 33.717788], [-79.271326, 33.71571], [-79.274935, 33.714319], [-79.274694, 33.711077], [-79.275057, 33.708852], [-79.273306, 33.708116], [-79.271676, 33.708557], [-79.26925, 33.710893], [-79.266927, 33.710979], [-79.265011, 33.710275], [-79.264683, 33.707364], [-79.265102, 33.706001], [-79.267863, 33.704375], [-79.267586, 33.703399], [-79.261467, 33.703617], [-79.258107, 33.702742], [-79.24977, 33.703424], [-79.244897, 33.705717], [-79.243348, 33.706114], [-79.241463, 33.705397], [-79.240279, 33.703728], [-79.240644, 33.702598], [-79.242086, 33.701515], [-79.247339, 33.700817], [-79.249581, 33.699302], [-79.249309, 33.696975], [-79.246384, 33.695347], [-79.23888, 33.694417], [-79.235068, 33.69425]]]}, "bbox": [-79.677014, 33.110051, -79.002109, 33.779878]}, {"id": "45045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.193006, 34.686303], [-82.236, 34.535962], [-82.313996, 34.484002], [-82.419665, 34.557089], [-82.453789, 34.625114], [-82.486746, 34.819475], [-82.537866, 35.015696], [-82.588598, 35.073973], [-82.764464, 35.068177], [-82.686738, 35.11979], [-82.686496, 35.121822], [-82.582264, 35.142268], [-82.580127, 35.141963], [-82.574406, 35.144216], [-82.536527, 35.159137], [-82.535804, 35.158699], [-82.517284, 35.162643], [-82.51691, 35.163029], [-82.476136, 35.175486], [-82.384029, 35.210542], [-82.35243, 35.206595], [-82.288453, 35.198605], [-82.257515, 35.198636], [-82.230915, 35.196784], [-82.230517, 35.196764], [-82.216217, 35.196044], [-82.225698, 34.850171], [-82.146792, 34.785554], [-82.193006, 34.686303]]]}, "bbox": [-82.764464, 34.484002, -82.146792, 35.210542]}, {"id": "45047", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.870084, 34.135357], [-82.008298, 33.961646], [-82.046974, 33.95321], [-82.04513, 33.983396], [-82.200286, 33.978597], [-82.245055, 34.018781], [-82.306243, 33.971584], [-82.326947, 34.06412], [-82.267184, 34.10836], [-82.247747, 34.219619], [-82.334234, 34.34263], [-82.246337, 34.409676], [-82.169297, 34.330746], [-81.945019, 34.203148], [-81.870084, 34.135357]]]}, "bbox": [-82.334234, 33.95321, -81.870084, 34.409676]}, {"id": "45051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.002109, 33.572114], [-79.100653, 33.571807], [-79.190264, 33.705787], [-79.339076, 33.969722], [-79.126681, 34.235362], [-79.135118, 34.241458], [-79.128165, 34.253652], [-79.071169, 34.29924], [-78.712206, 33.996732], [-78.710141, 33.994688], [-78.6505, 33.944035], [-78.541087, 33.851112], [-78.553944, 33.847831], [-78.584841, 33.844282], [-78.67226, 33.817587], [-78.714116, 33.800138], [-78.772737, 33.768511], [-78.812931, 33.743472], [-78.862931, 33.705654], [-78.938076, 33.639826], [-79.002109, 33.572114]]]}, "bbox": [-79.339076, 33.571807, -78.541087, 34.29924]}, {"id": "45053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.878111, 32.079792], [-80.905378, 32.051943], [-80.892344, 32.043764], [-80.885517, 32.0346], [-81.004115, 32.072225], [-81.042833, 32.084508], [-81.06185, 32.087935], [-81.113334, 32.113205], [-81.117234, 32.117605], [-81.122034, 32.161803], [-81.125457, 32.22713], [-81.128034, 32.276297], [-81.120333, 32.285796], [-81.122333, 32.305395], [-81.134332, 32.341693], [-81.140932, 32.349393], [-81.168032, 32.368391], [-81.199029, 32.467286], [-81.275415, 32.539457], [-81.286776, 32.544831], [-81.014625, 32.753058], [-80.902448, 32.621561], [-80.869705, 32.660935], [-80.829489, 32.411836], [-80.934935, 32.300369], [-81.006432, 32.306196], [-81.016341, 32.241923], [-80.878111, 32.079792]]]}, "bbox": [-81.286776, 32.0346, -80.829489, 32.753058]}, {"id": "45055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.479857, 34.168696], [-80.578081, 34.101549], [-80.604403, 34.101671], [-80.618542, 34.109176], [-80.616186, 34.099605], [-80.635594, 34.097666], [-80.639534, 34.095633], [-80.646696, 34.09399], [-80.658325, 34.088774], [-80.658978, 34.085743], [-80.67297, 34.083732], [-80.676421, 34.08461], [-80.683662, 34.081603], [-80.692965, 34.08128], [-80.719318, 34.068972], [-80.869733, 34.182389], [-80.825921, 34.26876], [-80.769926, 34.377111], [-80.879227, 34.457776], [-80.743345, 34.539916], [-80.739966, 34.479957], [-80.523945, 34.509752], [-80.550552, 34.560116], [-80.408373, 34.614765], [-80.328553, 34.501349], [-80.288596, 34.366207], [-80.28688, 34.365305], [-80.286936, 34.364572], [-80.288692, 34.364139], [-80.421654, 34.294301], [-80.479857, 34.168696]]]}, "bbox": [-80.879227, 34.068972, -80.28688, 34.614765]}, {"id": "45057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.906417, 35.076608], [-80.840461, 35.001566], [-80.806784, 34.963249], [-80.806461, 34.962894], [-80.782042, 34.935782], [-80.79675, 34.825281], [-80.777712, 34.819697], [-80.771792, 34.819646], [-80.646601, 34.818592], [-80.644656, 34.818568], [-80.626077, 34.818217], [-80.625993, 34.818239], [-80.621222, 34.818174], [-80.561674, 34.817481], [-80.408373, 34.614765], [-80.550552, 34.560116], [-80.523945, 34.509752], [-80.739966, 34.479957], [-80.743345, 34.539916], [-80.879227, 34.457776], [-80.877491, 34.543146], [-80.896406, 34.631781], [-80.860274, 34.695847], [-80.898215, 34.820746], [-80.868652, 34.951143], [-80.906417, 35.076608]]]}, "bbox": [-80.906417, 34.457776, -80.408373, 35.076608]}, {"id": "45059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.313996, 34.484002], [-82.236, 34.535962], [-82.193006, 34.686303], [-82.146792, 34.785554], [-82.012297, 34.668587], [-81.854002, 34.594549], [-81.643552, 34.533652], [-81.782627, 34.365089], [-81.895713, 34.29988], [-81.945019, 34.203148], [-82.169297, 34.330746], [-82.246337, 34.409676], [-82.313996, 34.484002]]]}, "bbox": [-82.313996, 34.203148, -81.643552, 34.785554]}, {"id": "45063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.338961, 34.197587], [-81.275845, 34.097381], [-81.153617, 34.07795], [-81.059715, 34.005253], [-81.01233, 33.88008], [-81.058521, 33.747053], [-80.926321, 33.755583], [-81.042854, 33.707131], [-81.086803, 33.695315], [-81.187271, 33.652937], [-81.415308, 33.732161], [-81.522124, 33.825522], [-81.52286, 33.826967], [-81.527148, 33.829799], [-81.53359, 33.832154], [-81.534438, 33.837454], [-81.538291, 33.841496], [-81.538679, 33.844531], [-81.540866, 33.845608], [-81.542263, 33.848407], [-81.540865, 33.851915], [-81.546946, 33.858683], [-81.551552, 33.860657], [-81.554531, 33.860547], [-81.560733, 33.862645], [-81.563671, 33.865324], [-81.569149, 33.871845], [-81.571485, 33.87723], [-81.471972, 34.076552], [-81.388564, 34.080227], [-81.437172, 34.129963], [-81.338961, 34.197587]]]}, "bbox": [-81.571485, 33.652937, -80.926321, 34.197587]}, {"id": "45073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.897499, 35.056021], [-82.915785, 34.971836], [-82.900144, 34.74244], [-82.840253, 34.623212], [-82.992215, 34.479198], [-82.992671, 34.479072], [-82.995284, 34.474549], [-83.006848, 34.474376], [-83.034712, 34.483495], [-83.052161, 34.493062], [-83.072746, 34.504349], [-83.087189, 34.515939], [-83.106874, 34.534053], [-83.170278, 34.592398], [-83.170978, 34.598798], [-83.167523, 34.600424], [-83.240676, 34.624307], [-83.240669, 34.624507], [-83.291683, 34.653396], [-83.337867, 34.687681], [-83.338194, 34.687924], [-83.351293, 34.701703], [-83.350976, 34.713243], [-83.351392, 34.714456], [-83.352485, 34.715993], [-83.352422, 34.716111], [-83.339129, 34.741266], [-83.32406, 34.788691], [-83.283151, 34.821328], [-83.267293, 34.832748], [-83.242962, 34.877749], [-83.143261, 34.924756], [-83.108535, 35.000771], [-83.008447, 35.026974], [-82.897499, 35.056021]]]}, "bbox": [-83.352485, 34.474376, -82.840253, 35.056021]}, {"id": "45075", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.22011, 33.439493], [-81.22155, 33.439044], [-81.222673, 33.44], [-81.372931, 33.490417], [-81.373494, 33.49051], [-81.187271, 33.652937], [-81.086803, 33.695315], [-81.042854, 33.707131], [-80.93979, 33.608798], [-80.879528, 33.619285], [-80.807631, 33.604081], [-80.65902, 33.470982], [-80.552272, 33.565414], [-80.496273, 33.558481], [-80.354539, 33.430408], [-80.222267, 33.443716], [-80.253836, 33.29926], [-80.361851, 33.257443], [-80.484578, 33.280034], [-80.50279, 33.334496], [-80.790296, 33.18084], [-80.791667, 33.181077], [-80.793002, 33.17984], [-80.793711, 33.178648], [-80.795864, 33.17693], [-80.797912, 33.176944], [-80.948756, 33.308047], [-81.22011, 33.439493]]]}, "bbox": [-81.373494, 33.17693, -80.222267, 33.707131]}, {"id": "45079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.747337, 33.761742], [-80.91731, 33.813735], [-81.01233, 33.88008], [-81.059715, 34.005253], [-81.153617, 34.07795], [-81.275845, 34.097381], [-81.338961, 34.197587], [-81.345328, 34.20503], [-81.316911, 34.239458], [-81.178293, 34.174552], [-81.095863, 34.213872], [-80.825921, 34.26876], [-80.869733, 34.182389], [-80.719318, 34.068972], [-80.692965, 34.08128], [-80.683662, 34.081603], [-80.676421, 34.08461], [-80.67297, 34.083732], [-80.658978, 34.085743], [-80.658325, 34.088774], [-80.646696, 34.09399], [-80.639534, 34.095633], [-80.635594, 34.097666], [-80.616186, 34.099605], [-80.633545, 33.85268], [-80.620107, 33.743237], [-80.747337, 33.761742]]]}, "bbox": [-81.345328, 33.743237, -80.616186, 34.26876]}, {"id": "45083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.012297, 34.668587], [-82.146792, 34.785554], [-82.225698, 34.850171], [-82.216217, 35.196044], [-82.195483, 35.194951], [-82.185513, 35.194355], [-82.176874, 35.19379], [-82.167676, 35.193699], [-81.969325, 35.187215], [-81.874433, 35.184113], [-81.754911, 34.932672], [-81.711694, 34.912577], [-81.78339, 34.837125], [-81.854002, 34.594549], [-82.012297, 34.668587]]]}, "bbox": [-82.225698, 34.594549, -81.711694, 35.196044]}, {"id": "45085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.26906, 34.0351], [-80.180371, 33.952002], [-80.000594, 34.047877], [-79.893517, 33.988017], [-79.974601, 33.946527], [-80.255904, 33.803708], [-80.397131, 33.767821], [-80.392003, 33.71555], [-80.478709, 33.714265], [-80.534085, 33.643911], [-80.620107, 33.743237], [-80.633545, 33.85268], [-80.616186, 34.099605], [-80.618542, 34.109176], [-80.604403, 34.101671], [-80.578081, 34.101549], [-80.479857, 34.168696], [-80.481318, 34.112622], [-80.321721, 34.080356], [-80.279339, 34.036829], [-80.278827, 34.036706], [-80.278461, 34.036722], [-80.26906, 34.0351]]]}, "bbox": [-80.633545, 33.643911, -79.893517, 34.168696]}, {"id": "45091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.032547, 35.109102], [-81.036163, 35.103205], [-81.046524, 35.100617], [-81.052078, 35.096276], [-81.057236, 35.086129], [-81.058029, 35.07319], [-81.057465, 35.061983], [-81.041489, 35.044703], [-80.95787, 35.092639], [-80.93495, 35.107409], [-80.906553, 35.076763], [-80.906417, 35.076608], [-80.868652, 34.951143], [-80.898215, 34.820746], [-81.478454, 34.821509], [-81.461755, 34.831018], [-81.457257, 34.83928], [-81.488434, 35.029516], [-81.409586, 35.046396], [-81.366599, 35.164889], [-81.32802, 35.163404], [-81.269199, 35.16114], [-81.241686, 35.160081], [-81.239358, 35.159974], [-81.090215, 35.152627], [-81.043407, 35.14839], [-81.042758, 35.146042], [-81.032547, 35.109102]]]}, "bbox": [-81.488434, 34.820746, -80.868652, 35.164889]}, {"id": "46011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.129671, 44.195933], [-97.128024, 44.543126], [-96.885504, 44.543773], [-96.45199, 44.543639], [-96.452016, 44.543533], [-96.452236, 44.526871], [-96.45201, 44.516929], [-96.451974, 44.506849], [-96.452122, 44.473043], [-96.452218, 44.470873], [-96.451816, 44.460402], [-96.451924, 44.441549], [-96.452073, 44.38969], [-96.452134, 44.383679], [-96.452213, 44.360149], [-96.452282, 44.354857], [-96.452305, 44.345332], [-96.452152, 44.342219], [-96.452248, 44.340642], [-96.452309, 44.328094], [-96.452372, 44.325991], [-96.452248, 44.313362], [-96.452369, 44.312071], [-96.452239, 44.298655], [-96.452334, 44.297009], [-96.4525, 44.285687], [-96.452617, 44.282702], [-96.452365, 44.271972], [-96.452369, 44.268967], [-96.452419, 44.255274], [-96.452673, 44.254588], [-96.452774, 44.196895], [-96.452774, 44.19678], [-96.889216, 44.195705], [-97.129671, 44.195933]]]}, "bbox": [-97.129671, 44.195705, -96.451816, 44.543773]}, {"id": "46013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.978778, 45.935937], [-97.979592, 45.588483], [-97.981457, 45.240415], [-98.717759, 45.243732], [-98.722481, 45.243764], [-98.722174, 45.591242], [-98.725002, 45.591252], [-98.724375, 45.938685], [-98.18563, 45.936185], [-98.184637, 45.936183], [-98.070515, 45.93618], [-98.008202, 45.936096], [-98.008102, 45.936095], [-97.986893, 45.935961], [-97.978778, 45.935937]]]}, "bbox": [-98.725002, 45.240415, -97.978778, 45.938685]}, {"id": "46029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.882345, 44.97687], [-96.88457, 44.804436], [-97.491346, 44.804035], [-97.494254, 45.151631], [-97.226281, 45.151826], [-96.883948, 45.150224], [-96.882345, 44.97687]]]}, "bbox": [-97.494254, 44.804035, -96.882345, 45.151826]}, {"id": "46065", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-99.676398, 44.548111], [-99.66367, 44.548089], [-99.663508, 44.217517], [-99.695752, 44.172375], [-99.612249, 44.103694], [-99.884485, 44.129582], [-99.938217, 44.195195], [-99.892101, 44.241881], [-100.08533, 44.308451], [-100.36539, 44.355524], [-100.386376, 44.440008], [-100.573957, 44.455475], [-100.526498, 44.547422], [-99.676398, 44.548111]]]}, "bbox": [-100.573957, 44.103694, -99.612249, 44.548111]}, {"id": "46083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.584124, 43.268101], [-96.572489, 43.249178], [-96.557126, 43.224192], [-96.485264, 43.224183], [-96.475571, 43.221054], [-96.436589, 43.120842], [-96.439335, 43.113916], [-96.455107, 43.083366], [-96.805682, 43.08367], [-96.924142, 43.083733], [-96.924841, 43.500007], [-96.598928, 43.500457], [-96.587151, 43.484697], [-96.58407, 43.468856], [-96.600039, 43.45708], [-96.60286, 43.450907], [-96.594254, 43.434153], [-96.557586, 43.406792], [-96.53746, 43.395246], [-96.531159, 43.39561], [-96.529152, 43.397735], [-96.524044, 43.394762], [-96.521697, 43.386897], [-96.521264, 43.374978], [-96.525564, 43.312467], [-96.530392, 43.300034], [-96.551929, 43.292974], [-96.56911, 43.295535], [-96.586317, 43.274319], [-96.584124, 43.268101]]]}, "bbox": [-96.924841, 43.083366, -96.436589, 43.500457]}, {"id": "46099", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.129089, 43.847973], [-96.888664, 43.848385], [-96.508636, 43.847591], [-96.453264, 43.849501], [-96.453088, 43.805123], [-96.453281, 43.791435], [-96.45338, 43.689637], [-96.453408, 43.675008], [-96.453387, 43.609944], [-96.453356, 43.607544], [-96.453383, 43.588183], [-96.453352, 43.58704], [-96.453049, 43.500415], [-96.591213, 43.500514], [-96.598928, 43.500457], [-96.924841, 43.500007], [-97.129478, 43.499683], [-97.129089, 43.847973]]]}, "bbox": [-97.129478, 43.499683, -96.453049, 43.849501]}, {"id": "46103", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.055104, 43.853478], [-104.055077, 43.936535], [-104.05495, 43.93809], [-104.054562, 44.141081], [-103.452453, 44.140772], [-102.388045, 44.140183], [-102.306223, 44.434085], [-102.164179, 44.427466], [-102.001068, 44.510926], [-102.007336, 43.99453], [-102.018887, 43.708618], [-102.139158, 43.700948], [-102.175231, 43.687756], [-102.810419, 43.688132], [-102.817114, 43.689658], [-102.695526, 43.79815], [-102.687192, 43.855415], [-104.055104, 43.853478]]]}, "bbox": [-104.055104, 43.687756, -102.001068, 44.510926]}, {"id": "46127", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.805682, 43.08367], [-96.455107, 43.083366], [-96.466017, 43.062235], [-96.513111, 43.02788], [-96.509479, 42.971122], [-96.510749, 42.944397], [-96.523264, 42.909059], [-96.54146, 42.857682], [-96.549513, 42.839143], [-96.552092, 42.836057], [-96.563058, 42.831051], [-96.577813, 42.828102], [-96.632142, 42.770863], [-96.633168, 42.768325], [-96.639704, 42.737071], [-96.630617, 42.70588], [-96.610975, 42.694751], [-96.60614, 42.694661], [-96.601989, 42.697429], [-96.575299, 42.682665], [-96.542366, 42.660736], [-96.516338, 42.630435], [-96.479685, 42.561238], [-96.476952, 42.556079], [-96.477709, 42.535595], [-96.479909, 42.524195], [-96.481308, 42.516556], [-96.476947, 42.508677], [-96.466253, 42.497702], [-96.443408, 42.489495], [-96.475565, 42.480036], [-96.48749, 42.479846], [-96.611489, 42.506088], [-96.625958, 42.513576], [-96.635982, 42.524324], [-96.708049, 42.601594], [-96.711332, 42.610399], [-96.710604, 42.619625], [-96.707245, 42.631258], [-96.712871, 42.648136], [-96.724033, 42.665971], [-96.806553, 42.703405], [-96.806213, 42.704154], [-96.805682, 43.08367]]]}, "bbox": [-96.806553, 42.479846, -96.443408, 43.08367]}, {"id": "46135", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.637496, 43.16877], [-97.399191, 43.169419], [-97.160544, 43.169978], [-97.160543, 43.083145], [-97.160353, 42.799701], [-97.163082, 42.793385], [-97.190135, 42.805076], [-97.218269, 42.829561], [-97.257089, 42.853854], [-97.328511, 42.859501], [-97.42319, 42.861168], [-97.485376, 42.854838], [-97.531867, 42.850105], [-97.635115, 42.844984], [-97.637496, 43.16877]]]}, "bbox": [-97.637496, 42.793385, -97.160353, 43.169978]}, {"id": "47001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.271587, 35.910165], [-84.32006, 35.991607], [-84.324987, 36.004535], [-84.340197, 36.044973], [-84.340405, 36.045727], [-84.341812, 36.048977], [-84.441034, 36.163478], [-84.372731, 36.216778], [-84.241825, 36.177578], [-84.227527, 36.244879], [-84.069918, 36.230378], [-84.004317, 36.270378], [-83.941711, 36.186378], [-84.094011, 36.068911], [-84.058585, 36.036304], [-84.195151, 35.993008], [-84.271587, 35.910165]]]}, "bbox": [-84.441034, 35.910165, -83.941711, 36.270378]}, {"id": "47011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.703607, 35.241043], [-84.699937, 35.170974], [-84.775852, 34.9878], [-84.808127, 34.987592], [-84.809184, 34.987569], [-84.810477, 34.987607], [-84.810742, 34.987615], [-84.817279, 34.987753], [-84.820478, 34.987913], [-84.82401, 34.987707], [-84.831799, 34.988004], [-84.858032, 34.987746], [-84.861314, 34.987791], [-84.939306, 34.987916], [-84.94442, 34.987864], [-84.955623, 34.98783], [-84.976973, 34.987669], [-85.024043, 35.148829], [-84.94635, 35.287788], [-84.860164, 35.350074], [-84.703607, 35.241043]]]}, "bbox": [-85.024043, 34.987569, -84.699937, 35.350074]}, {"id": "47031", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.876962, 35.524095], [-85.913593, 35.289189], [-86.158018, 35.362607], [-86.261489, 35.333579], [-86.25759, 35.412476], [-86.245165, 35.631913], [-86.207147, 35.70379], [-86.143652, 35.661747], [-85.985062, 35.660108], [-85.876962, 35.524095]]]}, "bbox": [-86.261489, 35.289189, -85.876962, 35.70379]}, {"id": "47035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.680633, 35.908454], [-84.781901, 35.825], [-84.916062, 35.761939], [-85.254062, 35.765611], [-85.247784, 35.78666], [-85.26038, 35.78258], [-85.273288, 35.787948], [-85.269359, 35.793388], [-85.213115, 35.910379], [-85.264206, 35.979154], [-85.246362, 36.100698], [-85.100213, 36.138561], [-84.907753, 36.156293], [-84.720727, 35.994914], [-84.680633, 35.908454]]]}, "bbox": [-85.273288, 35.761939, -84.680633, 36.156293]}, {"id": "47037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.864957, 36.044672], [-86.9292, 36.052722], [-87.027705, 35.989423], [-87.054114, 36.045535], [-86.997705, 36.128512], [-86.913233, 36.382621], [-86.824784, 36.349872], [-86.754795, 36.405496], [-86.723495, 36.34768], [-86.594286, 36.245105], [-86.515589, 36.10061], [-86.618892, 35.968224], [-86.627397, 35.974027], [-86.648288, 35.976422], [-86.681889, 35.989399], [-86.686164, 35.994092], [-86.687714, 35.995343], [-86.691904, 35.994581], [-86.787205, 36.035999], [-86.864957, 36.044672]]]}, "bbox": [-87.054114, 35.968224, -86.515589, 36.405496]}, {"id": "47043", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.151995, 36.289037], [-87.146906, 36.293344], [-87.144172, 36.292142], [-87.142315, 36.294607], [-87.139332, 36.292418], [-87.142372, 36.290684], [-87.151995, 36.289037]]], [[[-87.204242, 35.959186], [-87.53453, 35.993074], [-87.566798, 36.177857], [-87.513533, 36.334713], [-87.286501, 36.321933], [-87.177303, 36.314145], [-87.149876, 36.176878], [-87.182573, 36.049726], [-87.204242, 35.959186]]]]}, "bbox": [-87.566798, 35.959186, -87.139332, 36.334713]}, {"id": "47051", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.318761, 34.991147], [-86.320277, 35.032503], [-86.318168, 35.126986], [-86.261489, 35.333579], [-86.158018, 35.362607], [-85.913593, 35.289189], [-85.90812, 35.276522], [-85.893394, 35.257333], [-85.88675, 35.247379], [-85.874977, 35.227287], [-85.873025, 35.223362], [-85.863935, 34.988379], [-86.311274, 34.991098], [-86.318761, 34.991147]]]}, "bbox": [-86.320277, 34.988379, -85.863935, 35.362607]}, {"id": "47063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.457728, 36.155375], [-83.458695, 36.155289], [-83.467097, 36.174688], [-83.321695, 36.29459], [-83.255292, 36.289092], [-83.16259, 36.345292], [-83.082312, 36.242296], [-83.166085, 36.180894], [-83.234585, 36.085094], [-83.293689, 36.138193], [-83.457728, 36.155375]]]}, "bbox": [-83.467097, 36.085094, -83.082312, 36.345292]}, {"id": "47065", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.135191, 35.458649], [-85.016343, 35.409288], [-84.94635, 35.287788], [-85.024043, 35.148829], [-84.976973, 34.987669], [-84.97986, 34.987647], [-85.045052, 34.986859], [-85.045183, 34.986883], [-85.180553, 34.986075], [-85.185905, 34.985995], [-85.216554, 34.985675], [-85.217854, 34.985675], [-85.220554, 34.985575], [-85.221854, 34.985475], [-85.230354, 34.985475], [-85.235555, 34.985475], [-85.254955, 34.985175], [-85.265055, 34.985075], [-85.275856, 34.984975], [-85.277556, 34.984975], [-85.2945, 34.984651], [-85.301488, 34.984475], [-85.305457, 34.984475], [-85.308257, 34.984375], [-85.363919, 34.983375], [-85.474472, 34.983972], [-85.361959, 35.087773], [-85.387089, 35.147169], [-85.246005, 35.319077], [-85.225877, 35.354276], [-85.135191, 35.458649]]]}, "bbox": [-85.474472, 34.983375, -84.94635, 35.458649]}, {"id": "47093", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-83.732704, 36.164583], [-83.66746, 36.080587], [-83.673297, 36.038486], [-83.654605, 35.971937], [-83.794275, 35.887125], [-83.853457, 35.841138], [-83.994677, 35.883749], [-84.166267, 35.805106], [-84.263383, 35.89694], [-84.268393, 35.902563], [-84.271587, 35.910165], [-84.195151, 35.993008], [-84.058585, 36.036304], [-84.094011, 36.068911], [-83.941711, 36.186378], [-83.732704, 36.164583]]]}, "bbox": [-84.271587, 35.805106, -83.654605, 36.186378]}, {"id": "47113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.606862, 35.789354], [-88.613611, 35.588089], [-88.675867, 35.489163], [-88.841607, 35.427826], [-89.078876, 35.431428], [-89.069544, 35.692679], [-89.02096, 35.671046], [-88.892938, 35.783842], [-88.916181, 35.797307], [-88.910964, 35.797336], [-88.706811, 35.791075], [-88.606862, 35.789354]]]}, "bbox": [-89.078876, 35.427826, -88.606862, 35.797336]}, {"id": "47119", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.215099, 35.850651], [-86.953593, 35.781904], [-86.782016, 35.706595], [-86.849573, 35.525515], [-86.960804, 35.417021], [-87.120883, 35.45566], [-87.206578, 35.433207], [-87.226311, 35.440509], [-87.227932, 35.429332], [-87.295242, 35.442128], [-87.294534, 35.444676], [-87.289872, 35.548025], [-87.339232, 35.65911], [-87.234143, 35.724691], [-87.215099, 35.850651]]]}, "bbox": [-87.339232, 35.417021, -86.782016, 35.850651]}, {"id": "47123", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-84.495529, 35.285472], [-84.401025, 35.330374], [-84.409226, 35.398378], [-84.52585, 35.624186], [-84.423549, 35.671735], [-84.188319, 35.610549], [-84.081561, 35.541231], [-83.993815, 35.550001], [-83.961056, 35.463738], [-83.961054, 35.462838], [-83.9614, 35.459496], [-83.999906, 35.425201], [-84.00225, 35.422548], [-84.024756, 35.353896], [-84.035343, 35.350833], [-84.037494, 35.34985], [-84.038081, 35.348363], [-84.03245, 35.32653], [-84.032479, 35.325318], [-84.02141, 35.301383], [-84.02351, 35.295783], [-84.029033, 35.291049], [-84.055712, 35.268182], [-84.097508, 35.247382], [-84.115048, 35.249765], [-84.115279, 35.250438], [-84.12115, 35.250644], [-84.124915, 35.24983], [-84.202879, 35.255772], [-84.211818, 35.266078], [-84.223718, 35.269078], [-84.227818, 35.267878], [-84.29024, 35.225572], [-84.292321, 35.206677], [-84.495529, 35.285472]]]}, "bbox": [-84.52585, 35.206677, -83.961054, 35.671735]}, {"id": "47125", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.602597, 36.418979], [-87.60342, 36.4259], [-87.641146, 36.638036], [-87.564928, 36.639113], [-87.563052, 36.639113], [-87.436509, 36.640747], [-87.425009, 36.641047], [-87.414309, 36.641047], [-87.347796, 36.64144], [-87.344131, 36.64151], [-87.33598, 36.641543], [-87.281506, 36.641761], [-87.278398, 36.641718], [-87.247655, 36.641841], [-87.231037, 36.641888], [-87.23053, 36.641895], [-87.114983, 36.642414], [-87.120443, 36.45546], [-87.150276, 36.445037], [-87.148602, 36.422773], [-87.150974, 36.416644], [-87.162729, 36.413298], [-87.163242, 36.42136], [-87.171307, 36.427616], [-87.177254, 36.424583], [-87.286501, 36.321933], [-87.513533, 36.334713], [-87.586957, 36.34178], [-87.592358, 36.367663], [-87.602597, 36.418979]]]}, "bbox": [-87.641146, 36.321933, -87.114983, 36.642414]}, {"id": "47141", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-85.780148, 36.238011], [-85.533697, 36.242577], [-85.495124, 36.302278], [-85.419432, 36.236145], [-85.204156, 36.152489], [-85.119583, 36.144719], [-85.100213, 36.138561], [-85.246362, 36.100698], [-85.264206, 35.979154], [-85.309363, 36.031592], [-85.509323, 36.081937], [-85.644604, 36.015053], [-85.807415, 36.131582], [-85.780148, 36.238011]]]}, "bbox": [-85.807415, 35.979154, -85.100213, 36.302278]}, {"id": "47149", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.417189, 36.041517], [-86.310363, 35.978563], [-86.153214, 35.954399], [-86.207147, 35.70379], [-86.245165, 35.631913], [-86.34194, 35.664259], [-86.403312, 35.618874], [-86.543116, 35.697617], [-86.639436, 35.6859], [-86.641978, 35.689037], [-86.674255, 35.696962], [-86.673683, 35.703306], [-86.682628, 35.704097], [-86.686193, 35.710051], [-86.613328, 35.790331], [-86.618892, 35.968224], [-86.515589, 36.10061], [-86.417189, 36.041517]]]}, "bbox": [-86.686193, 35.618874, -86.153214, 36.10061]}, {"id": "47157", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.642786, 35.04486], [-89.643782, 35.012092], [-89.643739, 35.011693], [-89.644282, 34.995293], [-89.724324, 34.994763], [-89.795187, 34.994293], [-89.848488, 34.994193], [-89.883365, 34.994261], [-89.893402, 34.994356], [-90.309297, 34.995694], [-90.309877, 35.00975], [-90.295596, 35.040093], [-90.193859, 35.061646], [-90.174594, 35.116682], [-90.160058, 35.12883], [-90.142794, 35.135091], [-90.109393, 35.118891], [-90.100593, 35.116691], [-90.09061, 35.118287], [-90.08342, 35.12167], [-90.065392, 35.137691], [-90.064612, 35.140621], [-90.073354, 35.211004], [-90.074262, 35.218316], [-90.07741, 35.225479], [-90.097947, 35.249983], [-90.105093, 35.254288], [-90.116493, 35.255788], [-90.140394, 35.252289], [-90.152094, 35.255989], [-90.158865, 35.262577], [-90.166594, 35.274588], [-90.168871, 35.281997], [-90.163812, 35.296115], [-90.158913, 35.300637], [-90.153394, 35.302588], [-90.114893, 35.303887], [-90.086691, 35.369935], [-90.089612, 35.379842], [-90.074992, 35.384152], [-90.061788, 35.386184], [-90.054322, 35.389277], [-89.957347, 35.528683], [-89.933572, 35.533299], [-90.041563, 35.39662], [-89.889317, 35.390906], [-89.70248, 35.408584], [-89.632776, 35.375824], [-89.642786, 35.04486]]]}, "bbox": [-90.309877, 34.994193, -89.632776, 35.533299]}, {"id": "47163", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.983843, 36.508314], [-82.188053, 36.400608], [-82.299859, 36.396505], [-82.438266, 36.445703], [-82.680677, 36.4318], [-82.609176, 36.594099]]]}, "bbox": [-82.680677, 36.396505, -81.826742, 36.616213]}, {"id": "47165", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.228434, 36.487472], [-86.283256, 36.3475], [-86.298452, 36.313634], [-86.451721, 36.335629], [-86.543434, 36.320602], [-86.594286, 36.245105], [-86.723495, 36.34768], [-86.754795, 36.405496], [-86.69875, 36.4074], [-86.564252, 36.633522], [-86.564143, 36.633472], [-86.473497, 36.651671], [-86.473413, 36.651676], [-86.47219, 36.651763], [-86.468497, 36.651841], [-86.411387, 36.65055], [-86.333051, 36.648778], [-86.222151, 36.640891], [-86.219081, 36.640824], [-86.21641, 36.640595], [-86.216183, 36.640527], [-86.205468, 36.639783], [-86.228434, 36.487472]]]}, "bbox": [-86.754795, 36.245105, -86.205468, 36.651841]}, {"id": "47179", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.34046, 36.252807], [-82.437251, 36.154709], [-82.527605, 36.148951], [-82.595065, 36.096205], [-82.647769, 36.146404], [-82.629641, 36.41154], [-82.702566, 36.410412], [-82.676177, 36.4234], [-82.680677, 36.4318], [-82.438266, 36.445703], [-82.299859, 36.396505], [-82.34046, 36.252807]]]}, "bbox": [-82.702566, 36.096205, -82.299859, 36.445703]}, {"id": "47187", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.20507, 35.914639], [-87.202092, 35.936075], [-87.201426, 35.940579], [-87.205665, 35.940967], [-87.204242, 35.959186], [-87.182573, 36.049726], [-87.142341, 36.048028], [-87.106124, 36.045167], [-87.085304, 36.043761], [-87.054114, 36.045535], [-87.027705, 35.989423], [-86.9292, 36.052722], [-86.864957, 36.044672], [-86.787205, 36.035999], [-86.691904, 35.994581], [-86.687714, 35.995343], [-86.686164, 35.994092], [-86.681889, 35.989399], [-86.648288, 35.976422], [-86.627397, 35.974027], [-86.618892, 35.968224], [-86.613328, 35.790331], [-86.686193, 35.710051], [-86.782016, 35.706595], [-86.953593, 35.781904], [-87.215099, 35.850651], [-87.20507, 35.914639]]]}, "bbox": [-87.215099, 35.706595, -86.613328, 36.052722]}, {"id": "47189", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-86.153214, 35.954399], [-86.310363, 35.978563], [-86.417189, 36.041517], [-86.515589, 36.10061], [-86.594286, 36.245105], [-86.543434, 36.320602], [-86.451721, 36.335629], [-86.298452, 36.313634], [-86.283256, 36.3475], [-86.174666, 36.328], [-86.164045, 36.320899], [-86.144659, 36.304502], [-86.136803, 36.295859], [-86.059706, 36.086024], [-86.014849, 35.96106], [-86.153214, 35.954399]]]}, "bbox": [-86.594286, 35.954399, -86.014849, 36.3475]}, {"id": "48001", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.428512, 32.084475], [-95.446747, 31.843116], [-95.412908, 31.835157], [-95.258859, 31.609959], [-95.273203, 31.592886], [-95.651764, 31.541791], [-95.739279, 31.504056], [-95.710112, 31.615587], [-95.7873, 31.618385], [-95.794081, 31.66031], [-95.861262, 31.687451], [-95.875937, 31.755503], [-95.980568, 31.784561], [-95.994127, 31.866258], [-96.027788, 31.878242], [-96.022955, 31.957581], [-96.062172, 31.95634], [-96.052786, 32.005895], [-95.428512, 32.084475]]]}, "bbox": [-96.062172, 31.504056, -95.258859, 32.084475]}, {"id": "48005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.326616, 31.224754], [-94.129632, 31.09928], [-94.45782, 31.033326], [-94.561943, 31.058952], [-94.842947, 31.146578], [-94.909502, 31.337059], [-94.95811, 31.38693], [-94.959415, 31.388884], [-94.966254, 31.391205], [-94.964521, 31.395558], [-94.967634, 31.397412], [-94.969369, 31.396948], [-94.973581, 31.399759], [-94.97778, 31.399381], [-94.976068, 31.402], [-94.976291, 31.40525], [-94.979364, 31.405975], [-94.976033, 31.407744], [-94.983053, 31.411593], [-94.984753, 31.41385], [-94.988061, 31.414417], [-94.990043, 31.413356], [-94.993832, 31.41422], [-94.994108, 31.417835], [-94.997132, 31.41678], [-94.998247, 31.42004], [-95.001258, 31.417949], [-95.005566, 31.421349], [-95.003345, 31.42571], [-95.000212, 31.428196], [-94.865857, 31.526916], [-94.728679, 31.457226], [-94.544888, 31.431715], [-94.530634, 31.398654], [-94.495874, 31.405728], [-94.326616, 31.224754]]]}, "bbox": [-95.005566, 31.033326, -94.129632, 31.526916]}, {"id": "48027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.070188, 30.98622], [-97.259082, 30.889596], [-97.315507, 30.752371], [-97.625288, 30.87043], [-97.828512, 30.906188], [-97.840365, 30.929318], [-97.911684, 31.034919], [-97.913847, 31.065882], [-97.9071, 31.069374], [-97.418606, 31.320202], [-97.343426, 31.244215], [-97.278113, 31.279799], [-97.070188, 30.98622]]]}, "bbox": [-97.913847, 30.752371, -97.070188, 31.320202]}, {"id": "48029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.28702, 29.257626], [-98.407336, 29.114435], [-98.804763, 29.250693], [-98.806552, 29.690709], [-98.778782, 29.720167], [-98.646124, 29.745181], [-98.550489, 29.760713], [-98.443852, 29.71965], [-98.338618, 29.721786], [-98.378068, 29.662613], [-98.310928, 29.594473], [-98.298524, 29.561141], [-98.272924, 29.550878], [-98.126767, 29.482248], [-98.134171, 29.441751], [-98.137187, 29.440428], [-98.28702, 29.257626]]]}, "bbox": [-98.806552, 29.114435, -98.126767, 29.760713]}, {"id": "48037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.746096, 33.703016], [-94.735128, 33.691267], [-94.660964, 33.660322], [-94.52838, 33.615995], [-94.524055, 33.615765], [-94.490684, 33.625586], [-94.487611, 33.628544], [-94.485875, 33.637867], [-94.478366, 33.620847], [-94.470963, 33.60594], [-94.464336, 33.598819], [-94.409329, 33.568265], [-94.355945, 33.54318], [-94.257801, 33.582508], [-94.252656, 33.586144], [-94.181805, 33.593217], [-94.085243, 33.575546], [-94.066846, 33.568909], [-94.04345, 33.552253], [-94.043428, 33.551425], [-94.043375, 33.542315], [-94.043009, 33.493039], [-94.043279, 33.49103], [-94.043188, 33.470324], [-94.042988, 33.435824], [-94.042988, 33.431024], [-94.042887, 33.420225], [-94.043053, 33.377716], [-94.042869, 33.37117], [-94.043128, 33.358757], [-94.043067, 33.352097], [-94.043067, 33.347351], [-94.043067, 33.330498], [-94.04299, 33.271243], [-94.056144, 33.298036], [-94.218517, 33.296936], [-94.231333, 33.241073], [-94.379409, 33.255651], [-94.415739, 33.284017], [-94.517868, 33.282096], [-94.572463, 33.249826], [-94.65226, 33.268861], [-94.746925, 33.328938], [-94.746096, 33.703016]]]}, "bbox": [-94.746925, 33.241073, -94.042869, 33.703016]}, {"id": "48039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.424118, 29.580233], [-95.297409, 29.596514], [-95.216422, 29.55608], [-95.216788, 29.554643], [-95.217702, 29.549503], [-95.217794, 29.548449], [-95.219169, 29.541283], [-95.219395, 29.539122], [-95.219813, 29.536757], [-95.220748, 29.532688], [-95.221212, 29.529137], [-95.221862, 29.526521], [-95.223994, 29.514422], [-95.225168, 29.503974], [-95.229732, 29.480714], [-95.231803, 29.472607], [-95.233081, 29.465566], [-95.056528, 29.199934], [-95.119271, 29.077844], [-95.122525, 29.074], [-95.125134, 29.067321], [-95.191391, 29.02309], [-95.238924, 28.988644], [-95.272266, 28.961546], [-95.297147, 28.934073], [-95.309704, 28.928262], [-95.353451, 28.898145], [-95.376979, 28.87616], [-95.38239, 28.866348], [-95.416174, 28.859482], [-95.439594, 28.859022], [-95.486769, 28.836287], [-95.507041, 28.824755], [-95.567708, 28.829758], [-95.67955, 28.965734], [-95.764937, 28.967359], [-95.770446, 29.06621], [-95.84631, 29.107799], [-95.874028, 29.229702], [-95.841948, 29.258707], [-95.847656, 29.26259], [-95.752866, 29.324503], [-95.654355, 29.290945], [-95.579598, 29.340129], [-95.549994, 29.438439], [-95.462503, 29.43924], [-95.443224, 29.510214], [-95.424118, 29.580233]]]}, "bbox": [-95.874028, 28.824755, -95.056528, 29.596514]}, {"id": "48041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.566983, 30.69567], [-96.45763, 30.744474], [-96.349364, 30.911423], [-96.336193, 30.9217], [-96.263223, 30.964123], [-96.24102, 30.973737], [-96.16837, 30.822997], [-96.187765, 30.598737], [-96.121806, 30.443426], [-96.079969, 30.43003], [-96.147255, 30.38284], [-96.15463, 30.330288], [-96.199544, 30.38291], [-96.299173, 30.379152], [-96.294068, 30.380235], [-96.294939, 30.385623], [-96.306356, 30.391715], [-96.302498, 30.399403], [-96.297599, 30.400421], [-96.298866, 30.410502], [-96.28659, 30.411661], [-96.278998, 30.407422], [-96.272837, 30.409042], [-96.272049, 30.416145], [-96.281109, 30.414831], [-96.287993, 30.421281], [-96.282564, 30.426614], [-96.286449, 30.433756], [-96.285516, 30.448393], [-96.290895, 30.443999], [-96.358817, 30.541753], [-96.510494, 30.627828], [-96.601708, 30.640535], [-96.594308, 30.652589], [-96.584439, 30.658957], [-96.582804, 30.663792], [-96.584171, 30.683191], [-96.581519, 30.68889], [-96.572064, 30.688849], [-96.566983, 30.69567]]]}, "bbox": [-96.601708, 30.330288, -96.079969, 30.973737]}, {"id": "48049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-99.118665, 32.079585], [-98.924401, 32.078018], [-98.668441, 31.700514], [-98.760057, 31.687896], [-98.779951, 31.610735], [-98.991608, 31.484071], [-99.090622, 31.460927], [-99.202768, 31.467234], [-99.195871, 32.079235], [-99.147918, 32.079242], [-99.12534, 32.079187], [-99.118665, 32.079585]]]}, "bbox": [-99.202768, 31.460927, -98.668441, 32.079585]}, {"id": "48053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.911684, 31.034919], [-97.840365, 30.929318], [-97.828512, 30.906188], [-97.96286, 30.785641], [-98.049886, 30.624155], [-98.123111, 30.484723], [-98.125556, 30.426186], [-98.351041, 30.486096], [-98.438995, 30.673285], [-98.371905, 30.740485], [-98.432098, 30.78631], [-98.376877, 30.83489], [-98.445782, 30.921439], [-98.439687, 31.029537], [-97.911684, 31.034919]]]}, "bbox": [-98.445782, 30.426186, -97.828512, 31.034919]}, {"id": "48061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.790358, 26.337438], [-97.527582, 26.299304], [-97.446987, 26.324947], [-97.382485, 26.411326], [-97.377769, 26.409107], [-97.369627, 26.394603], [-97.374461, 26.380862], [-97.388965, 26.36585], [-97.392019, 26.339386], [-97.391001, 26.332262], [-97.387947, 26.330481], [-97.376242, 26.336333], [-97.372171, 26.339895], [-97.369372, 26.348547], [-97.358176, 26.356435], [-97.343418, 26.359234], [-97.335275, 26.355672], [-97.330441, 26.350582], [-97.336802, 26.331753], [-97.352833, 26.318521], [-97.354359, 26.313941], [-97.34698, 26.311396], [-97.347489, 26.292821], [-97.343927, 26.267376], [-97.341128, 26.265595], [-97.331967, 26.265595], [-97.322807, 26.271956], [-97.311866, 26.273737], [-97.307031, 26.253126], [-97.308049, 26.249055], [-97.32128, 26.236078], [-97.32128, 26.228699], [-97.304486, 26.20249], [-97.296598, 26.200709], [-97.294817, 26.192312], [-97.296089, 26.182388], [-97.306776, 26.159487], [-97.296598, 26.142439], [-97.28536, 26.128378], [-97.282094, 26.120301], [-97.283112, 26.117757], [-97.294054, 26.11394], [-97.295072, 26.108342], [-97.279804, 26.092057], [-97.270898, 26.086459], [-97.24698, 26.080352], [-97.208048, 26.079589], [-97.199651, 26.077044], [-97.195071, 26.04193], [-97.204995, 26.030225], [-97.214918, 26.030734], [-97.224842, 26.027426], [-97.226114, 26.024372], [-97.219244, 25.996128], [-97.216954, 25.993838], [-97.208557, 25.991802], [-97.195834, 25.993074], [-97.17446, 26.000072], [-97.167208, 26.007069], [-97.162755, 26.014576], [-97.162628, 26.023482], [-97.172043, 26.044729], [-97.178659, 26.045492], [-97.18273, 26.053126], [-97.164982, 26.063876], [-97.152009, 26.062108], [-97.15321, 26.038906], [-97.151922, 26.017653], [-97.145567, 25.971132], [-97.172633, 25.962883], [-97.228025, 25.958936], [-97.271382, 25.951832], [-97.348275, 25.931143], [-97.362345, 25.915724], [-97.367045, 25.903021], [-97.366723, 25.885066], [-97.408357, 25.856459], [-97.496861, 25.880058], [-97.511161, 25.887458], [-97.582565, 25.937857], [-97.668099, 26.022522], [-97.671568, 26.033955], [-97.863056, 26.061273], [-97.861822, 26.069921], [-97.861837, 26.15948], [-97.861875, 26.348156], [-97.800874, 26.338949], [-97.799073, 26.338749], [-97.798373, 26.338549], [-97.791666, 26.337715], [-97.790358, 26.337438]]]}, "bbox": [-97.863056, 25.856459, -97.145567, 26.411326]}, {"id": "48085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.682467, 32.985325], [-96.687954, 32.985259], [-96.838963, 32.987521], [-96.839552, 32.987508], [-96.843979, 32.987554], [-96.841854, 33.086264], [-96.840426, 33.152585], [-96.834004, 33.405504], [-96.386474, 33.398075], [-96.384602, 33.397826], [-96.384495, 33.341119], [-96.295413, 33.351936], [-96.297227, 32.981752], [-96.516866, 32.982308], [-96.613377, 32.984021], [-96.660185, 32.985127], [-96.682467, 32.985325]]]}, "bbox": [-96.843979, 32.981752, -96.295413, 33.405504]}, {"id": "48091", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.443852, 29.71965], [-98.550489, 29.760713], [-98.646124, 29.745181], [-98.644703, 29.746487], [-98.414018, 29.937557], [-98.2976, 30.037994], [-98.030523, 29.848539], [-97.999271, 29.752444], [-98.089941, 29.683479], [-98.310928, 29.594473], [-98.378068, 29.662613], [-98.338618, 29.721786], [-98.443852, 29.71965]]]}, "bbox": [-98.646124, 29.594473, -97.999271, 30.037994]}, {"id": "48113", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.838963, 32.987521], [-96.687954, 32.985259], [-96.682467, 32.985325], [-96.660185, 32.985127], [-96.613377, 32.984021], [-96.516866, 32.982308], [-96.518273, 32.891534], [-96.518314, 32.877153], [-96.518586, 32.873389], [-96.51897, 32.813616], [-96.523118, 32.545214], [-96.529987, 32.545282], [-96.908135, 32.547838], [-97.038385, 32.548662], [-97.032687, 32.920614], [-97.032287, 32.989324], [-97.016602, 32.98932], [-97.016332, 32.989324], [-96.843979, 32.987554], [-96.839552, 32.987508], [-96.838963, 32.987521]]]}, "bbox": [-97.038385, 32.545214, -96.516866, 32.989324]}, {"id": "48121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.834004, 33.405504], [-96.840426, 33.152585], [-96.841854, 33.086264], [-96.843979, 32.987554], [-97.016332, 32.989324], [-97.016602, 32.98932], [-97.032287, 32.989324], [-97.167261, 32.989802], [-97.29423, 32.99026], [-97.37994, 32.990144], [-97.397205, 32.990747], [-97.39848, 32.990839], [-97.383095, 33.43045], [-97.051253, 33.41995], [-96.94386, 33.41641], [-96.834004, 33.405504]]]}, "bbox": [-97.39848, 32.987554, -96.834004, 33.43045]}, {"id": "48135", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-102.799086, 32.085795], [-102.287048, 32.086991], [-102.287345, 31.651276], [-102.288782, 31.65137], [-102.31805, 31.651327], [-102.767246, 31.651714], [-102.798939, 31.651783], [-102.799086, 32.085795]]]}, "bbox": [-102.799086, 31.651276, -102.287048, 32.086991]}, {"id": "48139", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.086834, 32.549428], [-97.05262, 32.548907], [-97.038385, 32.548662], [-96.908135, 32.547838], [-96.529987, 32.545282], [-96.452138, 32.358631], [-96.383082, 32.328851], [-96.896209, 32.073977], [-96.940656, 32.052087], [-97.086191, 32.265451], [-97.086834, 32.549428]]]}, "bbox": [-97.086834, 32.052087, -96.383082, 32.549428]}, {"id": "48141", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-106.206018, 31.466648], [-106.207524, 31.467872], [-106.2092, 31.469234], [-106.212918, 31.473409], [-106.218538, 31.47972], [-106.254062, 31.547512], [-106.356938, 31.70221], [-106.381039, 31.73211], [-106.41794, 31.752009], [-106.436743, 31.756872], [-106.472514, 31.751802], [-106.528543, 31.783907], [-106.528543, 31.784407], [-106.527997, 31.786945], [-106.527623, 31.789119], [-106.527738, 31.789761], [-106.527943, 31.790507], [-106.530515, 31.792103], [-106.53248, 31.791914], [-106.533, 31.791829], [-106.533043, 31.791907], [-106.534743, 31.796107], [-106.535154, 31.797089], [-106.535343, 31.797507], [-106.535843, 31.798607], [-106.542097, 31.802146], [-106.542144, 31.802107], [-106.544714, 31.804287], [-106.545344, 31.805007], [-106.563444, 31.812606], [-106.566844, 31.813306], [-106.605245, 31.845905], [-106.605845, 31.846305], [-106.614637, 31.84649], [-106.621857, 31.852854], [-106.625763, 31.856276], [-106.627808, 31.860593], [-106.616136, 31.948439], [-106.614702, 31.956], [-106.599096, 32.000731], [-106.598639, 32.000754], [-106.595333, 32.000778], [-106.587972, 32.000749], [-106.566056, 32.000759], [-106.565142, 32.000736], [-106.411075, 32.001334], [-106.394298, 32.001484], [-106.377174, 32.00149], [-106.313307, 32.001512], [-106.205915, 32.001762], [-106.200699, 32.001785], [-106.18184, 32.00205], [-106.09976, 32.002174], [-105.998003, 32.002328], [-105.997658, 31.386489], [-106.00693, 31.392826], [-106.099393, 31.41476], [-106.132782, 31.425367], [-106.202851, 31.464073], [-106.206018, 31.466648]]]}, "bbox": [-106.627808, 31.386489, -105.997658, 32.002328]}, {"id": "48157", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.688349, 29.710862], [-95.687994, 29.710667], [-95.687082, 29.710078], [-95.610025, 29.66699], [-95.537948, 29.633282], [-95.44697, 29.590978], [-95.440415, 29.588065], [-95.435618, 29.585633], [-95.424118, 29.580233], [-95.443224, 29.510214], [-95.462503, 29.43924], [-95.549994, 29.438439], [-95.579598, 29.340129], [-95.654355, 29.290945], [-95.752866, 29.324503], [-95.847656, 29.26259], [-95.8796, 29.266761], [-95.894468, 29.31498], [-95.94681, 29.333433], [-95.937434, 29.358086], [-95.97343, 29.411445], [-96.060676, 29.476473], [-96.044596, 29.562238], [-96.088912, 29.601658], [-96.02485, 29.602877], [-96.032711, 29.727944], [-95.82622, 29.78828], [-95.688349, 29.710862]]]}, "bbox": [-96.088912, 29.26259, -95.424118, 29.78828]}, {"id": "48167", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-94.370866, 29.55507], [-94.500807, 29.505367], [-94.594853, 29.467903], [-94.631084, 29.451464], [-94.670389, 29.43078], [-94.694158, 29.415632], [-94.708473, 29.403049], [-94.723959, 29.383268], [-94.731047, 29.369141], [-94.744834, 29.369158], [-94.761491, 29.361883], [-94.778691, 29.361483], [-94.782356, 29.364266], [-94.783131, 29.375642], [-94.766848, 29.393489], [-94.7541, 29.401], [-94.723818, 29.426536], [-94.706365, 29.436805], [-94.686386, 29.466509], [-94.681541, 29.471389], [-94.6724, 29.476843], [-94.665853, 29.478401], [-94.656737, 29.478033], [-94.645948, 29.473769], [-94.628217, 29.475986], [-94.608557, 29.483345], [-94.594211, 29.492127], [-94.59544, 29.507669], [-94.591407, 29.513858], [-94.580274, 29.525295], [-94.566674, 29.531988], [-94.55399, 29.529559], [-94.546994, 29.524379], [-94.532348, 29.5178], [-94.511045, 29.51965], [-94.495025, 29.525031], [-94.503429, 29.54325], [-94.509487, 29.54259], [-94.511086, 29.542971], [-94.412771, 29.572612], [-94.408992, 29.597467], [-94.371828, 29.597178], [-94.370866, 29.55507]]], [[[-95.223994, 29.514422], [-95.221862, 29.526521], [-95.221212, 29.529137], [-95.220748, 29.532688], [-95.219813, 29.536757], [-95.219395, 29.539122], [-95.219169, 29.541283], [-95.217794, 29.548449], [-95.217702, 29.549503], [-95.216788, 29.554643], [-95.216422, 29.55608], [-95.163927, 29.498051], [-95.018191, 29.554584], [-95.016889, 29.548303], [-95.015165, 29.539989], [-95.013378, 29.537822], [-94.999581, 29.521093], [-94.981916, 29.511141], [-94.958443, 29.505013], [-94.934876, 29.501079], [-94.933483, 29.500847], [-94.933039, 29.500773], [-94.909898, 29.49691], [-94.909465, 29.496838], [-94.913385, 29.487254], [-94.925914, 29.469047], [-94.930861, 29.450504], [-94.919401, 29.448031], [-94.8908, 29.433432], [-94.8873, 29.415132], [-94.886536, 29.366386], [-94.894234, 29.338], [-94.893994, 29.30817], [-94.886536, 29.297826], [-94.875952, 29.293015], [-94.865126, 29.293977], [-94.84973, 29.297345], [-94.824953, 29.306005], [-94.822547, 29.321882], [-94.822307, 29.344254], [-94.810696, 29.353435], [-94.784895, 29.335535], [-94.779995, 29.334935], [-94.777064, 29.336811], [-94.745529, 29.334235], [-94.744945, 29.33641], [-94.73132, 29.338066], [-94.72253, 29.331446], [-94.731082, 29.331833], [-94.769695, 29.304936], [-94.786095, 29.290737], [-94.803695, 29.279237], [-95.026219, 29.148064], [-95.081773, 29.111222], [-95.110484, 29.088224], [-95.119271, 29.077844], [-95.056528, 29.199934], [-95.233081, 29.465566], [-95.231803, 29.472607], [-95.229732, 29.480714], [-95.225168, 29.503974], [-95.223994, 29.514422]]]]}, "bbox": [-95.233081, 29.077844, -94.370866, 29.597467]}, {"id": "48171", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.920147, 30.13829], [-99.300988, 30.134298], [-99.301718, 30.286653], [-99.303996, 30.499832], [-98.964232, 30.498482], [-98.59167, 30.499875], [-98.587897, 30.138954], [-98.920147, 30.13829]]]}, "bbox": [-99.303996, 30.134298, -98.587897, 30.499875]}, {"id": "48181", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.922114, 33.959579], [-96.9163, 33.957798], [-96.907387, 33.950025], [-96.899442, 33.933728], [-96.895728, 33.896414], [-96.88301, 33.868019], [-96.866438, 33.853149], [-96.85609, 33.84749], [-96.761588, 33.824406], [-96.712422, 33.831633], [-96.707274, 33.835398], [-96.700952, 33.840748], [-96.694629, 33.849988], [-96.68928, 33.86166], [-96.685389, 33.872846], [-96.682471, 33.883059], [-96.67858, 33.892786], [-96.672258, 33.899595], [-96.65864, 33.900081], [-96.646968, 33.895218], [-96.633351, 33.889382], [-96.622165, 33.885977], [-96.615356, 33.881114], [-96.613494, 33.878321], [-96.611466, 33.875278], [-96.612963, 33.867651], [-96.615843, 33.853393], [-96.61487, 33.841234], [-96.612925, 33.833939], [-96.500268, 33.772583], [-96.448045, 33.781031], [-96.436455, 33.78005], [-96.423362, 33.776365], [-96.378473, 33.726648], [-96.37947, 33.724876], [-96.384602, 33.397826], [-96.386474, 33.398075], [-96.834004, 33.405504], [-96.94386, 33.41641], [-96.944611, 33.948994], [-96.934508, 33.953748], [-96.922114, 33.959579]]]}, "bbox": [-96.944611, 33.397826, -96.378473, 33.959579]}, {"id": "48183", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.986935, 32.537246], [-94.70179, 32.652209], [-94.701986, 32.421782], [-94.579219, 32.394916], [-94.600776, 32.360044], [-94.638347, 32.370539], [-94.985411, 32.37082], [-94.986406, 32.371322], [-94.986935, 32.537246]]]}, "bbox": [-94.986935, 32.360044, -94.579219, 32.652209]}, {"id": "48187", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.134171, 29.441751], [-98.126767, 29.482248], [-98.272924, 29.550878], [-98.298524, 29.561141], [-98.310928, 29.594473], [-98.089941, 29.683479], [-97.999271, 29.752444], [-97.875259, 29.858208], [-97.721852, 29.682088], [-97.633176, 29.649863], [-97.840383, 29.376791], [-98.084684, 29.379594], [-98.134171, 29.441751]]]}, "bbox": [-98.310928, 29.376791, -97.633176, 29.858208]}, {"id": "48201", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.688349, 29.710862], [-95.82622, 29.78828], [-95.960733, 30.163415], [-95.80333, 30.090096], [-95.65543, 30.108994], [-95.551421, 30.170606], [-95.505125, 30.145153], [-95.264013, 30.032217], [-95.096708, 30.167214], [-95.031179, 29.993324], [-94.985364, 29.972279], [-94.98146, 29.884276], [-94.908654, 29.825181], [-94.931154, 29.673874], [-94.934167, 29.678682], [-94.936089, 29.692704], [-94.942681, 29.697778], [-94.965963, 29.70033], [-94.972666, 29.68487], [-94.988924, 29.672202], [-95.005398, 29.659366], [-95.005648, 29.658985], [-95.006381, 29.657871], [-95.007623, 29.65598], [-95.011025, 29.650803], [-95.011683, 29.649802], [-95.01272, 29.647088], [-95.013777, 29.644322], [-95.015636, 29.639457], [-95.0156, 29.639285], [-95.013623, 29.62979], [-95.013499, 29.629194], [-95.01166, 29.627768], [-95.000781, 29.619331], [-95.00046, 29.619082], [-94.999481, 29.618323], [-94.999082, 29.618014], [-94.988871, 29.610095], [-94.984831, 29.604361], [-94.982936, 29.60167], [-94.982706, 29.601344], [-94.982855, 29.601103], [-94.982923, 29.600992], [-94.988993, 29.591155], [-95.00767, 29.574257], [-95.016145, 29.559336], [-95.016353, 29.55897], [-95.016627, 29.558487], [-95.016672, 29.558388], [-95.018253, 29.554885], [-95.018198, 29.554618], [-95.018191, 29.554584], [-95.163927, 29.498051], [-95.216422, 29.55608], [-95.297409, 29.596514], [-95.424118, 29.580233], [-95.435618, 29.585633], [-95.440415, 29.588065], [-95.44697, 29.590978], [-95.537948, 29.633282], [-95.610025, 29.66699], [-95.687082, 29.710078], [-95.687994, 29.710667], [-95.688349, 29.710862]]]}, "bbox": [-95.960733, 29.498051, -94.908654, 30.170606]}, {"id": "48209", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.172977, 30.356312], [-98.011253, 30.242288], [-97.710215, 30.024499], [-97.893896, 29.883734], [-97.875259, 29.858208], [-97.999271, 29.752444], [-98.030523, 29.848539], [-98.2976, 30.037994], [-98.172977, 30.356312]]]}, "bbox": [-98.2976, 29.752444, -97.710215, 30.356312]}, {"id": "48215", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.861875, 26.348156], [-97.861837, 26.15948], [-97.861822, 26.069921], [-97.863056, 26.061273], [-97.888699, 26.064931], [-98.008307, 26.061147], [-98.011883, 26.056608], [-98.044517, 26.043746], [-98.132605, 26.057507], [-98.241664, 26.074544], [-98.264514, 26.085507], [-98.386694, 26.157872], [-98.438822, 26.212022], [-98.466167, 26.223245], [-98.58581, 26.257403], [-98.58672, 26.257456], [-98.493812, 26.441167], [-98.491943, 26.445362], [-98.478268, 26.469813], [-98.32067, 26.783081], [-97.985494, 26.780917], [-97.985303, 26.615809], [-97.957405, 26.611769], [-98.004189, 26.448784], [-97.86192, 26.433579], [-97.861875, 26.348156]]]}, "bbox": [-98.58672, 26.043746, -97.861822, 26.783081]}, {"id": "48221", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.945625, 32.233468], [-98.068545, 32.511626], [-98.066836, 32.558822], [-97.617066, 32.555484], [-97.615286, 32.318618], [-97.78276, 32.316493], [-97.945625, 32.233468]]]}, "bbox": [-98.068545, 32.233468, -97.615286, 32.558822]}, {"id": "48223", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.862521, 32.979571], [-95.863296, 33.000117], [-95.861778, 33.21933], [-95.730784, 33.305405], [-95.584353, 33.359405], [-95.314165, 33.367232], [-95.308593, 33.37719], [-95.308957, 32.962572], [-95.665389, 32.960434], [-95.862521, 32.979571]]]}, "bbox": [-95.863296, 32.960434, -95.308593, 33.37719]}, {"id": "48231", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.297322, 32.841723], [-96.297227, 32.981752], [-96.295413, 33.351936], [-95.858723, 33.40953], [-95.861778, 33.21933], [-95.863296, 33.000117], [-95.862521, 32.979571], [-95.9453, 32.979877], [-95.987259, 32.876415], [-95.934433, 32.837217], [-96.076801, 32.838489], [-96.297322, 32.841723]]]}, "bbox": [-96.297322, 32.837217, -95.858723, 33.40953]}, {"id": "48245", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.354163, 29.561459], [-94.357976, 29.887464], [-94.442235, 29.889538], [-94.445096, 30.110966], [-94.44491, 30.113015], [-94.292629, 30.117671], [-94.209577, 30.187724], [-94.115917, 30.160347], [-94.031976, 30.028013], [-93.860169, 29.977397], [-93.840799, 29.914423], [-93.890679, 29.843159], [-93.89847, 29.771577], [-93.892246, 29.765241], [-93.837971, 29.690619], [-93.852868, 29.675885], [-93.866981, 29.673085], [-93.88999, 29.674013], [-93.931, 29.679612], [-94.001406, 29.681486], [-94.056506, 29.671163], [-94.132577, 29.646217], [-94.354163, 29.561459]]]}, "bbox": [-94.445096, 29.561459, -93.837971, 30.187724]}, {"id": "48259", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.917725, 29.781398], [-98.920147, 30.13829], [-98.587897, 30.138954], [-98.414018, 29.937557], [-98.644703, 29.746487], [-98.646124, 29.745181], [-98.778782, 29.720167], [-98.781017, 29.72089], [-98.917725, 29.781398]]]}, "bbox": [-98.920147, 29.720167, -98.414018, 30.138954]}, {"id": "48265", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-99.757621, 30.074132], [-99.754142, 30.290698], [-99.301718, 30.286653], [-99.300988, 30.134298], [-98.920147, 30.13829], [-98.917725, 29.781398], [-99.176988, 29.895063], [-99.600862, 29.907662], [-99.691215, 29.908582], [-99.689879, 30.073948], [-99.757621, 30.074132]]]}, "bbox": [-99.757621, 29.781398, -98.917725, 30.290698]}, {"id": "48277", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.857738, 33.461722], [-95.846334, 33.841136], [-95.82468, 33.837726], [-95.763622, 33.847954], [-95.757156, 33.867293], [-95.599678, 33.934247], [-95.567022, 33.932697], [-95.559414, 33.930179], [-95.549145, 33.90795], [-95.549475, 33.901311], [-95.552331, 33.89442], [-95.552085, 33.888422], [-95.548325, 33.882744], [-95.544346, 33.880111], [-95.445751, 33.86885], [-95.407795, 33.866308], [-95.339758, 33.868752], [-95.310475, 33.871481], [-95.308637, 33.380662], [-95.621027, 33.48706], [-95.758439, 33.495098], [-95.82673, 33.459038], [-95.857738, 33.461722]]]}, "bbox": [-95.857738, 33.380662, -95.308637, 33.934247]}, {"id": "48303", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-101.56358, 33.830451], [-101.556884, 33.39476], [-102.075929, 33.389586], [-102.085733, 33.824675], [-101.56358, 33.830451]]]}, "bbox": [-102.085733, 33.389586, -101.556884, 33.830451]}, {"id": "48309", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.801123, 31.522269], [-97.278113, 31.279799], [-97.343426, 31.244215], [-97.418606, 31.320202], [-97.60523, 31.587762], [-97.580232, 31.598796], [-97.277265, 31.745492], [-97.037266, 31.863079], [-96.932215, 31.708887], [-96.801123, 31.522269]]]}, "bbox": [-97.60523, 31.244215, -96.801123, 31.863079]}, {"id": "48321", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.322921, 28.64186], [-96.323522, 28.675597], [-96.309178, 28.963291], [-95.965196, 29.146865], [-95.874028, 29.229702], [-95.84631, 29.107799], [-95.770446, 29.06621], [-95.764937, 28.967359], [-95.67955, 28.965734], [-95.567708, 28.829758], [-95.507041, 28.824755], [-95.568136, 28.789998], [-95.812504, 28.664942], [-95.884026, 28.633098], [-96.000682, 28.588238], [-96.077868, 28.556626], [-96.194412, 28.502224], [-96.220376, 28.491966], [-96.244751, 28.475055], [-96.270391, 28.46193], [-96.303212, 28.441871], [-96.32156, 28.425148], [-96.328817, 28.423659], [-96.341617, 28.417334], [-96.371117, 28.397661], [-96.372101, 28.393875], [-96.370717, 28.387667], [-96.378616, 28.383909], [-96.379372, 28.386089], [-96.381864, 28.393276], [-96.37596, 28.401682], [-96.374138, 28.404275], [-96.335119, 28.437795], [-96.268341, 28.477992], [-96.223825, 28.495067], [-96.218978, 28.500383], [-96.21505, 28.509679], [-96.145448, 28.544741], [-96.104735, 28.559499], [-96.046211, 28.58698], [-96.032979, 28.589016], [-96.007534, 28.599703], [-95.98616, 28.606319], [-95.982088, 28.614461], [-95.985651, 28.621077], [-95.983106, 28.641942], [-95.978526, 28.650594], [-95.986066, 28.655468], [-95.996338, 28.658736], [-96.002954, 28.656192], [-96.006516, 28.648049], [-96.033488, 28.652629], [-96.047737, 28.649067], [-96.072165, 28.635326], [-96.099137, 28.624639], [-96.148501, 28.611408], [-96.187178, 28.593596], [-96.198374, 28.58698], [-96.221784, 28.580364], [-96.228909, 28.580873], [-96.233998, 28.596649], [-96.233998, 28.601738], [-96.222293, 28.607336], [-96.21415, 28.613443], [-96.212624, 28.622604], [-96.230944, 28.641433], [-96.208552, 28.662298], [-96.214659, 28.665352], [-96.192267, 28.687744], [-96.19125, 28.69436], [-96.19583, 28.69894], [-96.202446, 28.700976], [-96.222802, 28.698431], [-96.231453, 28.696395], [-96.256899, 28.68469], [-96.263515, 28.683673], [-96.268604, 28.688762], [-96.287942, 28.683164], [-96.304227, 28.671459], [-96.305245, 28.660263], [-96.303718, 28.644996], [-96.322921, 28.64186]]]}, "bbox": [-96.381864, 28.383909, -95.507041, 29.229702]}, {"id": "48339", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-95.096708, 30.167214], [-95.264013, 30.032217], [-95.505125, 30.145153], [-95.551421, 30.170606], [-95.65543, 30.108994], [-95.80333, 30.090096], [-95.804306, 30.24557], [-95.804351, 30.3378], [-95.83024, 30.630284], [-95.598971, 30.509002], [-95.359156, 30.504369], [-95.308395, 30.40575], [-95.165897, 30.344976], [-95.096708, 30.167214]]]}, "bbox": [-95.83024, 30.032217, -95.096708, 30.630284]}, {"id": "48347", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.326616, 31.224754], [-94.495874, 31.405728], [-94.530634, 31.398654], [-94.544888, 31.431715], [-94.728679, 31.457226], [-94.865857, 31.526916], [-94.951969, 31.641351], [-94.967167, 31.753767], [-94.937532, 31.845555], [-94.452416, 31.844281], [-94.399091, 31.653596], [-94.395361, 31.638752], [-94.311042, 31.589252], [-94.339773, 31.24082], [-94.326616, 31.224754]]]}, "bbox": [-94.967167, 31.224754, -94.311042, 31.845555]}, {"id": "48355", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.377166, 27.875181], [-97.361246, 27.849891], [-97.379042, 27.837867], [-97.391764, 27.813948], [-97.393291, 27.782905], [-97.386166, 27.76662], [-97.368355, 27.741683], [-97.34698, 27.725398], [-97.316446, 27.712676], [-97.253955, 27.696696], [-97.259957, 27.679597], [-97.266064, 27.678579], [-97.296598, 27.613947], [-97.298634, 27.604787], [-97.297616, 27.59868], [-97.294054, 27.5941], [-97.302196, 27.585957], [-97.321535, 27.571199], [-97.325118, 27.560927], [-97.840678, 27.558358], [-97.942146, 27.635932], [-97.934274, 27.885202], [-97.798517, 27.995659], [-97.805765, 27.934287], [-97.691074, 27.917353], [-97.589473, 27.856101], [-97.377166, 27.875181]]]}, "bbox": [-97.942146, 27.558358, -97.253955, 27.995659]}, {"id": "48367", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.544181, 32.994177], [-97.550368, 32.580323], [-97.550582, 32.555391], [-97.617066, 32.555484], [-98.066836, 32.558822], [-98.056094, 33.003332], [-97.921642, 33.001284], [-97.545383, 32.994662], [-97.544181, 32.994177]]]}, "bbox": [-98.066836, 32.555391, -97.544181, 33.003332]}, {"id": "48375", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-101.622941, 35.183117], [-102.167471, 35.183233], [-102.162752, 35.620035], [-101.6228, 35.620196], [-101.622993, 35.184339], [-101.622941, 35.183117]]]}, "bbox": [-102.167471, 35.183117, -101.6228, 35.620196]}, {"id": "48381", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-102.168839, 34.747417], [-102.167471, 35.183233], [-101.622941, 35.183117], [-101.629396, 34.750056], [-101.629257, 34.747649], [-101.998493, 34.74819], [-102.168839, 34.747417]]]}, "bbox": [-102.168839, 34.747417, -101.622941, 35.183233]}, {"id": "48397", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.51897, 32.813616], [-96.518586, 32.873389], [-96.518314, 32.877153], [-96.518273, 32.891534], [-96.516866, 32.982308], [-96.297227, 32.981752], [-96.297322, 32.841723], [-96.297376, 32.814185], [-96.51897, 32.813616]]]}, "bbox": [-96.51897, 32.813616, -96.297227, 32.982308]}, {"id": "48423", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-94.985272, 32.137989], [-95.459908, 32.135559], [-95.488733, 32.232486], [-95.449165, 32.355233], [-95.5943, 32.479858], [-95.594541, 32.687026], [-95.47297, 32.606426], [-95.332164, 32.604252], [-95.167523, 32.543957], [-95.15341, 32.570115], [-94.986935, 32.537246], [-94.986406, 32.371322], [-94.985411, 32.37082], [-94.985272, 32.137989]]]}, "bbox": [-95.594541, 32.135559, -94.985272, 32.687026]}, {"id": "48439", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.550582, 32.555391], [-97.550368, 32.580323], [-97.544181, 32.994177], [-97.414843, 32.992029], [-97.39848, 32.990839], [-97.397205, 32.990747], [-97.37994, 32.990144], [-97.29423, 32.99026], [-97.167261, 32.989802], [-97.032287, 32.989324], [-97.032687, 32.920614], [-97.038385, 32.548662], [-97.05262, 32.548907], [-97.086834, 32.549428], [-97.550582, 32.555391]]]}, "bbox": [-97.550582, 32.548662, -97.032287, 32.994177]}, {"id": "48441", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-99.631413, 32.081274], [-99.713971, 32.082089], [-100.151911, 32.082638], [-100.146543, 32.522793], [-99.629639, 32.520713], [-99.629579, 32.514657], [-99.631413, 32.081274]]]}, "bbox": [-100.151911, 32.081274, -99.629579, 32.522793]}, {"id": "48451", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-100.688764, 31.086576], [-100.693065, 31.523954], [-101.223243, 31.528661], [-101.223944, 31.530035], [-101.267947, 31.528688], [-101.26763, 31.556462], [-100.865256, 31.562294], [-100.861099, 31.705418], [-100.82537, 31.696155], [-100.235761, 31.69297], [-100.234636, 31.587147], [-100.111234, 31.580267], [-100.115216, 31.087994], [-100.688764, 31.086576]]]}, "bbox": [-101.267947, 31.086576, -100.111234, 31.705418]}, {"id": "48453", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.409875, 30.351329], [-97.486329, 30.220528], [-97.492679, 30.209946], [-97.649449, 30.067866], [-97.655257, 30.072907], [-97.710215, 30.024499], [-98.011253, 30.242288], [-98.172977, 30.356312], [-98.125556, 30.426186], [-98.123111, 30.484723], [-98.049886, 30.624155], [-97.956734, 30.628249], [-97.775211, 30.429993], [-97.576167, 30.501799], [-97.369539, 30.419563], [-97.377227, 30.407086], [-97.409875, 30.351329]]]}, "bbox": [-98.172977, 30.024499, -97.369539, 30.628249]}, {"id": "48469", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-96.645867, 28.710457], [-96.648758, 28.709627], [-96.655528, 28.704167], [-96.853757, 28.635199], [-96.930367, 28.586728], [-96.890951, 28.507178], [-96.982147, 28.499639], [-97.048529, 28.549976], [-97.160751, 28.553475], [-97.182359, 28.610602], [-97.158933, 28.776156], [-97.231971, 28.865303], [-97.305916, 28.864037], [-96.976378, 29.104046], [-96.947959, 29.073335], [-96.947333, 29.072716], [-96.946942, 29.072235], [-96.938587, 29.063244], [-96.832103, 29.021299], [-96.792133, 28.918803], [-96.711514, 28.851411], [-96.645867, 28.710457]]]}, "bbox": [-97.305916, 28.499639, -96.645867, 29.104046]}, {"id": "48479", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.954669, 27.269397], [-99.33361, 27.273223], [-99.370621, 27.319174], [-99.453949, 27.264673], [-99.463309, 27.268437], [-99.47088, 27.265444], [-99.494678, 27.277595], [-99.529654, 27.306051], [-99.536443, 27.312538], [-99.537771, 27.316073], [-99.50696, 27.35642], [-99.492831, 27.390491], [-99.487704, 27.409924], [-99.480219, 27.485796], [-99.519381, 27.573569], [-99.541644, 27.605772], [-99.600619, 27.641314], [-99.623478, 27.644136], [-99.626294, 27.64245], [-99.627123, 27.638412], [-99.666175, 27.638324], [-99.843463, 27.77456], [-99.876174, 27.806276], [-99.901486, 27.864162], [-99.904385, 27.875284], [-99.895828, 27.904178], [-99.922046, 27.922119], [-99.991447, 27.99456], [-100.057049, 28.095656], [-100.080868, 28.137192], [-100.083393, 28.144035], [-100.088143, 28.147503], [-100.14414, 28.168238], [-100.171323, 28.17623], [-100.202448, 28.190554], [-100.209464, 28.196866], [-100.113719, 28.197819], [-99.394177, 28.204627], [-99.388946, 28.030419], [-98.803325, 28.05748], [-98.798323, 27.354029], [-98.798087, 27.268012], [-98.954669, 27.269397]]]}, "bbox": [-100.209464, 27.264673, -98.798087, 28.204627]}, {"id": "48485", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.423577, 33.836047], [-98.742358, 33.834552], [-98.953088, 33.834], [-98.952527, 34.195621], [-98.920042, 34.182908], [-98.858419, 34.152732], [-98.76557, 34.136376], [-98.700182, 34.135995], [-98.665824, 34.151617], [-98.652347, 34.161029], [-98.637575, 34.162284], [-98.610112, 34.161039], [-98.599789, 34.160571], [-98.577356, 34.1491], [-98.553717, 34.13366], [-98.504182, 34.072371], [-98.475066, 34.064269], [-98.433769, 34.096116], [-98.423577, 33.836047]]]}, "bbox": [-98.953088, 33.834, -98.423577, 34.195621]}, {"id": "48491", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-97.369539, 30.419563], [-97.576167, 30.501799], [-97.775211, 30.429993], [-97.956734, 30.628249], [-98.049886, 30.624155], [-97.96286, 30.785641], [-97.828512, 30.906188], [-97.625288, 30.87043], [-97.315507, 30.752371], [-97.271418, 30.735692], [-97.155219, 30.457344], [-97.334463, 30.402843], [-97.369539, 30.419563]]]}, "bbox": [-98.049886, 30.402843, -97.155219, 30.906188]}, {"id": "48493", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-98.28702, 29.257626], [-98.137187, 29.440428], [-98.134171, 29.441751], [-98.084684, 29.379594], [-97.840383, 29.376791], [-97.858782, 29.35289], [-97.728443, 29.221748], [-98.190991, 28.882333], [-98.407336, 29.114435], [-98.28702, 29.257626]]]}, "bbox": [-98.407336, 28.882333, -97.728443, 29.441751]}, {"id": "49011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.738575, 40.861055], [-111.915865, 40.822045], [-112.006597, 40.921845], [-112.26351, 40.77345], [-112.493393, 41.076735], [-112.189578, 41.152741], [-111.856305, 41.139118], [-111.815186, 40.957533], [-111.738575, 40.861055]]]}, "bbox": [-112.493393, 40.77345, -111.738575, 41.152741]}, {"id": "49013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-110.857902, 39.812428], [-110.857321, 39.898941], [-110.891872, 39.899146], [-110.901931, 40.67817], [-110.89309, 40.72733], [-110.375002, 40.788211], [-110.294317, 40.834228], [-110.000709, 40.81375], [-109.993667, 40.8152], [-109.987631, 40.807616], [-109.977505, 40.809828], [-109.973684, 40.039869], [-109.967601, 39.805979], [-110.857902, 39.812428]]]}, "bbox": [-110.901931, 39.805979, -109.967601, 40.834228]}, {"id": "49035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.913848, 40.452454], [-111.91912, 40.443191], [-111.931555, 40.433548], [-111.978236, 40.41727], [-112.173208, 40.466923], [-112.175465, 40.604476], [-112.222654, 40.72214], [-112.22736, 40.72518], [-112.26351, 40.77345], [-112.006597, 40.921845], [-111.915865, 40.822045], [-111.738575, 40.861055], [-111.641022, 40.799084], [-111.553105, 40.609362], [-111.564507, 40.584767], [-111.59393, 40.577071], [-111.913848, 40.452454]]]}, "bbox": [-112.26351, 40.41727, -111.553105, 40.921845]}, {"id": "49045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-112.222654, 40.72214], [-112.175465, 40.604476], [-112.173208, 40.466923], [-112.212216, 40.459233], [-112.179558, 40.232069], [-112.145163, 40.171239], [-112.179729, 40.011569], [-112.269882, 39.938947], [-112.331783, 39.952747], [-112.341883, 39.904247], [-114.047134, 39.906037], [-114.046555, 40.116931], [-114.045518, 40.494474], [-114.045577, 40.495801], [-114.045281, 40.506586], [-114.043505, 40.726292], [-114.043831, 40.758666], [-114.043803, 40.759205], [-114.042145, 40.999926], [-112.799307, 41.000236], [-112.493393, 41.076735], [-112.26351, 40.77345], [-112.22736, 40.72518], [-112.222654, 40.72214]]]}, "bbox": [-114.047134, 39.904247, -112.145163, 41.076735]}, {"id": "49049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.913848, 40.452454], [-111.59393, 40.577071], [-111.611734, 40.431466], [-111.555235, 40.362696], [-111.480337, 40.362169], [-111.426482, 40.286906], [-111.31483, 40.287566], [-111.278846, 40.258671], [-111.225507, 40.167324], [-111.246207, 40.047466], [-111.205772, 40.047368], [-111.083061, 39.943198], [-111.082455, 39.900155], [-110.891872, 39.899146], [-110.857321, 39.898941], [-110.857902, 39.812428], [-111.247502, 39.813269], [-111.640578, 39.813017], [-111.766193, 39.810601], [-111.734178, 39.853895], [-111.794837, 39.931159], [-111.909411, 39.894519], [-111.972, 39.806657], [-112.07135, 39.777942], [-112.053359, 39.893194], [-112.179729, 40.011569], [-112.145163, 40.171239], [-112.179558, 40.232069], [-112.212216, 40.459233], [-112.173208, 40.466923], [-111.978236, 40.41727], [-111.931555, 40.433548], [-111.91912, 40.443191], [-111.913848, 40.452454]]]}, "bbox": [-112.212216, 39.777942, -110.857321, 40.577071]}, {"id": "49053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-112.899366, 37.000319], [-112.966471, 37.000219], [-113.965907, 36.999976], [-113.965907, 37.000025], [-114.0506, 37.000396], [-114.051749, 37.088434], [-114.051822, 37.090976], [-114.051974, 37.283848], [-114.051974, 37.284511], [-114.0518, 37.293044], [-114.0518, 37.293548], [-114.051927, 37.370459], [-114.051927, 37.370734], [-114.052701, 37.492014], [-114.052685, 37.502513], [-114.052718, 37.517264], [-114.052689, 37.517859], [-114.052472, 37.604776], [-113.474991, 37.618276], [-113.474389, 37.528978], [-113.253184, 37.528879], [-113.253677, 37.482241], [-113.146281, 37.474079], [-113.03688, 37.474578], [-113.03698, 37.498577], [-112.900994, 37.499738], [-112.899366, 37.000319]]]}, "bbox": [-114.052718, 36.999976, -112.899366, 37.618276]}, {"id": "49057", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.885476, 41.426435], [-111.72651, 41.375814], [-111.666576, 41.42883], [-111.510839, 41.4231], [-111.42056, 41.36137], [-111.49663, 41.226877], [-111.595856, 41.239139], [-111.67819, 41.181028], [-111.858392, 41.197383], [-111.856305, 41.139118], [-112.189578, 41.152741], [-112.493393, 41.076735], [-112.237877, 41.336739], [-112.028376, 41.336439], [-111.9591, 41.433706], [-111.885476, 41.426435]]]}, "bbox": [-112.493393, 41.076735, -111.42056, 41.433706]}, {"id": "50007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.924112, 44.633051], [-72.809349, 44.547921], [-72.804995, 44.451676], [-72.826112, 44.35919], [-72.855592, 44.365551], [-72.911398, 44.281769], [-72.89598, 44.276284], [-72.952167, 44.161271], [-72.973318, 44.29342], [-73.323268, 44.264796], [-73.315016, 44.388513], [-73.296031, 44.428339], [-73.293613, 44.438903], [-73.299885, 44.476652], [-73.306707, 44.500334], [-73.33863, 44.546844], [-73.338634, 44.546847], [-73.356788, 44.557918], [-73.361952, 44.563064], [-73.233209, 44.649791], [-73.228854, 44.722866], [-73.038028, 44.651157], [-72.924112, 44.633051]]]}, "bbox": [-73.361952, 44.161271, -72.804995, 44.722866]}, {"id": "50011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.578161, 44.781578], [-72.74736, 44.78617], [-72.786134, 44.727723], [-72.793958, 44.699397], [-72.795505, 44.6922], [-72.851068, 44.71107], [-72.924112, 44.633051], [-73.038028, 44.651157], [-73.228854, 44.722866], [-73.256321, 44.759444], [-73.19402, 44.886844], [-73.19131, 44.904762], [-73.226274, 44.919505], [-73.230777, 44.927437], [-73.191948, 45.013576], [-73.085972, 45.015494], [-73.015539, 45.015072], [-73.014766, 45.01498], [-72.845633, 45.016659], [-72.67477, 45.015459], [-72.554253, 45.011794], [-72.532638, 44.833346], [-72.578161, 44.781578]]]}, "bbox": [-73.256321, 44.633051, -72.532638, 45.016659]}, {"id": "50021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.771543, 43.477862], [-72.727184, 43.468717], [-72.759799, 43.354144], [-72.853439, 43.371076], [-72.867902, 43.300742], [-73.254848, 43.314684], [-73.253084, 43.354714], [-73.252832, 43.363493], [-73.252674, 43.370285], [-73.252582, 43.370997], [-73.247061, 43.514919], [-73.242042, 43.534925], [-73.245594, 43.540253], [-73.302552, 43.625708], [-73.306234, 43.628018], [-73.366537, 43.623462], [-73.375594, 43.61335], [-73.400295, 43.568889], [-73.428636, 43.583994], [-73.431229, 43.588285], [-73.421606, 43.646577], [-73.408697, 43.67402], [-73.403517, 43.685032], [-73.370724, 43.735571], [-73.360711, 43.753268], [-73.231377, 43.764469], [-73.155743, 43.83966], [-73.156173, 43.842314], [-73.029938, 43.846716], [-73.032082, 43.844718], [-73.026833, 43.842113], [-73.016831, 43.804953], [-72.989434, 43.814611], [-72.958853, 43.826542], [-72.874552, 43.858131], [-72.837188, 43.719878], [-72.700945, 43.682831], [-72.79107, 43.495], [-72.771543, 43.477862]]]}, "bbox": [-73.431229, 43.300742, -72.700945, 43.858131]}, {"id": "50025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.86418, 42.737117], [-72.927291, 42.738714], [-72.930271, 42.738789], [-73.018646, 42.741025], [-73.015111, 42.832074], [-72.92482, 42.856164], [-72.921376, 42.926792], [-73.008063, 42.930087], [-73.002789, 43.023007], [-72.9969, 43.119095], [-72.868737, 43.11317], [-72.819368, 43.255498], [-72.685637, 43.222495], [-72.431187, 43.231786], [-72.439407, 43.211322], [-72.4521, 43.161414], [-72.441904, 43.136615], [-72.433097, 43.120021], [-72.432661, 43.114077], [-72.443762, 43.006245], [-72.556214, 42.86695], [-72.556112, 42.866252], [-72.555768, 42.858153], [-72.555693, 42.85638], [-72.542784, 42.808482], [-72.509506, 42.781183], [-72.491122, 42.772465], [-72.478453, 42.762296], [-72.460195, 42.732066], [-72.458519, 42.726853], [-72.86418, 42.737117]]]}, "bbox": [-73.018646, 42.726853, -72.431187, 43.255498]}, {"id": "50027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-72.771543, 43.477862], [-72.79107, 43.495], [-72.700945, 43.682831], [-72.837188, 43.719878], [-72.874552, 43.858131], [-72.958853, 43.826542], [-72.980158, 43.882587], [-72.791336, 43.961855], [-72.783208, 43.928967], [-72.574443, 43.873348], [-72.499473, 43.850398], [-72.49903, 43.850224], [-72.460132, 43.838291], [-72.207259, 43.771812], [-72.205717, 43.771143], [-72.232713, 43.748286], [-72.264245, 43.734158], [-72.27118, 43.734138], [-72.302867, 43.702718], [-72.32966, 43.634648], [-72.334401, 43.61925], [-72.334745, 43.614519], [-72.32962, 43.600201], [-72.395825, 43.52056], [-72.387642, 43.502481], [-72.387852, 43.471567], [-72.396934, 43.42899], [-72.396948, 43.428925], [-72.405253, 43.389992], [-72.403949, 43.358098], [-72.400511, 43.337073], [-72.39715, 43.316515], [-72.431187, 43.231786], [-72.685637, 43.222495], [-72.819368, 43.255498], [-72.8199, 43.29921], [-72.867902, 43.300742], [-72.853439, 43.371076], [-72.759799, 43.354144], [-72.727184, 43.468717], [-72.771543, 43.477862]]]}, "bbox": [-72.980158, 43.222495, -72.205717, 43.961855]}, {"id": "51003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.208092, 38.13315], [-78.254287, 38.063831], [-78.306607, 38.006399], [-78.31025, 38.002728], [-78.491567, 37.796712], [-78.510971, 37.757594], [-78.644036, 37.733143], [-78.839211, 38.047565], [-78.77923, 38.083451], [-78.749354, 38.206621], [-78.663174, 38.277923], [-78.369797, 38.184757], [-78.3445, 38.177931], [-78.208092, 38.13315]], [[-78.520375, 38.018355], [-78.469733, 38.011439], [-78.44905, 38.058728], [-78.495034, 38.065337], [-78.520375, 38.018355]]]}, "bbox": [-78.839211, 37.733143, -78.208092, 38.277923]}, {"id": "51005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.220984, 37.627767], [-80.239288, 37.637672], [-80.254431, 37.642352], [-80.254469, 37.642333], [-80.263281, 37.645082], [-80.263291, 37.645101], [-80.26483, 37.645526], [-80.264874, 37.645511], [-80.267228, 37.646011], [-80.267455, 37.646108], [-80.270352, 37.648929], [-80.270323, 37.648982], [-80.292258, 37.683732], [-80.292337, 37.683976], [-80.296138, 37.691783], [-80.287107, 37.696403], [-80.263936, 37.719137], [-80.259342, 37.731205], [-80.260313, 37.733517], [-80.262765, 37.738336], [-80.257411, 37.756084], [-80.231551, 37.792591], [-80.227092, 37.798886], [-80.162202, 37.875122], [-80.148964, 37.886057], [-80.147316, 37.885936], [-80.14613, 37.884453], [-80.130464, 37.893194], [-80.055278, 37.951702], [-79.935356, 37.954365], [-79.881433, 37.892026], [-79.650757, 37.871566], [-79.674006, 37.763052], [-79.816702, 37.800989], [-79.91756, 37.701848], [-80.020519, 37.647459], [-80.144394, 37.596627], [-80.220984, 37.627767]], [[-79.983631, 37.802278], [-79.984451, 37.812016], [-79.987402, 37.813585], [-79.98921, 37.810961], [-79.999078, 37.80624], [-79.992055, 37.79981], [-79.992955, 37.797063], [-80.00136, 37.789826], [-79.995941, 37.782229], [-80.001196, 37.768848], [-80.008893, 37.762983], [-79.992566, 37.748244], [-79.966509, 37.757109], [-79.977265, 37.767344], [-79.980001, 37.781063], [-79.966452, 37.792484], [-79.967071, 37.803405], [-79.983631, 37.802278]]]}, "bbox": [-80.296138, 37.596627, -79.650757, 37.954365]}, {"id": "51013", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.032986, 38.8395], [-77.05455, 38.840995], [-77.063871, 38.845011], [-77.085609, 38.84419], [-77.087931, 38.82745], [-77.088047, 38.824973], [-77.110731, 38.843457], [-77.150287, 38.876192], [-77.172169, 38.893329], [-77.16811, 38.896521], [-77.157513, 38.904855], [-77.154368, 38.907044], [-77.149735, 38.910523], [-77.148492, 38.911993], [-77.119863, 38.934265], [-77.1012, 38.911111], [-77.0902, 38.904211], [-77.068199, 38.899811], [-77.040599, 38.871212], [-77.031698, 38.850512], [-77.032986, 38.8395]]]}, "bbox": [-77.172169, 38.824973, -77.031698, 38.934265]}, {"id": "51015", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.512158, 38.180419], [-79.438103, 38.216235], [-79.312276, 38.411876], [-79.297758, 38.416438], [-79.295712, 38.418129], [-79.291813, 38.419627], [-79.290529, 38.420757], [-79.280263, 38.425475], [-79.282663, 38.431021], [-79.267414, 38.438322], [-79.265327, 38.441772], [-79.263376, 38.443762], [-79.26291, 38.444586], [-79.242024, 38.464332], [-79.240059, 38.469841], [-79.234408, 38.473011], [-79.23162, 38.474041], [-79.225839, 38.479446], [-78.749354, 38.206621], [-78.77923, 38.083451], [-78.839211, 38.047565], [-78.907278, 37.945959], [-79.005129, 37.88169], [-79.062454, 37.9176], [-79.157423, 37.890995], [-79.183978, 37.914194], [-79.482405, 38.086105], [-79.436942, 38.163243], [-79.512158, 38.180419]], [[-78.949568, 38.057183], [-78.872163, 38.039587], [-78.855796, 38.074375], [-78.903534, 38.099978], [-78.949568, 38.057183]], [[-79.091666, 38.132142], [-79.049779, 38.121112], [-79.02301, 38.195777], [-79.09711, 38.184771], [-79.091666, 38.132142]]]}, "bbox": [-79.512158, 37.88169, -78.749354, 38.479446]}, {"id": "51041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.851804, 37.354867], [-77.855148, 37.418363], [-77.653987, 37.562631], [-77.649239, 37.559613], [-77.60645, 37.555443], [-77.59611, 37.55572], [-77.514425, 37.478934], [-77.500745, 37.463831], [-77.486388, 37.459024], [-77.459219, 37.46427], [-77.420849, 37.447079], [-77.361937, 37.376057], [-77.249665, 37.382], [-77.244167, 37.369274], [-77.264595, 37.344052], [-77.270675, 37.320756], [-77.282659, 37.318084], [-77.284019, 37.313012], [-77.30988, 37.311556], [-77.322813, 37.308792], [-77.334549, 37.312468], [-77.352518, 37.310165], [-77.35271, 37.297957], [-77.356582, 37.283125], [-77.360455, 37.277333], [-77.368823, 37.272613], [-77.373735, 37.266949], [-77.377381, 37.255541], [-77.376728, 37.244993], [-77.383856, 37.238906], [-77.390393, 37.23998], [-77.403671, 37.237346], [-77.4021, 37.239521], [-77.394214, 37.239524], [-77.392064, 37.240853], [-77.385702, 37.241158], [-77.382521, 37.242837], [-77.379193, 37.26758], [-77.362322, 37.282162], [-77.431705, 37.276348], [-77.414406, 37.260949], [-77.41651, 37.233157], [-77.42889, 37.229678], [-77.4339, 37.224648], [-77.447521, 37.22271], [-77.65061, 37.265112], [-77.75862, 37.268717], [-77.851804, 37.354867]]]}, "bbox": [-77.855148, 37.22271, -77.244167, 37.562631]}, {"id": "51059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.088047, 38.824973], [-77.039239, 38.7852], [-77.041398, 38.763914], [-77.05991, 38.734419], [-77.074599, 38.711015], [-77.086113, 38.705792], [-77.1059, 38.696815], [-77.121101, 38.686616], [-77.132501, 38.673816], [-77.135901, 38.649817], [-77.1302, 38.635017], [-77.157501, 38.636417], [-77.174902, 38.624217], [-77.202002, 38.617217], [-77.204302, 38.617817], [-77.205103, 38.623917], [-77.216303, 38.637817], [-77.22235, 38.638091], [-77.380451, 38.722516], [-77.387917, 38.748217], [-77.449084, 38.803133], [-77.53576, 38.847474], [-77.328318, 39.057678], [-77.328002, 39.058554], [-77.291605, 39.045408], [-77.261403, 39.031009], [-77.251803, 39.011409], [-77.255703, 39.002409], [-77.249803, 38.985909], [-77.235403, 38.97661], [-77.221502, 38.97131], [-77.197502, 38.96681], [-77.166901, 38.96811], [-77.148179, 38.965002], [-77.137701, 38.95531], [-77.1199, 38.934311], [-77.119863, 38.934265], [-77.148492, 38.911993], [-77.149735, 38.910523], [-77.154368, 38.907044], [-77.157513, 38.904855], [-77.16811, 38.896521], [-77.172169, 38.893329], [-77.188854, 38.896272], [-77.19434, 38.886065], [-77.189766, 38.878117], [-77.173243, 38.878604], [-77.154974, 38.872213], [-77.150287, 38.876192], [-77.110731, 38.843457], [-77.088047, 38.824973]], [[-77.334805, 38.851404], [-77.318689, 38.834651], [-77.2705, 38.840992], [-77.270597, 38.866075], [-77.328788, 38.864848], [-77.334805, 38.851404]]]}, "bbox": [-77.53576, 38.617217, -77.039239, 39.058554]}, {"id": "51061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.663346, 38.752917], [-77.580256, 38.627685], [-77.535808, 38.561621], [-77.530914, 38.555929], [-77.634157, 38.464508], [-77.634835, 38.409713], [-77.735536, 38.413116], [-77.877169, 38.584891], [-77.935454, 38.695853], [-78.028075, 38.759293], [-78.122166, 38.856607], [-78.12361, 38.864902], [-78.130574, 38.864865], [-78.004167, 38.979479], [-77.98978, 38.993834], [-77.990379, 38.996331], [-77.965138, 39.008927], [-77.961956, 39.013841], [-77.960269, 39.013384], [-77.655081, 38.942635], [-77.665797, 38.915867], [-77.680547, 38.8932], [-77.689176, 38.889231], [-77.715415, 38.832214], [-77.663346, 38.752917]]]}, "bbox": [-78.130574, 38.409713, -77.530914, 39.013841]}, {"id": "51069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.544111, 39.056676], [-78.508132, 39.08863], [-78.459869, 39.113351], [-78.439429, 39.132146], [-78.418377, 39.156656], [-78.41074, 39.171983], [-78.426722, 39.188903], [-78.438651, 39.198049], [-78.437053, 39.199766], [-78.43213, 39.204717], [-78.431167, 39.205744], [-78.429803, 39.207014], [-78.427911, 39.208611], [-78.423968, 39.212049], [-78.399669, 39.243874], [-78.399785, 39.244129], [-78.360035, 39.317771], [-78.35894, 39.319484], [-78.34048, 39.353492], [-78.362267, 39.357784], [-78.347087, 39.466012], [-78.228766, 39.391233], [-78.033185, 39.264626], [-78.033183, 39.264624], [-78.151981, 39.036277], [-78.314196, 39.007977], [-78.335803, 39.101509], [-78.454023, 39.027599], [-78.544111, 39.056676]], [[-78.196945, 39.191161], [-78.18289, 39.13097], [-78.136953, 39.18453], [-78.154919, 39.200895], [-78.196945, 39.191161]]]}, "bbox": [-78.544111, 39.007977, -78.033183, 39.466012]}, {"id": "51083", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.092264, 37.061498], [-78.904587, 37.022288], [-78.671463, 36.857951], [-78.648541, 36.697909], [-78.711702, 36.641078], [-78.734122, 36.541902], [-78.758392, 36.541852], [-78.76543, 36.541727], [-78.7963, 36.541713], [-78.914543, 36.541972], [-78.91542, 36.541974], [-78.942009, 36.542113], [-78.942254, 36.542079], [-78.970577, 36.542154], [-78.971814, 36.542123], [-79.124736, 36.541568], [-79.126078, 36.541533], [-79.137936, 36.541739], [-79.208686, 36.541571], [-79.20948, 36.541594], [-79.218638, 36.541579], [-79.092264, 37.061498]]]}, "bbox": [-79.218638, 36.541533, -78.648541, 37.061498]}, {"id": "51085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.228504, 37.536398], [-77.333838, 37.576865], [-77.445827, 37.683975], [-77.630145, 37.706985], [-77.79692, 37.729069], [-77.796803, 37.730604], [-77.687294, 38.008011], [-77.684065, 38.008283], [-77.680592, 38.007587], [-77.676618, 38.006409], [-77.670898, 38.003769], [-77.667921, 38.00012], [-77.667985, 37.998379], [-77.66716, 37.997079], [-77.664779, 37.996902], [-77.662338, 37.997764], [-77.660602, 37.997145], [-77.660469, 37.993726], [-77.659698, 37.992082], [-77.657916, 37.991864], [-77.65367, 37.993595], [-77.649201, 37.994168], [-77.647163, 37.993948], [-77.642318, 37.992284], [-77.6422, 37.990928], [-77.484098, 37.883505], [-77.445155, 37.894819], [-77.403642, 37.779569], [-77.345229, 37.789388], [-77.29247, 37.714682], [-77.123675, 37.626881], [-77.228504, 37.536398]]]}, "bbox": [-77.79692, 37.536398, -77.123675, 38.008283]}, {"id": "51087", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.333838, 37.576865], [-77.228504, 37.536398], [-77.226512, 37.53387], [-77.221244, 37.533229], [-77.220254, 37.527221], [-77.214847, 37.525372], [-77.206239, 37.515977], [-77.207007, 37.513446], [-77.202667, 37.512866], [-77.198184, 37.508965], [-77.192962, 37.506598], [-77.191937, 37.501237], [-77.188164, 37.500224], [-77.184836, 37.49572], [-77.177324, 37.4906], [-77.249665, 37.382], [-77.361937, 37.376057], [-77.420849, 37.447079], [-77.413196, 37.579928], [-77.483092, 37.573832], [-77.59611, 37.55572], [-77.60645, 37.555443], [-77.649239, 37.559613], [-77.653987, 37.562631], [-77.630145, 37.706985], [-77.445827, 37.683975], [-77.333838, 37.576865]]]}, "bbox": [-77.653987, 37.376057, -77.177324, 37.706985]}, {"id": "51095", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.611018, 37.167097], [-76.612517, 37.170486], [-76.613599, 37.172931], [-76.614221, 37.174335], [-76.616268, 37.178962], [-76.616804, 37.18126], [-76.617537, 37.184409], [-76.618008, 37.186429], [-76.61934, 37.192146], [-76.619962, 37.193184], [-76.621113, 37.195103], [-76.623292, 37.198738], [-76.629868, 37.206738], [-76.639608, 37.214783], [-76.641085, 37.216002], [-76.649869, 37.220914], [-76.689166, 37.222866], [-76.693373, 37.221228], [-76.698943, 37.219059], [-76.730951, 37.213813], [-76.73432, 37.204211], [-76.74, 37.195379], [-76.74304, 37.192611], [-76.75047, 37.190098], [-76.757765, 37.191658], [-76.773752, 37.206061], [-76.780532, 37.209336], [-76.791555, 37.207564], [-76.818511, 37.224618], [-76.883156, 37.223057], [-76.873507, 37.363415], [-76.904471, 37.377665], [-76.892677, 37.433067], [-76.741984, 37.467076], [-76.732961, 37.450235], [-76.712305, 37.431309], [-76.672296, 37.395808], [-76.658651, 37.380139], [-76.741667, 37.37044], [-76.727588, 37.304921], [-76.739665, 37.306255], [-76.725272, 37.279686], [-76.742487, 37.275092], [-76.726003, 37.249901], [-76.664621, 37.25049], [-76.679468, 37.265652], [-76.591432, 37.214721], [-76.577675, 37.190445], [-76.611018, 37.167097]]]}, "bbox": [-76.904471, 37.167097, -76.577675, 37.467076]}, {"id": "51107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.655081, 38.942635], [-77.960269, 39.013384], [-77.961956, 39.013841], [-77.828157, 39.132329], [-77.822182, 39.139985], [-77.771415, 39.236776], [-77.767277, 39.24938], [-77.768992, 39.256417], [-77.768, 39.257657], [-77.761768, 39.263031], [-77.761217, 39.263721], [-77.758733, 39.268114], [-77.758412, 39.269197], [-77.755698, 39.274575], [-77.755193, 39.275191], [-77.753105, 39.27734], [-77.75306, 39.277971], [-77.753357, 39.280331], [-77.750267, 39.289284], [-77.719029, 39.321125], [-77.677505, 39.318699], [-77.667749, 39.318129], [-77.592739, 39.30129], [-77.560854, 39.286152], [-77.545846, 39.271535], [-77.543228, 39.266937], [-77.534461, 39.262361], [-77.511222, 39.2535], [-77.484605, 39.245941], [-77.46021, 39.228359], [-77.45768, 39.22502], [-77.458779, 39.22028], [-77.458884, 39.219826], [-77.478596, 39.189168], [-77.485971, 39.185665], [-77.505162, 39.18205], [-77.510631, 39.178484], [-77.516426, 39.170891], [-77.527282, 39.146236], [-77.524559, 39.127821], [-77.519929, 39.120925], [-77.458202, 39.073723], [-77.42318, 39.066878], [-77.375079, 39.061297], [-77.340287, 39.062991], [-77.328002, 39.058554], [-77.328318, 39.057678], [-77.53576, 38.847474], [-77.655081, 38.942635]]]}, "bbox": [-77.961956, 38.847474, -77.328002, 39.321125]}, {"id": "51117", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.033437, 36.708451], [-78.046202, 36.544168], [-78.132911, 36.543811], [-78.133323, 36.543847], [-78.245462, 36.544411], [-78.246681, 36.544341], [-78.323912, 36.543809], [-78.436333, 36.542666], [-78.441199, 36.542687], [-78.45697, 36.542474], [-78.470792, 36.542316], [-78.471022, 36.542307], [-78.529722, 36.540981], [-78.533013, 36.541004], [-78.663317, 36.542011], [-78.670051, 36.542035], [-78.734122, 36.541902], [-78.711702, 36.641078], [-78.648541, 36.697909], [-78.493028, 36.89122], [-78.241509, 36.807958], [-78.027411, 36.777858], [-78.027419, 36.775951], [-78.033437, 36.708451]]]}, "bbox": [-78.734122, 36.540981, -78.027411, 36.89122]}, {"id": "51121", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.261984, 37.340694], [-80.25852, 37.308344], [-80.205224, 37.248042], [-80.178032, 37.113435], [-80.347447, 37.021842], [-80.543933, 36.984639], [-80.580067, 37.089603], [-80.55626, 37.099551], [-80.555171, 37.11742], [-80.532631, 37.118064], [-80.507317, 37.135752], [-80.524885, 37.14836], [-80.527625, 37.134427], [-80.529678, 37.134066], [-80.606874, 37.244911], [-80.433361, 37.314901], [-80.327898, 37.366792], [-80.261984, 37.340694]]]}, "bbox": [-80.606874, 36.984639, -80.178032, 37.366792]}, {"id": "51153", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.530914, 38.555929], [-77.535808, 38.561621], [-77.580256, 38.627685], [-77.663346, 38.752917], [-77.715415, 38.832214], [-77.689176, 38.889231], [-77.680547, 38.8932], [-77.665797, 38.915867], [-77.655081, 38.942635], [-77.53576, 38.847474], [-77.449084, 38.803133], [-77.387917, 38.748217], [-77.380451, 38.722516], [-77.22235, 38.638091], [-77.240604, 38.638917], [-77.246704, 38.635217], [-77.248904, 38.628617], [-77.245104, 38.620717], [-77.246441, 38.599532], [-77.247003, 38.590618], [-77.26443, 38.582845], [-77.265304, 38.580319], [-77.26083, 38.56533], [-77.276603, 38.54712], [-77.276303, 38.53962], [-77.283503, 38.525221], [-77.291103, 38.515721], [-77.29582, 38.511457], [-77.298844, 38.508724], [-77.300776, 38.506978], [-77.302457, 38.504683], [-77.491569, 38.590899], [-77.530914, 38.555929]], [[-77.471425, 38.728152], [-77.451642, 38.738337], [-77.44751, 38.761115], [-77.45931, 38.772614], [-77.427503, 38.7534], [-77.420682, 38.762242], [-77.422236, 38.768917], [-77.44061, 38.782615], [-77.445282, 38.770722], [-77.459499, 38.778395], [-77.458507, 38.787394], [-77.473195, 38.788248], [-77.475711, 38.781214], [-77.495927, 38.770607], [-77.526457, 38.732466], [-77.524721, 38.723966], [-77.471425, 38.728152]]]}, "bbox": [-77.715415, 38.504683, -77.22235, 38.942635]}, {"id": "51161", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.945616, 37.362997], [-79.865099, 37.328417], [-79.847599, 37.309177], [-79.847082, 37.225468], [-79.962301, 37.137099], [-80.030562, 37.17481], [-80.128119, 37.122912], [-80.172264, 37.108156], [-80.178032, 37.113435], [-80.205224, 37.248042], [-80.25852, 37.308344], [-80.261984, 37.340694], [-80.073985, 37.422305], [-80.062622, 37.408325], [-79.945616, 37.362997]], [[-79.974313, 37.335227], [-79.979809, 37.331751], [-79.99312, 37.324829], [-80.001111, 37.319196], [-80.004807, 37.315614], [-80.012638, 37.316491], [-80.017082, 37.314342], [-80.022428, 37.308156], [-80.12049, 37.287053], [-80.033476, 37.262811], [-79.950384, 37.211274], [-79.904962, 37.244325], [-79.917601, 37.280899], [-79.88258, 37.29461], [-79.878186, 37.291745], [-79.904965, 37.320537], [-79.974313, 37.335227]]]}, "bbox": [-80.261984, 37.108156, -79.847082, 37.422305]}, {"id": "51191", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.332089, 36.709355], [-82.107614, 36.796385], [-82.077936, 36.855005], [-81.949151, 36.864409], [-81.836842, 36.929013], [-81.699441, 36.789614], [-81.605835, 36.638717], [-81.610663, 36.616913], [-81.6469, 36.611918], [-81.826742, 36.614215], [-81.922644, 36.616213], [-81.934144, 36.594213], [-82.14607, 36.594712], [-82.114497, 36.638542], [-82.243274, 36.595699], [-82.293814, 36.595565], [-82.308, 36.619525], [-82.332089, 36.709355]]]}, "bbox": [-82.332089, 36.594213, -81.605835, 36.929013]}, {"id": "51510", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.039239, 38.7852], [-77.088047, 38.824973], [-77.087931, 38.82745], [-77.085609, 38.84419], [-77.063871, 38.845011], [-77.05455, 38.840995], [-77.032986, 38.8395], [-77.038598, 38.791513], [-77.039239, 38.7852]]]}, "bbox": [-77.088047, 38.7852, -77.032986, 38.845011]}, {"id": "51540", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.520375, 38.018355], [-78.495034, 38.065337], [-78.44905, 38.058728], [-78.469733, 38.011439], [-78.520375, 38.018355]]]}, "bbox": [-78.520375, 38.011439, -78.44905, 38.065337]}, {"id": "51550", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.313196, 36.550551], [-76.313215, 36.550551], [-76.491497, 36.550365], [-76.457469, 36.814841], [-76.420368, 36.866348], [-76.375679, 36.786062], [-76.289962, 36.822048], [-76.27471, 36.828039], [-76.257475, 36.820757], [-76.243765, 36.836862], [-76.22606, 36.839947], [-76.203667, 36.769655], [-76.068154, 36.69235], [-76.121955, 36.66575], [-76.12236, 36.550621], [-76.313196, 36.550551]]]}, "bbox": [-76.491497, 36.550365, -76.068154, 36.866348]}, {"id": "51570", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.41651, 37.233157], [-77.414406, 37.260949], [-77.431705, 37.276348], [-77.362322, 37.282162], [-77.379193, 37.26758], [-77.382521, 37.242837], [-77.385702, 37.241158], [-77.392064, 37.240853], [-77.394214, 37.239524], [-77.4021, 37.239521], [-77.403671, 37.237346], [-77.405034, 37.2361], [-77.406415, 37.235645], [-77.409877, 37.233723], [-77.413119, 37.234257], [-77.41542, 37.233796], [-77.41651, 37.233157]]]}, "bbox": [-77.431705, 37.233157, -77.362322, 37.282162]}, {"id": "51590", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.470047, 36.541025], [-79.456646, 36.576738], [-79.501101, 36.61825], [-79.422097, 36.600681], [-79.398845, 36.644537], [-79.304486, 36.582202], [-79.342696, 36.541382], [-79.445687, 36.541218], [-79.445961, 36.541195], [-79.470047, 36.541025]]]}, "bbox": [-79.501101, 36.541025, -79.304486, 36.644537]}, {"id": "51630", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.530289, 38.309172], [-77.526243, 38.309531], [-77.527185, 38.320655], [-77.506782, 38.325925], [-77.498754, 38.32543], [-77.478996, 38.316693], [-77.475137, 38.32096], [-77.467053, 38.31866], [-77.455692, 38.301341], [-77.447126, 38.284614], [-77.457837, 38.271108], [-77.467151, 38.27978], [-77.473388, 38.270245], [-77.494708, 38.273834], [-77.497909, 38.28291], [-77.511826, 38.279953], [-77.507563, 38.292143], [-77.516805, 38.295128], [-77.514883, 38.305499], [-77.516421, 38.305614], [-77.516344, 38.306402], [-77.520165, 38.306699], [-77.522272, 38.306589], [-77.526039, 38.307112], [-77.529618, 38.30838], [-77.532313, 38.308498], [-77.530289, 38.309172]]]}, "bbox": [-77.532313, 38.270245, -77.447126, 38.325925]}, {"id": "51640", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.932271, 36.671593], [-80.920497, 36.678139], [-80.917573, 36.694133], [-80.877274, 36.692215], [-80.914173, 36.650246], [-80.916043, 36.629343], [-80.931655, 36.628494], [-80.921711, 36.643533], [-80.947754, 36.648361], [-80.944109, 36.676303], [-80.932271, 36.671593]]]}, "bbox": [-80.947754, 36.628494, -80.877274, 36.694133]}, {"id": "51650", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.39447, 37.106248], [-76.393795, 37.108397], [-76.384553, 37.105167], [-76.384265, 37.107383], [-76.387733, 37.109181], [-76.381383, 37.111939], [-76.287236, 37.117453], [-76.274463, 37.094544], [-76.271262, 37.084544], [-76.292863, 37.035145], [-76.300352, 37.00885], [-76.304272, 37.001378], [-76.312048, 37.000371], [-76.315008, 37.001683], [-76.314624, 37.00933], [-76.318065, 37.013846], [-76.329531, 37.014556], [-76.34011, 37.015212], [-76.340666, 37.015246], [-76.348066, 37.006747], [-76.356366, 37.002947], [-76.373567, 36.998347], [-76.383367, 36.993347], [-76.387711, 36.989671], [-76.396368, 36.982347], [-76.408568, 36.969147], [-76.411768, 36.962847], [-76.418969, 36.964047], [-76.428869, 36.969947], [-76.452118, 36.998163], [-76.452461, 37.004603], [-76.449891, 37.004868], [-76.448231, 37.007705], [-76.464471, 37.027547], [-76.457871, 37.019747], [-76.452682, 37.024375], [-76.458849, 37.034299], [-76.449733, 37.043236], [-76.445859, 37.069328], [-76.45117, 37.076346], [-76.435519, 37.094882], [-76.409614, 37.091905], [-76.39447, 37.106248]]]}, "bbox": [-76.464471, 36.962847, -76.271262, 37.117453]}, {"id": "51660", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.870651, 38.482606], [-78.824253, 38.435631], [-78.914591, 38.389755], [-78.872978, 38.48851], [-78.870651, 38.482606]]]}, "bbox": [-78.914591, 38.389755, -78.824253, 38.48851]}, {"id": "51680", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-79.183302, 37.465908], [-79.085244, 37.394743], [-79.214982, 37.333], [-79.257188, 37.355608], [-79.268727, 37.431028], [-79.183302, 37.465908]]]}, "bbox": [-79.268727, 37.333, -79.085244, 37.465908]}, {"id": "51683", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.45931, 38.772614], [-77.44751, 38.761115], [-77.451642, 38.738337], [-77.471425, 38.728152], [-77.524721, 38.723966], [-77.526457, 38.732466], [-77.495927, 38.770607], [-77.475711, 38.781214], [-77.474711, 38.781414], [-77.462209, 38.774514], [-77.45931, 38.772614]]]}, "bbox": [-77.526457, 38.723966, -77.44751, 38.781414]}, {"id": "51700", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.581575, 37.212845], [-76.565092, 37.220645], [-76.525624, 37.176628], [-76.435519, 37.094882], [-76.45117, 37.076346], [-76.445859, 37.069328], [-76.449733, 37.043236], [-76.458849, 37.034299], [-76.452682, 37.024375], [-76.457871, 37.019747], [-76.464471, 37.027547], [-76.46949, 37.030414], [-76.507614, 37.052188], [-76.509339, 37.053173], [-76.512289, 37.054858], [-76.518242, 37.055351], [-76.526273, 37.062947], [-76.527973, 37.068247], [-76.526573, 37.070047], [-76.526203, 37.077773], [-76.528997, 37.079388], [-76.536875, 37.083942], [-76.555066, 37.075859], [-76.564219, 37.077507], [-76.567931, 37.080467], [-76.579499, 37.096627], [-76.618252, 37.119347], [-76.62478, 37.127091], [-76.622252, 37.142146], [-76.617084, 37.144498], [-76.604476, 37.160034], [-76.606684, 37.166674], [-76.610972, 37.166994], [-76.611018, 37.167097], [-76.577675, 37.190445], [-76.591432, 37.214721], [-76.591483, 37.215083], [-76.587528, 37.213086], [-76.582487, 37.212614], [-76.581575, 37.212845]]]}, "bbox": [-76.62478, 37.019747, -76.435519, 37.220645]}, {"id": "51710", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.177019, 36.92929], [-76.210412, 36.832907], [-76.213959, 36.832347], [-76.22606, 36.839947], [-76.243765, 36.836862], [-76.257475, 36.820757], [-76.27471, 36.828039], [-76.289962, 36.822048], [-76.294262, 36.841647], [-76.313533, 36.858533], [-76.336784, 36.875027], [-76.32848, 36.893219], [-76.340769, 36.901603], [-76.344663, 36.919313], [-76.333158, 36.917293], [-76.328864, 36.918447], [-76.330765, 36.938647], [-76.327365, 36.959447], [-76.322764, 36.959147], [-76.315867, 36.955351], [-76.299364, 36.965547], [-76.297663, 36.968147], [-76.285063, 36.968747], [-76.267962, 36.964547], [-76.234961, 36.945147], [-76.22166, 36.939547], [-76.189959, 36.931447], [-76.177019, 36.92929]]]}, "bbox": [-76.344663, 36.820757, -76.177019, 36.968747]}, {"id": "51720", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.660291, 36.918804], [-82.616375, 36.956694], [-82.58889, 36.951182], [-82.615137, 36.905251], [-82.660291, 36.918804]]]}, "bbox": [-82.660291, 36.905251, -82.58889, 36.956694]}, {"id": "51730", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.399203, 37.17085], [-77.447521, 37.22271], [-77.4339, 37.224648], [-77.42889, 37.229678], [-77.41651, 37.233157], [-77.41542, 37.233796], [-77.413119, 37.234257], [-77.409877, 37.233723], [-77.406415, 37.235645], [-77.405034, 37.2361], [-77.403671, 37.237346], [-77.390393, 37.23998], [-77.383856, 37.238906], [-77.376728, 37.244993], [-77.399203, 37.17085]]]}, "bbox": [-77.447521, 37.17085, -77.376728, 37.244993]}, {"id": "51740", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.344663, 36.919313], [-76.340769, 36.901603], [-76.32848, 36.893219], [-76.336784, 36.875027], [-76.313533, 36.858533], [-76.294262, 36.841647], [-76.289962, 36.822048], [-76.375679, 36.786062], [-76.420368, 36.866348], [-76.406667, 36.878448], [-76.406908, 36.897507], [-76.387567, 36.899547], [-76.385867, 36.923247], [-76.353765, 36.922747], [-76.345569, 36.924531], [-76.344663, 36.919313]]]}, "bbox": [-76.420368, 36.786062, -76.289962, 36.924531]}, {"id": "51760", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-77.420849, 37.447079], [-77.459219, 37.46427], [-77.486388, 37.459024], [-77.500745, 37.463831], [-77.514425, 37.478934], [-77.59611, 37.55572], [-77.483092, 37.573832], [-77.413196, 37.579928], [-77.420849, 37.447079]]]}, "bbox": [-77.59611, 37.447079, -77.413196, 37.579928]}, {"id": "51770", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.022428, 37.308156], [-80.017082, 37.314342], [-80.012638, 37.316491], [-80.004807, 37.315614], [-80.001111, 37.319196], [-79.99312, 37.324829], [-79.979809, 37.331751], [-79.974313, 37.335227], [-79.904965, 37.320537], [-79.878186, 37.291745], [-79.88258, 37.29461], [-79.917601, 37.280899], [-79.904962, 37.244325], [-79.950384, 37.211274], [-80.033476, 37.262811], [-80.01876, 37.264336], [-80.022428, 37.308156]]]}, "bbox": [-80.033476, 37.211274, -79.878186, 37.335227]}, {"id": "51775", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.022428, 37.308156], [-80.01876, 37.264336], [-80.033476, 37.262811], [-80.12049, 37.287053], [-80.022428, 37.308156]]]}, "bbox": [-80.12049, 37.262811, -80.01876, 37.308156]}, {"id": "51800", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.897592, 36.64405], [-76.53352, 36.915563], [-76.484107, 36.928916], [-76.482407, 36.917364], [-76.482135, 36.901108], [-76.483369, 36.896239], [-76.469914, 36.882898], [-76.454692, 36.884077], [-76.45329, 36.887031], [-76.453941, 36.89274], [-76.447413, 36.90322], [-76.441605, 36.906116], [-76.43122, 36.904532], [-76.407507, 36.897444], [-76.406908, 36.897507], [-76.406667, 36.878448], [-76.420368, 36.866348], [-76.457469, 36.814841], [-76.491497, 36.550365], [-76.541391, 36.550312], [-76.541687, 36.550312], [-76.781296, 36.550659], [-76.807078, 36.550606], [-76.915384, 36.543856], [-76.897592, 36.64405]]]}, "bbox": [-76.915384, 36.543856, -76.406667, 36.928916]}, {"id": "51810", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-76.22606, 36.839947], [-76.213959, 36.832347], [-76.210412, 36.832907], [-76.177019, 36.92929], [-76.139557, 36.923047], [-76.095508, 36.908817], [-76.087955, 36.908647], [-76.058154, 36.916947], [-76.043054, 36.927547], [-76.033454, 36.931946], [-76.013753, 36.930746], [-76.007553, 36.929047], [-75.996252, 36.922047], [-75.991552, 36.910847], [-75.972151, 36.842268], [-75.965451, 36.812449], [-75.94955, 36.76115], [-75.921748, 36.692051], [-75.890946, 36.630753], [-75.874145, 36.583853], [-75.867044, 36.550754], [-75.879744, 36.550754], [-75.880644, 36.550754], [-75.885945, 36.550754], [-75.886545, 36.550754], [-75.891945, 36.550754], [-75.893245, 36.550654], [-75.894145, 36.550754], [-75.903445, 36.550654], [-75.904745, 36.550654], [-75.909046, 36.550654], [-75.911446, 36.550654], [-75.922046, 36.550654], [-75.952847, 36.550553], [-75.953447, 36.550553], [-75.955748, 36.550553], [-75.957648, 36.550553], [-76.02675, 36.550553], [-76.034751, 36.550653], [-76.12236, 36.550621], [-76.121955, 36.66575], [-76.068154, 36.69235], [-76.203667, 36.769655], [-76.22606, 36.839947]]]}, "bbox": [-76.22606, 36.550553, -75.867044, 36.931946]}, {"id": "51840", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.196945, 39.191161], [-78.154919, 39.200895], [-78.136953, 39.18453], [-78.18289, 39.13097], [-78.196945, 39.191161]]]}, "bbox": [-78.196945, 39.13097, -78.136953, 39.200895]}, {"id": "53005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-119.868135, 45.835962], [-119.866265, 46.040662], [-119.874057, 46.628585], [-119.626139, 46.644983], [-119.515653, 46.727396], [-119.45322, 46.679243], [-119.258292, 46.489457], [-119.268928, 46.277957], [-119.041418, 46.192856], [-118.980933, 46.146296], [-118.941075, 46.029339], [-118.987129, 45.999855], [-119.008558, 45.97927], [-119.027056, 45.969134], [-119.093221, 45.942745], [-119.12612, 45.932859], [-119.169496, 45.927603], [-119.19553, 45.92787], [-119.225745, 45.932725], [-119.25715, 45.939926], [-119.322509, 45.933183], [-119.37613, 45.920974], [-119.432067, 45.913629], [-119.487829, 45.906307], [-119.524632, 45.908605], [-119.571584, 45.925456], [-119.600549, 45.919581], [-119.623393, 45.905639], [-119.669877, 45.856867], [-119.772927, 45.845578], [-119.802655, 45.84753], [-119.868135, 45.835962]]]}, "bbox": [-119.874057, 45.835962, -118.941075, 46.727396]}, {"id": "53007", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.11901, 47.779933], [-121.07071, 47.826034], [-121.180213, 47.897132], [-121.118059, 47.99766], [-121.153501, 48.040871], [-121.015412, 48.075141], [-120.906411, 48.163348], [-121.001409, 48.295548], [-121.069941, 48.316539], [-121.035823, 48.494749], [-120.824008, 48.545153], [-120.701557, 48.53162], [-120.651747, 48.536585], [-120.650211, 48.397559], [-120.559708, 48.360661], [-120.391901, 48.242963], [-120.3625, 48.168761], [-120.213493, 48.079061], [-120.14329, 48.065061], [-120.066621, 47.966378], [-119.870307, 47.960328], [-119.994952, 47.781353], [-120.130914, 47.776601], [-120.209395, 47.748356], [-120.199048, 47.682276], [-120.233584, 47.59763], [-120.292814, 47.538172], [-120.318084, 47.457748], [-120.28653, 47.393111], [-120.129573, 47.366251], [-120.083274, 47.33369], [-120.09447, 47.262151], [-120.388978, 47.260889], [-120.525137, 47.333239], [-120.916098, 47.42854], [-121.113606, 47.597135], [-121.068409, 47.706234], [-121.11901, 47.779933]]]}, "bbox": [-121.180213, 47.260889, -119.870307, 48.545153]}, {"id": "53021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-119.081621, 46.738019], [-118.209807, 46.738938], [-118.249122, 46.734138], [-118.21566, 46.588924], [-118.224468, 46.591022], [-118.228928, 46.593606], [-118.452637, 46.596973], [-118.615592, 46.504543], [-118.633826, 46.414022], [-118.746199, 46.359512], [-118.777228, 46.290177], [-118.972827, 46.238705], [-119.041418, 46.192856], [-119.268928, 46.277957], [-119.258292, 46.489457], [-119.45322, 46.679243], [-119.368939, 46.678204], [-119.369387, 46.737696], [-119.081621, 46.738019]]]}, "bbox": [-119.45322, 46.192856, -118.209807, 46.738938]}, {"id": "53027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-124.098359, 46.794157], [-124.101232, 46.810656], [-124.108078, 46.836388], [-124.122979, 46.879809], [-124.138225, 46.905534], [-124.117712, 46.91238], [-124.110641, 46.91252], [-124.093392, 46.901168], [-124.090422, 46.8955], [-124.089286, 46.867716], [-124.073113, 46.861493], [-124.066349, 46.863504], [-124.061051, 46.865127], [-124.055085, 46.870429], [-124.049279, 46.891253], [-124.046344, 46.893972], [-124.03624, 46.898473], [-124.01366, 46.90363], [-124.009519, 46.910325], [-123.985082, 46.921916], [-123.979378, 46.923038], [-123.957493, 46.921261], [-123.915256, 46.932964], [-123.882884, 46.939946], [-123.86018, 46.948556], [-123.876136, 46.961054], [-123.889402, 46.968904], [-123.898245, 46.971927], [-123.921617, 46.971864], [-123.939214, 46.969739], [-123.947996, 46.971818], [-123.959185, 46.981759], [-123.991612, 46.980215], [-124.012218, 46.985176], [-124.019727, 46.991189], [-124.010068, 46.997882], [-124.005248, 47.003915], [-124.017035, 47.011717], [-124.016999, 47.014848], [-124.026345, 47.030187], [-124.065856, 47.04114], [-124.106378, 47.04264], [-124.122057, 47.04165], [-124.141517, 47.035142], [-124.149043, 47.029294], [-124.151288, 47.021112], [-124.139733, 46.98837], [-124.138035, 46.970959], [-124.124386, 46.94387], [-124.141267, 46.940266], [-124.158624, 46.929439], [-124.180111, 46.926357], [-124.174503, 46.941623], [-124.171161, 46.958443], [-124.169113, 46.994508], [-124.173501, 47.06637], [-124.176745, 47.092999], [-124.183833, 47.124807], [-124.182802, 47.134041], [-124.185806, 47.136017], [-124.189725, 47.146827], [-124.195893, 47.174], [-124.209017, 47.218151], [-124.236349, 47.287287], [-124.242234, 47.295101], [-124.25359, 47.30248], [-124.257452, 47.304059], [-124.271193, 47.305025], [-124.286369, 47.325162], [-124.293288, 47.339309], [-124.299943, 47.34836], [-124.307509, 47.352268], [-124.319379, 47.355559], [-124.324091, 47.367602], [-124.32665, 47.388759], [-124.336724, 47.415996], [-124.345155, 47.48903], [-124.353651, 47.53361], [-124.047108, 47.51812], [-123.50438, 47.517609], [-123.489031, 47.082716], [-123.202066, 47.084895], [-123.158439, 46.996237], [-123.160588, 46.793383], [-123.202826, 46.794392], [-123.370775, 46.792449], [-124.098359, 46.794157]]]}, "bbox": [-124.353651, 46.792449, -123.158439, 47.53361]}, {"id": "53033", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.484993, 47.512731], [-122.467796, 47.509956], [-122.452399, 47.503471], [-122.460503, 47.494773], [-122.460029, 47.486861], [-122.433386, 47.46643], [-122.43984, 47.458083], [-122.440083, 47.417647], [-122.437657, 47.407424], [-122.427327, 47.402129], [-122.395054, 47.399277], [-122.373629, 47.388718], [-122.378482, 47.38533], [-122.401768, 47.381325], [-122.437809, 47.365607], [-122.448399, 47.354987], [-122.453998, 47.343337], [-122.457494, 47.342567], [-122.469703, 47.344623], [-122.491237, 47.335172], [-122.491063, 47.332427], [-122.493123, 47.330253], [-122.504918, 47.33068], [-122.51885, 47.33332], [-122.52416, 47.33837], [-122.528129, 47.345542], [-122.52603, 47.358908], [-122.537935, 47.359203], [-122.528434, 47.378211], [-122.538429, 47.390829], [-122.53672, 47.40299], [-122.484993, 47.512731]]], [[[-122.418268, 47.320614], [-122.364168, 47.335953], [-122.336934, 47.341421], [-122.324833, 47.348521], [-122.325734, 47.391521], [-122.328434, 47.400621], [-122.335234, 47.408421], [-122.348035, 47.415921], [-122.355135, 47.441921], [-122.367036, 47.447621], [-122.383136, 47.450521], [-122.368036, 47.459221], [-122.363062, 47.475702], [-122.361336, 47.481421], [-122.365236, 47.48842], [-122.386637, 47.50222], [-122.396538, 47.51522], [-122.393938, 47.52482], [-122.398338, 47.55012], [-122.409839, 47.56892], [-122.421139, 47.57602], [-122.401839, 47.58392], [-122.387139, 47.59572], [-122.375421, 47.585181], [-122.370167, 47.583087], [-122.358238, 47.58482], [-122.342937, 47.59122], [-122.339513, 47.599113], [-122.344937, 47.60912], [-122.367819, 47.624213], [-122.386039, 47.63172], [-122.393739, 47.63102], [-122.40424, 47.63392], [-122.414645, 47.639766], [-122.429841, 47.658919], [-122.407841, 47.680119], [-122.403841, 47.689419], [-122.393248, 47.701602], [-122.38044, 47.709119], [-122.37644, 47.716519], [-122.375607, 47.719724], [-122.37314, 47.729219], [-122.382641, 47.749119], [-122.380241, 47.758519], [-122.394442, 47.772219], [-122.396422, 47.777927], [-122.000425, 47.775284], [-122.000396, 47.775284], [-121.928146, 47.776971], [-121.584537, 47.776726], [-121.580986, 47.777534], [-121.11901, 47.779933], [-121.068409, 47.706234], [-121.113606, 47.597135], [-121.243207, 47.540334], [-121.310953, 47.479271], [-121.425421, 47.422354], [-121.432652, 47.293591], [-121.298041, 47.14823], [-121.379671, 47.086765], [-121.796678, 47.173059], [-121.839148, 47.143356], [-122.047909, 47.171645], [-122.143967, 47.257347], [-122.229208, 47.257538], [-122.229494, 47.257538], [-122.33486, 47.257594], [-122.418268, 47.320614]]]]}, "bbox": [-122.538429, 47.086765, -121.068409, 47.779933]}, {"id": "53035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.749199, 47.741063], [-122.740159, 47.736228], [-122.733012, 47.737625], [-122.722686, 47.748827], [-122.719712, 47.760976], [-122.714801, 47.768176], [-122.690562, 47.778372], [-122.684085, 47.798574], [-122.682015, 47.800882], [-122.648108, 47.825123], [-122.623192, 47.836199], [-122.614585, 47.850806], [-122.608105, 47.856728], [-122.573672, 47.857582], [-122.573098, 47.874081], [-122.586339, 47.902023], [-122.588235, 47.912923], [-122.596228, 47.92021], [-122.616701, 47.925139], [-122.620316, 47.931553], [-122.617022, 47.938987], [-122.611956, 47.940772], [-122.603861, 47.940478], [-122.601507, 47.931726], [-122.592184, 47.922519], [-122.581846, 47.920282], [-122.549072, 47.919072], [-122.527593, 47.905882], [-122.513986, 47.880807], [-122.512778, 47.863879], [-122.506122, 47.831745], [-122.502224, 47.826395], [-122.482529, 47.815511], [-122.482437, 47.809255], [-122.485214, 47.804128], [-122.495346, 47.79704], [-122.495458, 47.786692], [-122.471402, 47.765965], [-122.470333, 47.757109], [-122.471844, 47.749819], [-122.477344, 47.746019], [-122.488491, 47.743605], [-122.507638, 47.74304], [-122.515193, 47.743911], [-122.519325, 47.74622], [-122.537318, 47.74714], [-122.554454, 47.745704], [-122.543161, 47.710941], [-122.53094, 47.704814], [-122.525851, 47.705095], [-122.523962, 47.708034], [-122.511196, 47.708715], [-122.504604, 47.699136], [-122.504452, 47.685888], [-122.508709, 47.670843], [-122.518277, 47.65132], [-122.502116, 47.639074], [-122.493205, 47.635122], [-122.492809, 47.629591], [-122.494518, 47.623625], [-122.500357, 47.617816], [-122.49824, 47.598242], [-122.493933, 47.588963], [-122.483805, 47.586721], [-122.479089, 47.583654], [-122.503672, 47.575178], [-122.518367, 47.57408], [-122.529915, 47.568441], [-122.534664, 47.566122], [-122.543118, 47.556326], [-122.542355, 47.53784], [-122.547207, 47.528257], [-122.546611, 47.52355], [-122.532909, 47.522184], [-122.52305, 47.524], [-122.500543, 47.51528], [-122.494882, 47.510265], [-122.484993, 47.512731], [-122.53672, 47.40299], [-122.801451, 47.404016], [-122.80015, 47.520165], [-122.872192, 47.521495], [-123.037766, 47.520214], [-122.950473, 47.606266], [-122.783237, 47.672754], [-122.749199, 47.741063]]]}, "bbox": [-123.037766, 47.40299, -122.470333, 47.940772]}, {"id": "53053", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.4442, 47.266723], [-122.437727, 47.268046], [-122.429605, 47.269707], [-122.418074, 47.281765], [-122.409199, 47.288556], [-122.413735, 47.293921], [-122.424235, 47.297521], [-122.432335, 47.296021], [-122.444635, 47.300421], [-122.443008, 47.306333], [-122.423535, 47.319121], [-122.418268, 47.320614], [-122.33486, 47.257594], [-122.229494, 47.257538], [-122.229208, 47.257538], [-122.143967, 47.257347], [-122.047909, 47.171645], [-121.839148, 47.143356], [-121.796678, 47.173059], [-121.379671, 47.086765], [-121.4565, 46.922733], [-121.52327, 46.87328], [-121.456356, 46.783744], [-121.758941, 46.783734], [-121.83259, 46.729721], [-122.202721, 46.762628], [-122.372977, 46.845038], [-122.491497, 46.867863], [-122.637396, 46.977097], [-122.7595, 47.141216], [-122.775997, 47.155187], [-122.792371, 47.174169], [-122.821426, 47.194211], [-122.85005, 47.272917], [-122.801451, 47.404016], [-122.53672, 47.40299], [-122.538429, 47.390829], [-122.528434, 47.378211], [-122.537935, 47.359203], [-122.551536, 47.35954], [-122.55584, 47.347519], [-122.57134, 47.327219], [-122.575985, 47.32642], [-122.573739, 47.318419], [-122.571239, 47.315619], [-122.547747, 47.316403], [-122.547408, 47.317734], [-122.540238, 47.31852], [-122.533338, 47.31662], [-122.471652, 47.277321], [-122.4442, 47.266723]]]}, "bbox": [-122.85005, 46.729721, -121.379671, 47.404016]}, {"id": "53057", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.649405, 48.588457], [-122.642597, 48.588339], [-122.629321, 48.5722], [-122.610841, 48.561146], [-122.592901, 48.553635], [-122.583985, 48.551534], [-122.578856, 48.54813], [-122.572967, 48.529028], [-122.583565, 48.53234], [-122.590194, 48.536259], [-122.599948, 48.536904], [-122.619858, 48.529246], [-122.635738, 48.526021], [-122.640414, 48.52586], [-122.649256, 48.528769], [-122.652041, 48.531329], [-122.654342, 48.537956], [-122.653612, 48.548975], [-122.650786, 48.554019], [-122.652385, 48.583432], [-122.649405, 48.588457]]], [[[-122.714512, 48.60878], [-122.694672, 48.596602], [-122.691745, 48.590612], [-122.670638, 48.568812], [-122.68944, 48.543903], [-122.717278, 48.539739], [-122.722407, 48.540606], [-122.724031, 48.549906], [-122.73048, 48.565602], [-122.736199, 48.569005], [-122.73944, 48.573893], [-122.739898, 48.583949], [-122.72493, 48.603263], [-122.714512, 48.60878]]], [[[-122.699266, 48.621115], [-122.69806, 48.62308], [-122.674173, 48.629944], [-122.657016, 48.609891], [-122.666149, 48.608088], [-122.676796, 48.610055], [-122.686136, 48.613267], [-122.699266, 48.621115]]], [[[-122.37821, 48.29759], [-122.38431, 48.304123], [-122.408718, 48.326413], [-122.424102, 48.334346], [-122.442678, 48.337934], [-122.475529, 48.359912], [-122.482423, 48.361737], [-122.497686, 48.361837], [-122.507437, 48.364666], [-122.533452, 48.383409], [-122.539449, 48.39719], [-122.547492, 48.399889], [-122.554536, 48.40604], [-122.558403, 48.426758], [-122.551221, 48.439465], [-122.557298, 48.444438], [-122.568348, 48.44499], [-122.575254, 48.443333], [-122.581607, 48.429244], [-122.61448, 48.41488], [-122.649839, 48.408526], [-122.665338, 48.416453], [-122.674158, 48.424726], [-122.678928, 48.439466], [-122.677072, 48.444059], [-122.674188, 48.443327], [-122.674085, 48.441979], [-122.667249, 48.442503], [-122.654844, 48.454087], [-122.657753, 48.47294], [-122.664623, 48.478128], [-122.689121, 48.476849], [-122.695725, 48.464785], [-122.695587, 48.460558], [-122.700603, 48.457632], [-122.710362, 48.461584], [-122.712322, 48.464143], [-122.712981, 48.47879], [-122.701644, 48.497622], [-122.684521, 48.509123], [-122.679122, 48.507797], [-122.676922, 48.504484], [-122.671386, 48.50398], [-122.615183, 48.521427], [-122.606961, 48.522152], [-122.599951, 48.520946], [-122.598469, 48.512169], [-122.568071, 48.50821], [-122.556834, 48.498812], [-122.537355, 48.466749], [-122.532845, 48.466057], [-122.526943, 48.468004], [-122.515056, 48.465554], [-122.511348, 48.461825], [-122.500721, 48.460887], [-122.471832, 48.470724], [-122.469634, 48.472187], [-122.46967, 48.474975], [-122.473763, 48.47975], [-122.478851, 48.481736], [-122.483501, 48.49243], [-122.484996, 48.50962], [-122.483872, 48.521891], [-122.485288, 48.528106], [-122.498463, 48.556206], [-122.504428, 48.564775], [-122.52537, 48.567344], [-122.531978, 48.568644], [-122.534719, 48.574246], [-122.534787, 48.57596], [-122.512372, 48.578067], [-122.495904, 48.575927], [-122.488421, 48.564665], [-122.482406, 48.559653], [-122.478431, 48.559303], [-122.44456, 48.570115], [-122.433059, 48.581609], [-122.425271, 48.599522], [-122.448702, 48.622624], [-122.46425, 48.625717], [-122.486878, 48.643122], [-122.488754, 48.645358], [-121.251233, 48.640997], [-120.910534, 48.640937], [-120.752021, 48.657538], [-120.701557, 48.53162], [-120.824008, 48.545153], [-121.035823, 48.494749], [-121.069941, 48.316539], [-121.001409, 48.295548], [-122.37821, 48.29759]]]]}, "bbox": [-122.739898, 48.295548, -120.701557, 48.657538]}, {"id": "53061", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.321721, 48.019977], [-122.303455, 48.005603], [-122.306629, 48.004397], [-122.326115, 48.010295], [-122.334524, 48.018916], [-122.328343, 48.021335], [-122.321721, 48.019977]]], [[[-121.584537, 47.776726], [-121.928146, 47.776971], [-122.000396, 47.775284], [-122.000425, 47.775284], [-122.396422, 47.777927], [-122.397043, 47.779719], [-122.394944, 47.803318], [-122.392044, 47.807718], [-122.353244, 47.840618], [-122.346544, 47.842418], [-122.339944, 47.846718], [-122.33595, 47.852306], [-122.329545, 47.869418], [-122.330145, 47.875318], [-122.333543, 47.880246], [-122.328546, 47.897917], [-122.321847, 47.911817], [-122.311927, 47.923703], [-122.310747, 47.925117], [-122.309747, 47.929117], [-122.311148, 47.936717], [-122.307048, 47.949117], [-122.278047, 47.956517], [-122.249007, 47.959507], [-122.230046, 47.970917], [-122.226346, 47.976417], [-122.232391, 47.987713], [-122.23022, 48.007154], [-122.228767, 48.012468], [-122.224979, 48.016626], [-122.231761, 48.029876], [-122.281087, 48.049793], [-122.305838, 48.073415], [-122.321709, 48.085507], [-122.326119, 48.092877], [-122.343241, 48.097631], [-122.363842, 48.12393], [-122.365078, 48.125822], [-122.363797, 48.142759], [-122.364744, 48.151304], [-122.370253, 48.164809], [-122.363479, 48.174438], [-122.362044, 48.187568], [-122.372492, 48.193022], [-122.382102, 48.207106], [-122.385703, 48.217811], [-122.395499, 48.228551], [-122.392851, 48.238555], [-122.398712, 48.241684], [-122.405757, 48.252193], [-122.395328, 48.257187], [-122.392058, 48.269628], [-122.371693, 48.287839], [-122.376818, 48.296099], [-122.37821, 48.29759], [-121.001409, 48.295548], [-120.906411, 48.163348], [-121.015412, 48.075141], [-121.153501, 48.040871], [-121.118059, 47.99766], [-121.180213, 47.897132], [-121.07071, 47.826034], [-121.11901, 47.779933], [-121.580986, 47.777534], [-121.584537, 47.776726]]]]}, "bbox": [-122.405757, 47.775284, -120.906411, 48.29759]}, {"id": "53063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-117.042485, 47.766525], [-117.042521, 47.764896], [-117.042623, 47.761223], [-117.042657, 47.760857], [-117.042059, 47.7451], [-117.042135, 47.7441], [-117.041678, 47.72271], [-117.041633, 47.7064], [-117.041532, 47.683194], [-117.041431, 47.68], [-117.041431, 47.678185], [-117.041431, 47.67814], [-117.041174, 47.55853], [-117.041276, 47.55821], [-117.040745, 47.532909], [-117.040545, 47.527562], [-117.040514, 47.522351], [-117.039945, 47.477823], [-117.039971, 47.463309], [-117.039948, 47.434885], [-117.03995, 47.412412], [-117.039882, 47.399085], [-117.039857, 47.366093], [-117.039843, 47.347201], [-117.040019, 47.259272], [-117.823695, 47.260378], [-117.820784, 47.825188], [-117.699097, 47.856089], [-117.535661, 47.795111], [-117.535039, 48.047865], [-117.436903, 48.047206], [-117.041676, 48.04556], [-117.041874, 47.977387], [-117.042485, 47.766525]]]}, "bbox": [-117.823695, 47.259272, -117.039843, 48.047865]}, {"id": "53067", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-122.821426, 47.194211], [-122.792371, 47.174169], [-122.775997, 47.155187], [-122.7595, 47.141216], [-122.637396, 46.977097], [-122.491497, 46.867863], [-122.372977, 46.845038], [-122.202721, 46.762628], [-123.160909, 46.76433], [-123.160588, 46.793383], [-123.158439, 46.996237], [-123.202066, 47.084895], [-123.075101, 47.084503], [-122.936716, 47.190246], [-122.905659, 47.155614], [-122.881717, 47.156285], [-122.821426, 47.194211]]]}, "bbox": [-123.202066, 46.762628, -122.202721, 47.194211]}, {"id": "53071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-118.228928, 46.593606], [-118.241611, 46.295072], [-118.116139, 46.295455], [-118.116493, 46.207912], [-117.991292, 46.207843], [-117.996911, 46.000787], [-118.126197, 46.000282], [-118.131019, 46.00028], [-118.228941, 46.000421], [-118.236584, 46.000418], [-118.25253, 46.000459], [-118.256368, 46.000439], [-118.314982, 46.000453], [-118.36779, 46.000622], [-118.37836, 46.000574], [-118.470756, 46.000632], [-118.497027, 46.00062], [-118.537119, 46.00084], [-118.569392, 46.000773], [-118.57571, 46.000718], [-118.579906, 46.000818], [-118.637725, 46.00097], [-118.639332, 46.000994], [-118.658717, 46.000955], [-118.67787, 46.000935], [-118.987129, 45.999855], [-118.941075, 46.029339], [-118.980933, 46.146296], [-119.041418, 46.192856], [-118.972827, 46.238705], [-118.777228, 46.290177], [-118.746199, 46.359512], [-118.633826, 46.414022], [-118.615592, 46.504543], [-118.452637, 46.596973], [-118.228928, 46.593606]]]}, "bbox": [-119.041418, 45.999855, -117.991292, 46.596973]}, {"id": "53073", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-120.752021, 48.657538], [-120.910534, 48.640937], [-121.251233, 48.640997], [-122.488754, 48.645358], [-122.49399, 48.651596], [-122.500308, 48.656163], [-122.506718, 48.669692], [-122.519172, 48.713095], [-122.515511, 48.720992], [-122.505684, 48.724524], [-122.495301, 48.737328], [-122.490401, 48.751128], [-122.510902, 48.757728], [-122.528203, 48.768428], [-122.535803, 48.776128], [-122.567498, 48.779185], [-122.596844, 48.771492], [-122.598033, 48.769489], [-122.606787, 48.759143], [-122.627808, 48.74466], [-122.637146, 48.735708], [-122.638082, 48.732486], [-122.626287, 48.72093], [-122.612562, 48.714932], [-122.605733, 48.701066], [-122.606105, 48.698556], [-122.615169, 48.693839], [-122.620338, 48.693651], [-122.630422, 48.696625], [-122.646323, 48.708001], [-122.673472, 48.733082], [-122.666953, 48.748445], [-122.661111, 48.753962], [-122.647443, 48.773998], [-122.645743, 48.781538], [-122.646777, 48.785011], [-122.656528, 48.784969], [-122.659708, 48.786523], [-122.680246, 48.80275], [-122.693683, 48.804475], [-122.697219, 48.80281], [-122.698675, 48.800522], [-122.699507, 48.794906], [-122.699303, 48.789063], [-122.703106, 48.786321], [-122.709815, 48.786205], [-122.7112, 48.79146], [-122.709169, 48.817829], [-122.711805, 48.832408], [-122.717073, 48.84719], [-122.722685, 48.852855], [-122.785659, 48.885066], [-122.793175, 48.892927], [-122.792584, 48.894732], [-122.783747, 48.894639], [-122.751289, 48.911239], [-122.747514, 48.915582], [-122.745371, 48.921227], [-122.746596, 48.930731], [-122.755624, 48.93866], [-122.766096, 48.941955], [-122.770432, 48.942528], [-122.787539, 48.931702], [-122.818232, 48.939062], [-122.821631, 48.941369], [-122.822464, 48.944911], [-122.817226, 48.95597], [-122.796887, 48.975026], [-122.774276, 48.991038], [-122.766307, 48.991672], [-122.756318, 48.996881], [-122.756037, 48.999512], [-122.75802, 49.002357], [-122.407829, 49.002193], [-122.405989, 49.002239], [-122.098357, 49.002146], [-121.751252, 48.997399], [-121.12624, 49.001412], [-120.851202, 49.001191], [-120.767528, 48.954385], [-120.73371, 48.7829], [-120.654676, 48.724198], [-120.752021, 48.657538]]], [[[-123.035393, 49.002154], [-123.021459, 48.977299], [-123.028091, 48.973943], [-123.040967, 48.977305], [-123.060717, 48.975388], [-123.083834, 48.976139], [-123.084498, 48.986535], [-123.090546, 49.001976], [-123.035393, 49.002154]]], [[[-122.695907, 48.737273], [-122.668947, 48.706644], [-122.663259, 48.697077], [-122.644901, 48.691389], [-122.618225, 48.670721], [-122.609576, 48.645018], [-122.616956, 48.645563], [-122.635299, 48.651846], [-122.673538, 48.680809], [-122.691795, 48.711498], [-122.702223, 48.717004], [-122.718833, 48.716818], [-122.721981, 48.723375], [-122.722262, 48.731624], [-122.715709, 48.748672], [-122.70306, 48.743602], [-122.695907, 48.737273]]]]}, "bbox": [-123.090546, 48.640937, -120.654676, 49.002357]}, {"id": "53075", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-118.209807, 46.738938], [-118.012613, 46.790485], [-117.958856, 46.914878], [-117.960143, 47.260449], [-117.823695, 47.260378], [-117.040019, 47.259272], [-117.039899, 47.225515], [-117.039888, 47.203282], [-117.039871, 47.181858], [-117.039836, 47.154734], [-117.039821, 47.127265], [-117.039657, 46.825798], [-117.039828, 46.815443], [-117.039783, 46.541785], [-117.039771, 46.471779], [-117.039763, 46.46957], [-117.039741, 46.462704], [-117.039813, 46.425425], [-117.199044, 46.419786], [-117.228896, 46.462314], [-117.253902, 46.545082], [-117.475331, 46.70033], [-117.601227, 46.672679], [-117.751037, 46.690027], [-117.851844, 46.624772], [-118.172552, 46.556947], [-118.21566, 46.588924], [-118.249122, 46.734138], [-118.209807, 46.738938]]]}, "bbox": [-118.249122, 46.419786, -117.039657, 47.260449]}, {"id": "53077", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-121.523938, 46.044048], [-121.523556, 46.388221], [-121.386557, 46.410601], [-121.451194, 46.533537], [-121.35232, 46.712366], [-121.456356, 46.783744], [-121.52327, 46.87328], [-121.4565, 46.922733], [-121.379671, 47.086765], [-121.282039, 47.088954], [-121.089794, 46.991039], [-121.02649, 46.911341], [-120.634883, 46.911995], [-120.634431, 46.825831], [-120.509227, 46.824534], [-120.509618, 46.738114], [-119.973017, 46.737171], [-119.874057, 46.628585], [-119.866265, 46.040662], [-121.070459, 46.042575], [-121.523938, 46.044048]]]}, "bbox": [-121.523938, 46.040662, -119.866265, 47.088954]}, {"id": "54003", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-78.228766, 39.391233], [-78.138937, 39.593796], [-78.023427, 39.61986], [-78.009985, 39.602893], [-77.946442, 39.58491], [-77.902649, 39.587796], [-77.884536, 39.568174], [-77.886135, 39.560432], [-77.888945, 39.55595], [-77.865423, 39.516472], [-77.845105, 39.498285], [-77.825411, 39.494036], [-77.966953, 39.367164], [-78.033185, 39.264626], [-78.228766, 39.391233]]]}, "bbox": [-78.228766, 39.264626, -77.825411, 39.61986]}, {"id": "54011", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-82.047128, 38.374432], [-82.17679, 38.3396], [-82.264849, 38.229199], [-82.297858, 38.327443], [-82.343911, 38.305209], [-82.50667, 38.410092], [-82.34064, 38.440948], [-82.330335, 38.4445], [-82.323999, 38.449268], [-82.320223, 38.454516], [-82.313935, 38.468084], [-82.295571, 38.539783], [-82.293271, 38.560283], [-82.293871, 38.572683], [-82.291271, 38.578983], [-82.287102, 38.582588], [-82.27427, 38.593683], [-82.26207, 38.598183], [-82.245969, 38.598483], [-82.218967, 38.591683], [-82.055127, 38.474547], [-82.047128, 38.374432]]]}, "bbox": [-82.50667, 38.229199, -82.047128, 38.598483]}, {"id": "54025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.882187, 38.103457], [-80.711961, 38.079129], [-80.436514, 38.267334], [-80.360048, 38.225845], [-80.363295, 38.114331], [-80.264653, 38.046616], [-80.169169, 38.036111], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.450651, 37.683858], [-80.663348, 37.731696], [-80.806316, 37.868915], [-80.769866, 37.98527], [-80.882187, 38.103457]]]}, "bbox": [-80.882187, 37.683858, -79.959844, 38.267334]}, {"id": "54029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.519054, 40.517922], [-80.518692, 40.477365], [-80.517998, 40.399644], [-80.573784, 40.399755], [-80.617346, 40.396004], [-80.612295, 40.434867], [-80.599194, 40.482566], [-80.610259, 40.490962], [-80.666917, 40.573664], [-80.667957, 40.582496], [-80.665892, 40.587728], [-80.634355, 40.616095], [-80.627171, 40.619936], [-80.601494, 40.625387], [-80.594065, 40.623664], [-80.589041, 40.620128], [-80.56072, 40.62368], [-80.518991, 40.638801], [-80.519039, 40.616391], [-80.519086, 40.616385], [-80.519086, 40.590161], [-80.519055, 40.590173], [-80.519057, 40.517922], [-80.519054, 40.517922]]]}, "bbox": [-80.667957, 40.396004, -80.517998, 40.638801]}, {"id": "54033", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.544521, 39.42912], [-80.515598, 39.43774], [-80.512663, 39.458612], [-80.493991, 39.461148], [-80.494085, 39.469599], [-80.293693, 39.434312], [-80.197286, 39.393186], [-80.166387, 39.242283], [-80.224687, 39.170977], [-80.227173, 39.112792], [-80.240394, 39.113145], [-80.248771, 39.100809], [-80.300209, 39.103857], [-80.596126, 39.167069], [-80.525709, 39.209429], [-80.603684, 39.291041], [-80.531808, 39.360121], [-80.544521, 39.42912]]]}, "bbox": [-80.603684, 39.100809, -80.166387, 39.469599]}, {"id": "54039", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.522166, 38.612746], [-81.465372, 38.549898], [-81.194113, 38.527634], [-81.283872, 38.472029], [-81.231434, 38.263716], [-81.231636, 38.263514], [-81.331503, 38.167578], [-81.380829, 37.969109], [-81.414331, 37.973508], [-81.438531, 37.968008], [-81.456632, 37.987307], [-81.515836, 38.11236], [-81.643685, 38.220401], [-81.83347, 38.20957], [-81.818234, 38.316751], [-81.915197, 38.325597], [-81.900222, 38.398572], [-81.725801, 38.46662], [-81.750547, 38.591014], [-81.696348, 38.626427], [-81.632836, 38.55437], [-81.522166, 38.612746]]]}, "bbox": [-81.915197, 37.968008, -81.194113, 38.626427]}, {"id": "54041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.457332, 38.739169], [-80.446148, 38.777514], [-80.605799, 38.904167], [-80.716815, 39.00843], [-80.728326, 39.095679], [-80.596126, 39.167069], [-80.300209, 39.103857], [-80.317486, 38.958647], [-80.386989, 38.874808], [-80.393063, 38.727571], [-80.404748, 38.723439], [-80.426641, 38.731004], [-80.444673, 38.726729], [-80.457332, 38.739169]]]}, "bbox": [-80.728326, 38.723439, -80.300209, 39.167069]}, {"id": "54049", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.494085, 39.469599], [-80.498163, 39.563327], [-80.39581, 39.637347], [-80.153532, 39.610426], [-79.938878, 39.452465], [-80.086785, 39.386463], [-80.197286, 39.393186], [-80.293693, 39.434312], [-80.494085, 39.469599]]]}, "bbox": [-80.498163, 39.386463, -79.938878, 39.637347]}, {"id": "54055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.222121, 37.510416], [-81.19932, 37.574515], [-81.09463, 37.588658], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.311201, 37.424509], [-81.222121, 37.510416]]]}, "bbox": [-81.362156, 37.234874, -80.849451, 37.588658]}, {"id": "54061", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.39581, 39.637347], [-80.421388, 39.721189], [-80.309457, 39.721264], [-80.308651, 39.721283], [-79.916266, 39.720792], [-79.853131, 39.720713], [-79.852904, 39.720713], [-79.763774, 39.720776], [-79.789277, 39.623781], [-79.899744, 39.48194], [-79.894688, 39.435588], [-79.938878, 39.452465], [-80.153532, 39.610426], [-80.39581, 39.637347]]]}, "bbox": [-80.421388, 39.435588, -79.763774, 39.721283]}, {"id": "54069", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-80.705482, 40.153047], [-80.703052, 40.157231], [-80.685391, 40.187642], [-80.519104, 40.159672], [-80.51896, 40.078089], [-80.519008, 40.077001], [-80.51912, 40.01641], [-80.732051, 40.03324], [-80.731504, 40.037472], [-80.730904, 40.049172], [-80.733104, 40.058772], [-80.726504, 40.089072], [-80.705482, 40.153047]]]}, "bbox": [-80.733104, 40.01641, -80.51896, 40.187642]}, {"id": "54081", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.456632, 37.987307], [-81.438531, 37.968008], [-81.414331, 37.973508], [-81.380829, 37.969109], [-81.296628, 37.94401], [-81.295127, 37.889311], [-81.073249, 37.875865], [-81.091041, 37.849674], [-80.94509, 37.819121], [-80.882316, 37.680766], [-80.947017, 37.715449], [-81.09463, 37.588658], [-81.19932, 37.574515], [-81.222121, 37.510416], [-81.30413, 37.546564], [-81.427781, 37.749352], [-81.514228, 37.791211], [-81.571334, 37.928107], [-81.456632, 37.987307]]]}, "bbox": [-81.571334, 37.510416, -80.882316, 37.987307]}, {"id": "54107", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-81.747253, 39.095379], [-81.749689, 39.180742], [-81.749853, 39.186489], [-81.740061, 39.190652], [-81.721551, 39.212448], [-81.695724, 39.242859], [-81.605816, 39.275851], [-81.542346, 39.352874], [-81.467744, 39.403774], [-81.456143, 39.409274], [-81.446543, 39.410374], [-81.435642, 39.408474], [-81.412706, 39.394618], [-81.406689, 39.38809], [-81.393794, 39.351706], [-81.384556, 39.343449], [-81.375961, 39.341697], [-81.371271, 39.342062], [-81.239477, 39.268328], [-81.298017, 39.185572], [-81.424906, 39.135679], [-81.581447, 39.026179], [-81.747253, 39.095379]]]}, "bbox": [-81.749853, 39.026179, -81.239477, 39.410374]}, {"id": "55005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.665647, 45.207991], [-92.156465, 45.209554], [-92.154888, 45.639742], [-92.031417, 45.639928], [-91.540294, 45.637605], [-91.541322, 45.292015], [-91.542234, 45.206538], [-91.665647, 45.207991]]]}, "bbox": [-92.156465, 45.206538, -91.540294, 45.639928]}, {"id": "55009", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.989912, 44.677587], [-87.990081, 44.669791], [-87.99011, 44.668455], [-87.998964, 44.665187], [-88.000321, 44.664686], [-88.002085, 44.664035], [-88.002254, 44.663442], [-88.002677, 44.661956], [-88.00334, 44.65963], [-88.007287, 44.645779], [-88.009766, 44.637081], [-88.009523, 44.631711], [-88.009486, 44.630897], [-88.009472, 44.630594], [-88.009463, 44.630398], [-88.008717, 44.628932], [-88.007489, 44.626521], [-88.007158, 44.625871], [-88.007013, 44.625586], [-88.006871, 44.625306], [-88.006409, 44.624399], [-88.001172, 44.614112], [-87.998836, 44.609523], [-87.998716, 44.609288], [-88.001943, 44.603909], [-88.012395, 44.602438], [-88.014735, 44.5964], [-88.015092, 44.595478], [-88.016373, 44.592172], [-88.016404, 44.592092], [-88.019465, 44.588344], [-88.022853, 44.584196], [-88.027103, 44.578992], [-88.028148, 44.578736], [-88.034535, 44.577175], [-88.036103, 44.576792], [-88.036104, 44.576791], [-88.039092, 44.574324], [-88.039489, 44.573995], [-88.041162, 44.572614], [-88.041202, 44.572581], [-88.041358, 44.571809], [-88.041485, 44.571183], [-88.041561, 44.570804], [-88.041659, 44.57032], [-88.041775, 44.569746], [-88.042261, 44.567344], [-88.042414, 44.566589], [-88.037178, 44.562705], [-88.020707, 44.550484], [-88.016709, 44.547518], [-88.005518, 44.539216], [-88.000099, 44.537827], [-87.999002, 44.537546], [-87.998536, 44.537426], [-87.990985, 44.535491], [-87.990468, 44.535358], [-87.986059, 44.534228], [-87.982821, 44.533398], [-87.977901, 44.532137], [-87.970702, 44.530292], [-87.943801, 44.529693], [-87.939972, 44.531323], [-87.935707, 44.533138], [-87.929001, 44.535993], [-87.924044, 44.540991], [-87.917467, 44.547622], [-87.917, 44.548093], [-87.915846, 44.549612], [-87.901206, 44.568887], [-87.901178, 44.568924], [-87.901177, 44.568925], [-87.900668, 44.570084], [-87.899368, 44.573043], [-87.898907, 44.574091], [-87.898888, 44.574135], [-87.899183, 44.574576], [-87.900198, 44.576095], [-87.900634, 44.576747], [-87.901061, 44.577386], [-87.901236, 44.577648], [-87.903689, 44.581317], [-87.902319, 44.583079], [-87.901179, 44.584545], [-87.896412, 44.58678], [-87.894356, 44.587745], [-87.891727, 44.588977], [-87.891717, 44.588982], [-87.890868, 44.589647], [-87.88741, 44.592356], [-87.867941, 44.607606], [-87.866884, 44.608434], [-87.842164, 44.618826], [-87.837416, 44.620822], [-87.836101, 44.621375], [-87.830848, 44.623583], [-87.829229, 44.624521], [-87.823444, 44.62787], [-87.820083, 44.629816], [-87.809076, 44.636189], [-87.808819, 44.636338], [-87.808366, 44.636378], [-87.78824, 44.638137], [-87.77516, 44.639281], [-87.765774, 44.642023], [-87.762912, 44.64411], [-87.762376, 44.644501], [-87.766194, 44.327185], [-87.887526, 44.327589], [-87.888087, 44.240461], [-88.04324, 44.241018], [-88.192611, 44.241947], [-88.190603, 44.586791], [-88.245204, 44.584746], [-88.242687, 44.679631], [-87.989912, 44.677587]]]}, "bbox": [-88.245204, 44.240461, -87.762376, 44.679631]}, {"id": "55017", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.923362, 45.031143], [-90.922838, 44.999966], [-90.923393, 44.99552], [-90.922395, 44.954816], [-90.922669, 44.944459], [-90.922247, 44.857309], [-91.650455, 44.855951], [-91.665647, 45.207991], [-91.542234, 45.206538], [-91.541322, 45.292015], [-90.925223, 45.291965], [-90.923362, 45.031143]]]}, "bbox": [-91.665647, 44.855951, -90.922247, 45.292015]}, {"id": "55025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.369127, 42.845046], [-89.369069, 42.856471], [-89.838167, 42.857397], [-89.838135, 43.206057], [-89.720295, 43.292928], [-89.009139, 43.28483], [-89.00892, 43.197721], [-89.013489, 42.847347], [-89.369127, 42.845046]]]}, "bbox": [-89.838167, 42.845046, -89.00892, 43.292928]}, {"id": "55027", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.832098, 43.197897], [-89.00892, 43.197721], [-89.009139, 43.28483], [-89.006848, 43.633045], [-88.886052, 43.63354], [-88.401041, 43.630933], [-88.400426, 43.543532], [-88.417987, 43.194697], [-88.535843, 43.196048], [-88.832098, 43.197897]]]}, "bbox": [-89.009139, 43.194697, -88.400426, 43.63354]}, {"id": "55035", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.165619, 44.596987], [-91.529101, 44.596197], [-91.650248, 44.596649], [-91.650324, 44.623005], [-91.650474, 44.624963], [-91.650361, 44.683633], [-91.650455, 44.855951], [-90.922247, 44.857309], [-90.92235, 44.596293], [-91.165619, 44.596987]]]}, "bbox": [-91.650474, 44.596197, -90.922247, 44.857309]}, {"id": "55045", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.838167, 42.857397], [-89.369069, 42.856471], [-89.369127, 42.845046], [-89.366031, 42.500274], [-89.401416, 42.500433], [-89.401432, 42.500433], [-89.420991, 42.500589], [-89.422567, 42.50068], [-89.423926, 42.500818], [-89.425162, 42.500726], [-89.4843, 42.501426], [-89.492612, 42.501514], [-89.493216, 42.501514], [-89.522542, 42.501889], [-89.564407, 42.502628], [-89.594779, 42.503468], [-89.600001, 42.503672], [-89.603523, 42.503557], [-89.61341, 42.503942], [-89.644176, 42.50452], [-89.650324, 42.504613], [-89.667596, 42.50496], [-89.690088, 42.505191], [-89.693487, 42.505099], [-89.742395, 42.505382], [-89.769643, 42.505322], [-89.780302, 42.505349], [-89.793957, 42.505466], [-89.799704, 42.505421], [-89.801897, 42.505444], [-89.837587, 42.505543], [-89.83841, 42.813799], [-89.838167, 42.857397]]]}, "bbox": [-89.83841, 42.500274, -89.366031, 42.857397]}, {"id": "55055", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.539619, 43.107605], [-88.542026, 42.93094], [-88.541535, 42.842996], [-88.659279, 42.842541], [-88.707961, 42.842657], [-88.771719, 42.842825], [-88.777076, 42.842694], [-89.013489, 42.847347], [-89.00892, 43.197721], [-88.832098, 43.197897], [-88.535843, 43.196048], [-88.539619, 43.107605]]]}, "bbox": [-89.013489, 42.842541, -88.535843, 43.197897]}, {"id": "55059", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.812632, 42.547562], [-87.812273, 42.52982], [-87.809672, 42.51482], [-87.800477, 42.49192], [-87.800561, 42.49192], [-87.815872, 42.49192], [-87.843594, 42.492307], [-87.900242, 42.49302], [-87.971279, 42.494019], [-87.99018, 42.494519], [-88.049782, 42.495319], [-88.199521, 42.496013], [-88.200172, 42.496016], [-88.2169, 42.495923], [-88.271691, 42.494818], [-88.304692, 42.494773], [-88.305891, 42.610817], [-88.188173, 42.611456], [-88.188306, 42.669709], [-87.805768, 42.668128], [-87.807082, 42.664571], [-87.80988, 42.656997], [-87.809885, 42.656982], [-87.811371, 42.652959], [-87.813445, 42.647345], [-87.814674, 42.64402], [-87.819407, 42.617327], [-87.819674, 42.61582], [-87.819374, 42.60662], [-87.815736, 42.596045], [-87.815074, 42.59412], [-87.810873, 42.58732], [-87.811617, 42.584809], [-87.812871, 42.580576], [-87.813273, 42.57922], [-87.813223, 42.576759], [-87.813142, 42.572768], [-87.813135, 42.572424], [-87.812851, 42.558352], [-87.812724, 42.552104], [-87.812632, 42.547562]]]}, "bbox": [-88.305891, 42.49192, -87.800477, 42.669709]}, {"id": "55063", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-91.151843, 44.079656], [-90.972764, 44.070775], [-90.912918, 44.071522], [-90.910467, 43.725342], [-91.268198, 43.726571], [-91.262436, 43.792166], [-91.284138, 43.847065], [-91.298815, 43.856555], [-91.310991, 43.867381], [-91.363242, 43.926563], [-91.420114, 43.984243], [-91.322143, 43.984462], [-91.337329, 44.037499], [-91.151843, 44.079656]]]}, "bbox": [-91.420114, 43.725342, -90.910467, 44.079656]}, {"id": "55071", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.54295, 44.327513], [-87.545382, 44.321385], [-87.544725, 44.307068], [-87.544716, 44.306864], [-87.544675, 44.306707], [-87.541382, 44.294018], [-87.541265, 44.293567], [-87.541156, 44.293147], [-87.541155, 44.293143], [-87.541053, 44.292968], [-87.526466, 44.268016], [-87.526391, 44.267888], [-87.526226, 44.267605], [-87.525824, 44.266918], [-87.525797, 44.266871], [-87.525703, 44.266711], [-87.525643, 44.266609], [-87.525485, 44.266338], [-87.525455, 44.266285], [-87.525294, 44.26601], [-87.525211, 44.265869], [-87.524691, 44.264979], [-87.524459, 44.264583], [-87.524193, 44.264128], [-87.523179, 44.262393], [-87.52284, 44.261813], [-87.522557, 44.261329], [-87.521862, 44.26014], [-87.521755, 44.259957], [-87.52133, 44.258993], [-87.521318, 44.258965], [-87.515406, 44.245537], [-87.515399, 44.245522], [-87.515314, 44.245328], [-87.508457, 44.229755], [-87.508419, 44.229669], [-87.508412, 44.229546], [-87.507419, 44.210803], [-87.512903, 44.192808], [-87.51966, 44.17987], [-87.53994, 44.15969], [-87.550076, 44.152933], [-87.563181, 44.144195], [-87.563551, 44.144072], [-87.567045, 44.142914], [-87.567817, 44.142658], [-87.570533, 44.141757], [-87.59668, 44.133088], [-87.59791, 44.13268], [-87.599055, 44.132301], [-87.600882, 44.131695], [-87.603572, 44.13039], [-87.621082, 44.121895], [-87.6458, 44.105222], [-87.646583, 44.104694], [-87.646719, 44.104335], [-87.647551, 44.102128], [-87.647603, 44.101991], [-87.651507, 44.091639], [-87.654935, 44.082552], [-87.655183, 44.081894], [-87.653483, 44.067194], [-87.653691, 44.065961], [-87.656062, 44.051919], [-87.656083, 44.051794], [-87.671316, 44.03735], [-87.683361, 44.020139], [-87.686389, 44.01252], [-87.691479, 43.99971], [-87.695053, 43.990715], [-87.695503, 43.989582], [-87.695511, 43.989524], [-87.69892, 43.965936], [-87.699029, 43.965734], [-87.700125, 43.963712], [-87.700321, 43.963351], [-87.702707, 43.958946], [-87.702719, 43.958926], [-87.703951, 43.956651], [-87.704679, 43.955872], [-87.706656, 43.953753], [-87.709463, 43.950747], [-87.716037, 43.943705], [-87.71817, 43.939498], [-87.719041, 43.937781], [-87.719041, 43.93778], [-87.719194, 43.9371], [-87.720121, 43.932958], [-87.720382, 43.931794], [-87.720734, 43.930224], [-87.721268, 43.92784], [-87.7221, 43.924128], [-87.723716, 43.916915], [-87.724244, 43.914557], [-87.726766, 43.903297], [-87.726803, 43.903133], [-87.726841, 43.90304], [-87.728542, 43.89892], [-87.728885, 43.89809], [-87.73063, 43.893862], [-87.730645, 43.893825], [-87.731322, 43.892184], [-88.041794, 43.891692], [-88.04324, 44.241018], [-87.888087, 44.240461], [-87.887526, 44.327589], [-87.766194, 44.327185], [-87.54295, 44.327513]]]}, "bbox": [-88.04324, 43.891692, -87.507419, 44.327589]}, {"id": "55073", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.316253, 44.685154], [-90.31618, 44.840775], [-90.315919, 44.844187], [-90.315038, 45.033829], [-90.197514, 45.03364], [-90.197765, 45.120604], [-90.043685, 45.120214], [-89.425971, 45.119098], [-89.224214, 45.118567], [-89.223814, 45.029246], [-89.223745, 44.681365], [-89.844931, 44.684945], [-90.316253, 44.685154]]]}, "bbox": [-90.316253, 44.681365, -89.223745, 45.120604]}, {"id": "55075", "type": "Feature", "properties": {}, "geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.500105, 45.061117], [-87.498964, 45.061231], [-87.497254, 45.061278], [-87.496415, 45.061072], [-87.495479, 45.060661], [-87.494543, 45.060044], [-87.493381, 45.059107], [-87.492864, 45.058376], [-87.49285, 45.058325], [-87.492702, 45.057805], [-87.492691, 45.057799], [-87.492573, 45.057736], [-87.492563, 45.057653], [-87.49254, 45.057462], [-87.492516, 45.057419], [-87.492411, 45.057233], [-87.492314, 45.056936], [-87.492023, 45.056502], [-87.491765, 45.056273], [-87.491636, 45.056227], [-87.491507, 45.05609], [-87.491345, 45.056022], [-87.490216, 45.055222], [-87.490151, 45.055039], [-87.490189, 45.055017], [-87.490312, 45.054948], [-87.490925, 45.055039], [-87.492668, 45.055792], [-87.494475, 45.056523], [-87.498379, 45.057733], [-87.49867, 45.057779], [-87.498863, 45.057847], [-87.500105, 45.058167], [-87.501572, 45.058602], [-87.504281, 45.059198], [-87.504967, 45.059287], [-87.506055, 45.059428], [-87.506086, 45.059461], [-87.506184, 45.059565], [-87.506109, 45.059644], [-87.506054, 45.059702], [-87.504488, 45.060024], [-87.50428, 45.060067], [-87.503602, 45.060272], [-87.50244, 45.060706], [-87.501802, 45.060841], [-87.500603, 45.061094], [-87.500105, 45.061117]]], [[[-87.590208, 45.095264], [-87.587147, 45.089495], [-87.587992, 45.085271], [-87.591583, 45.083792], [-87.594718, 45.085134], [-87.601849, 45.082297], [-87.610395, 45.075617], [-87.625748, 45.045157], [-87.624693, 45.014176], [-87.630298, 44.976865], [-87.661964, 44.973035], [-87.696492, 44.974233], [-87.76262, 44.965796], [-87.944436, 44.993057], [-87.942995, 45.020418], [-88.121152, 45.023581], [-88.118879, 45.110197], [-88.189247, 45.111844], [-88.186356, 45.197897], [-88.309063, 45.20158], [-88.305811, 45.37461], [-88.428102, 45.37701], [-88.425302, 45.722426], [-88.059246, 45.713063], [-88.058256, 45.780719], [-88.050634, 45.780972], [-88.039729, 45.789626], [-87.991447, 45.795393], [-87.868111, 45.749477], [-87.828827, 45.72276], [-87.807144, 45.708014], [-87.780808, 45.680349], [-87.781623, 45.67328], [-87.823672, 45.659817], [-87.824102, 45.647138], [-87.79588, 45.618846], [-87.792016, 45.616756], [-87.788798, 45.565947], [-87.792769, 45.499967], [-87.79896, 45.485147], [-87.806347, 45.472262], [-87.812976, 45.464159], [-87.820348, 45.460284], [-87.860432, 45.423504], [-87.888052, 45.354697], [-87.88517, 45.351736], [-87.850133, 45.340435], [-87.838141, 45.345101], [-87.835303, 45.35098], [-87.832612, 45.352249], [-87.790324, 45.353444], [-87.771384, 45.35121], [-87.751452, 45.351755], [-87.718891, 45.377462], [-87.693956, 45.389893], [-87.685934, 45.388711], [-87.675017, 45.382454], [-87.657349, 45.368752], [-87.647729, 45.350721], [-87.648126, 45.339396], [-87.709137, 45.260341], [-87.707779, 45.258343], [-87.711722, 45.243481], [-87.73171, 45.206792], [-87.739492, 45.202126], [-87.741732, 45.198201], [-87.735282, 45.176565], [-87.731389, 45.170989], [-87.659952, 45.107512], [-87.590208, 45.095264]]]]}, "bbox": [-88.428102, 44.965796, -87.490151, 45.795393]}, {"id": "55079", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.89209, 43.192044], [-87.88857, 43.187795], [-87.887586, 43.186608], [-87.886266, 43.183359], [-87.884878, 43.179944], [-87.884872, 43.179929], [-87.884769, 43.179674], [-87.881085, 43.170609], [-87.88638, 43.160255], [-87.888849, 43.155429], [-87.889327, 43.154493], [-87.889375, 43.1544], [-87.889634, 43.153894], [-87.891059, 43.151108], [-87.892285, 43.14871], [-87.896008, 43.143405], [-87.898105, 43.140417], [-87.89902, 43.139112], [-87.900285, 43.13731], [-87.901345, 43.133357], [-87.901385, 43.13321], [-87.901359, 43.133002], [-87.900496, 43.126], [-87.900485, 43.12591], [-87.900463, 43.125874], [-87.893185, 43.114011], [-87.879169, 43.101717], [-87.877915, 43.100617], [-87.876084, 43.099011], [-87.872493, 43.08981], [-87.872362, 43.089474], [-87.872352, 43.089449], [-87.872255, 43.089199], [-87.871928, 43.088363], [-87.870459, 43.084598], [-87.866487, 43.074419], [-87.866484, 43.074412], [-87.870184, 43.064412], [-87.870217, 43.064376], [-87.87546, 43.058516], [-87.876343, 43.057529], [-87.88193, 43.051285], [-87.882069, 43.05113], [-87.882084, 43.051113], [-87.889883, 43.045834], [-87.894813, 43.042497], [-87.895028, 43.042351], [-87.895084, 43.042313], [-87.895127, 43.042152], [-87.896227, 43.038028], [-87.896598, 43.036637], [-87.898184, 43.030689], [-87.898684, 43.028813], [-87.896836, 43.02053], [-87.896647, 43.01968], [-87.896398, 43.018565], [-87.896157, 43.017486], [-87.895784, 43.015814], [-87.893511, 43.011521], [-87.889342, 43.003647], [-87.889095, 43.003181], [-87.888804, 43.002631], [-87.887789, 43.000715], [-87.887703, 43.000552], [-87.887683, 43.000514], [-87.878683, 42.992415], [-87.857182, 42.978015], [-87.845181, 42.962015], [-87.844739, 42.958848], [-87.843835, 42.952375], [-87.843575, 42.950519], [-87.842786, 42.944865], [-87.84276, 42.944679], [-87.842681, 42.944116], [-87.844578, 42.923688], [-87.846708, 42.900756], [-87.847745, 42.889595], [-87.84778, 42.889216], [-87.845811, 42.884256], [-87.834879, 42.856717], [-87.831176, 42.849886], [-87.827021, 42.842222], [-88.069924, 42.843323], [-88.069249, 42.959104], [-88.069098, 42.966397], [-88.068978, 42.967369], [-88.068817, 42.972832], [-88.068887, 42.973666], [-88.068588, 42.979814], [-88.06862, 42.98096], [-88.063353, 43.192117], [-87.994288, 43.19255], [-87.917643, 43.192105], [-87.914486, 43.192208], [-87.904786, 43.192108], [-87.899385, 43.192206], [-87.892886, 43.192008], [-87.89209, 43.192044]]]}, "bbox": [-88.069924, 42.842222, -87.827021, 43.19255]}, {"id": "55085", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-90.043414, 45.555082], [-90.043309, 45.730053], [-90.044358, 45.749992], [-90.042854, 45.897151], [-89.300631, 45.901464], [-89.300849, 45.860903], [-89.175245, 45.856579], [-89.178269, 45.899395], [-89.047481, 45.895359], [-89.047159, 45.640801], [-89.046781, 45.637517], [-89.046315, 45.464762], [-89.364049, 45.469886], [-89.424824, 45.467257], [-89.428258, 45.555353], [-90.043414, 45.555082]]]}, "bbox": [-90.044358, 45.464762, -89.046315, 45.901464]}, {"id": "55089", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.911512, 43.248064], [-87.910172, 43.236634], [-87.910087, 43.235907], [-87.897331, 43.200046], [-87.897326, 43.200031], [-87.897316, 43.200003], [-87.897125, 43.199468], [-87.896286, 43.197108], [-87.895554, 43.196225], [-87.89209, 43.192044], [-87.892886, 43.192008], [-87.899385, 43.192206], [-87.904786, 43.192108], [-87.914486, 43.192208], [-87.917643, 43.192105], [-87.994288, 43.19255], [-88.063353, 43.192117], [-88.040528, 43.542361], [-87.794321, 43.543034], [-87.797608, 43.52731], [-87.797336, 43.510623], [-87.793239, 43.492783], [-87.807799, 43.461136], [-87.827319, 43.434849], [-87.855608, 43.405441], [-87.865048, 43.39357], [-87.867504, 43.389158], [-87.869099, 43.386295], [-87.872504, 43.380178], [-87.877448, 43.369235], [-87.882392, 43.352099], [-87.888122, 43.314731], [-87.888312, 43.313489], [-87.888314, 43.313476], [-87.888328, 43.313388], [-87.888335, 43.313342], [-87.888342, 43.313294], [-87.889207, 43.307652], [-87.897813, 43.291628], [-87.900255, 43.287081], [-87.901847, 43.284117], [-87.902967, 43.280319], [-87.903094, 43.279887], [-87.903141, 43.279728], [-87.903451, 43.278676], [-87.904251, 43.275962], [-87.906465, 43.268454], [-87.906483, 43.268393], [-87.906502, 43.26833], [-87.906565, 43.268115], [-87.906583, 43.268055], [-87.906599, 43.268002], [-87.906605, 43.26798], [-87.906611, 43.26796], [-87.907289, 43.265661], [-87.907291, 43.265653], [-87.907306, 43.265604], [-87.909053, 43.259678], [-87.910345, 43.255296], [-87.911787, 43.250406], [-87.911512, 43.248064]]]}, "bbox": [-88.063353, 43.192008, -87.793239, 43.543034]}, {"id": "55097", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.59798, 44.245725], [-89.724746, 44.247678], [-89.726622, 44.511191], [-89.84441, 44.511542], [-89.844931, 44.684945], [-89.223745, 44.681365], [-89.224892, 44.243546], [-89.59798, 44.245725]]]}, "bbox": [-89.844931, 44.243546, -89.223745, 44.684945]}, {"id": "55101", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.827021, 42.842222], [-87.825352, 42.839144], [-87.824, 42.836649], [-87.823278, 42.835318], [-87.822324, 42.834371], [-87.804033, 42.816205], [-87.803773, 42.815948], [-87.796201, 42.808428], [-87.793976, 42.806218], [-87.789953, 42.803691], [-87.786291, 42.801391], [-87.785936, 42.801168], [-87.773699, 42.793481], [-87.773623, 42.793388], [-87.766675, 42.784896], [-87.769774, 42.773719], [-87.77134, 42.771687], [-87.777432, 42.763781], [-87.778174, 42.762819], [-87.778774, 42.760556], [-87.780782, 42.752973], [-87.781016, 42.75209], [-87.781949, 42.74857], [-87.782174, 42.747719], [-87.781849, 42.745847], [-87.781655, 42.744733], [-87.781642, 42.744656], [-87.781333, 42.742879], [-87.779527, 42.732482], [-87.778824, 42.728432], [-87.778627, 42.727299], [-87.78032, 42.718679], [-87.782023, 42.710008], [-87.782374, 42.708219], [-87.783489, 42.705164], [-87.784015, 42.70372], [-87.785074, 42.700819], [-87.786774, 42.700719], [-87.794874, 42.689919], [-87.802377, 42.676651], [-87.802876, 42.675768], [-87.802989, 42.675569], [-87.803028, 42.675501], [-87.803074, 42.675419], [-87.803127, 42.675276], [-87.805421, 42.669067], [-87.805768, 42.668128], [-88.188306, 42.669709], [-88.188173, 42.611456], [-88.305891, 42.610817], [-88.306384, 42.842095], [-88.245499, 42.841356], [-88.069924, 42.843323], [-87.827021, 42.842222]]]}, "bbox": [-88.306384, 42.610817, -87.766675, 42.843323]}, {"id": "55105", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.777137, 42.834488], [-88.776496, 42.49402], [-88.940388, 42.495046], [-88.940391, 42.495046], [-88.943264, 42.495114], [-88.992659, 42.496025], [-88.992977, 42.496026], [-89.013667, 42.496087], [-89.013804, 42.496097], [-89.042898, 42.496255], [-89.071141, 42.496208], [-89.099012, 42.496499], [-89.116949, 42.49691], [-89.120365, 42.496992], [-89.125111, 42.496957], [-89.164905, 42.497347], [-89.166728, 42.497256], [-89.22627, 42.497957], [-89.228279, 42.498047], [-89.246972, 42.49813], [-89.250759, 42.497994], [-89.290896, 42.498853], [-89.361561, 42.500012], [-89.366031, 42.500274], [-89.369127, 42.845046], [-89.013489, 42.847347], [-88.777076, 42.842694], [-88.777137, 42.834488]]]}, "bbox": [-89.369127, 42.49402, -88.776496, 42.847347]}, {"id": "55117", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-87.731322, 43.892184], [-87.733735, 43.88634], [-87.734457, 43.88459], [-87.735436, 43.882219], [-87.736178, 43.880421], [-87.736017, 43.873721], [-87.734881, 43.87043], [-87.728698, 43.852524], [-87.728728, 43.851833], [-87.729217, 43.840582], [-87.7296, 43.831782], [-87.727686, 43.818989], [-87.726772, 43.812885], [-87.726408, 43.810454], [-87.726407, 43.810445], [-87.726405, 43.810442], [-87.700251, 43.76735], [-87.700245, 43.767129], [-87.70009, 43.76159], [-87.700085, 43.761395], [-87.702985, 43.749695], [-87.703047, 43.749565], [-87.70463, 43.746256], [-87.705185, 43.745095], [-87.708167, 43.742979], [-87.708285, 43.742895], [-87.708321, 43.742737], [-87.709885, 43.735795], [-87.708185, 43.722895], [-87.707923, 43.722064], [-87.703144, 43.706901], [-87.702985, 43.706395], [-87.702685, 43.687596], [-87.703671, 43.685339], [-87.706204, 43.679542], [-87.706242, 43.679488], [-87.72646, 43.650462], [-87.733622, 43.640181], [-87.734312, 43.63919], [-87.735065, 43.638217], [-87.735489, 43.637668], [-87.735972, 43.637044], [-87.736146, 43.636819], [-87.737859, 43.634604], [-87.738638, 43.633597], [-87.742485, 43.628622], [-87.742522, 43.628574], [-87.780175, 43.579889], [-87.781255, 43.578493], [-87.782271, 43.576726], [-87.789105, 43.564844], [-87.790135, 43.563054], [-87.790277, 43.562376], [-87.793075, 43.54899], [-87.794321, 43.543034], [-88.040528, 43.542361], [-88.160873, 43.542943], [-88.162274, 43.891511], [-88.041794, 43.891692], [-87.731322, 43.892184]]]}, "bbox": [-88.162274, 43.542361, -87.700085, 43.892184]}, {"id": "55133", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-88.542026, 42.93094], [-88.539619, 43.107605], [-88.535843, 43.196048], [-88.417987, 43.194697], [-88.063353, 43.192117], [-88.06862, 42.98096], [-88.068588, 42.979814], [-88.068887, 42.973666], [-88.068817, 42.972832], [-88.068978, 42.967369], [-88.069098, 42.966397], [-88.069249, 42.959104], [-88.069924, 42.843323], [-88.245499, 42.841356], [-88.306384, 42.842095], [-88.531228, 42.842719], [-88.541535, 42.842996], [-88.542026, 42.93094]]]}, "bbox": [-88.542026, 42.841356, -88.063353, 43.196048]}, {"id": "55141", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-89.902565, 44.24947], [-90.312035, 44.248758], [-90.31605, 44.424673], [-90.316253, 44.685154], [-89.844931, 44.684945], [-89.84441, 44.511542], [-89.726622, 44.511191], [-89.724746, 44.247678], [-89.726235, 44.247943], [-89.902565, 44.24947]]]}, "bbox": [-90.316253, 44.247678, -89.724746, 44.685154]}, {"id": "56005", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-105.076607, 45.000347], [-105.082181, 44.176175], [-105.079281, 44.176182], [-105.079797, 43.498445], [-106.017366, 43.494969], [-106.009201, 43.821579], [-106.016504, 44.169729], [-106.009676, 44.563981], [-106.024814, 44.993688], [-105.928184, 44.993647], [-105.918995, 44.997771], [-105.848065, 45.000396], [-105.076607, 45.000347]]]}, "bbox": [-106.024814, 43.494969, -105.076607, 45.000396]}, {"id": "56021", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-104.653338, 41.653007], [-104.652992, 41.565014], [-104.05254, 41.564274], [-104.052531, 41.552723], [-104.052584, 41.55265], [-104.052692, 41.541154], [-104.052686, 41.539111], [-104.052476, 41.522343], [-104.052478, 41.515754], [-104.05234, 41.417865], [-104.05216, 41.407662], [-104.052287, 41.393307], [-104.052287, 41.393214], [-104.052324, 41.321144], [-104.052476, 41.320961], [-104.052568, 41.316202], [-104.052453, 41.278202], [-104.052574, 41.278019], [-104.052666, 41.275251], [-104.053142, 41.114457], [-104.053083, 41.104985], [-104.053025, 41.090274], [-104.053177, 41.089725], [-104.053097, 41.018045], [-104.053158, 41.016809], [-104.053249, 41.001406], [-104.066961, 41.001504], [-104.086068, 41.001563], [-104.10459, 41.001543], [-104.123586, 41.001626], [-104.211473, 41.001591], [-104.214191, 41.001568], [-104.214692, 41.001657], [-104.497058, 41.001805], [-104.497149, 41.001828], [-104.882452, 40.998186], [-104.943371, 40.99819], [-105.254779, 40.99821], [-105.256527, 40.998191], [-105.27686, 40.998173], [-105.278236, 41.656655], [-104.653338, 41.653007]]]}, "bbox": [-105.278236, 40.998173, -104.05216, 41.656655]}, {"id": "56025", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-106.075852, 42.433218], [-106.654781, 42.431094], [-107.522923, 42.434356], [-107.542025, 42.434356], [-107.543526, 42.781558], [-107.501425, 42.781458], [-107.502327, 43.12806], [-107.516728, 43.12796], [-107.517031, 43.472659], [-107.535032, 43.472759], [-107.534897, 43.501362], [-107.110734, 43.500286], [-107.11092, 43.492362], [-106.078068, 43.494471], [-106.072669, 42.778165], [-106.075852, 42.433218]]]}, "bbox": [-107.543526, 42.431094, -106.072669, 43.501362]}, {"id": "56029", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-110.053179, 44.008022], [-110.053357, 44.132628], [-110.119193, 44.132584], [-110.111284, 44.199375], [-110.1511, 44.292464], [-110.296648, 44.431341], [-110.29485, 44.546923], [-110.375334, 44.583016], [-110.667899, 44.582792], [-110.667867, 44.666291], [-111.055495, 44.666262], [-111.056888, 44.866658], [-111.055629, 44.933578], [-111.056207, 44.935901], [-111.044275, 45.001345], [-110.875772, 45.002101], [-110.750767, 44.997948], [-110.705272, 44.992324], [-110.552433, 44.992237], [-110.547165, 44.992459], [-110.221343, 44.996176], [-110.110103, 45.003905], [-110.026347, 45.003665], [-110.025544, 45.003602], [-109.798687, 45.002188], [-109.269294, 45.005283], [-109.263431, 45.005345], [-109.103445, 45.005904], [-109.08301, 44.99961], [-109.062262, 44.999623], [-108.621313, 45.000408], [-108.592296, 44.871444], [-108.592494, 44.52093], [-108.57342, 44.520811], [-108.573797, 44.168468], [-108.550562, 44.168455], [-108.550758, 44.079403], [-108.792277, 44.079616], [-108.791779, 43.991053], [-108.915985, 43.990854], [-108.912783, 43.904754], [-109.092878, 43.904474], [-109.093603, 43.817619], [-109.312949, 43.813293], [-109.542332, 43.961352], [-109.641808, 43.922785], [-109.665893, 43.845726], [-109.7899, 43.803252], [-109.843455, 43.819864], [-109.816179, 43.881974], [-109.858754, 43.957988], [-109.990073, 43.949066], [-110.053179, 44.008022]]]}, "bbox": [-111.056888, 43.803252, -108.550562, 45.005904]}, {"id": "56037", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-110.048, 41.578015], [-110.053708, 42.270744], [-109.496675, 42.263318], [-109.043864, 42.263684], [-108.375655, 42.263672], [-107.522722, 42.261756], [-107.503821, 42.087957], [-107.50972, 41.657452], [-107.929736, 41.659596], [-107.918421, 41.002036], [-108.250649, 41.000114], [-109.050076, 41.000659], [-109.207383, 41.001459], [-109.676421, 40.998395], [-109.713877, 40.998266], [-109.715409, 40.998191], [-109.854302, 40.997661], [-109.855299, 40.997614], [-109.999838, 40.99733], [-110.000708, 40.997352], [-110.048474, 40.997103], [-110.048, 41.578015]]]}, "bbox": [-110.053708, 40.997103, -107.503821, 42.270744]}, {"id": "56041", "type": "Feature", "properties": {}, "geometry": {"type": "Polygon", "coordinates": [[[-111.046402, 41.579845], [-110.062787, 41.577519], [-110.048, 41.578015], [-110.048474, 40.997103], [-110.500718, 40.994746], [-111.046723, 40.997959], [-111.046551, 41.251716], [-111.0466, 41.360692], [-111.046264, 41.377731], [-111.046402, 41.579845]]]}, "bbox": [-111.046723, 40.994746, -110.048, 41.579845]}], "bbox": [-124.479344, 25.139115, -67.763767, 49.002357]}'
In [179]:
fig = px.choropleth(df_wide_geom, geojson=counties2, locations=df_wide_geom.index, 
                    color='% ASC Procedures: 2019',
                    color_continuous_scale="Viridis",
                    #range_color=(0, 12),
                    scope="usa",
                    #facet_col="Moran I score for ACS billing fraction",
                    labels={
                        "2013_Rural_urban_cont_code":"2013-RUCA",
                        "pop":"Pop.",
                        "Average Age":"Mean Age",
                        "Percent Male":"% M",
                        "tot_ratio":"Tot. Ratio",
                        },
                    )

fig.update_layout(
    hoverlabel=dict(
        bgcolor="white",
        font_size=16,
        font_family="Rockwell",
        align="auto"
    )
)
fig.update_layout(legend=dict(
    orientation="h",
    yanchor="bottom",
    y=1.02,
    xanchor="right",
    x=1
))

# Define layout specificities
fig.update_layout(
    margin={"r":0,"t":0,"l":0,"b":0},
    title={
        'text': f"% ASC Procedures 2019",
        'y':0.95,
        'x':0.5,
        'xanchor': 'center',
        'yanchor': 'top'
    }
)
fig.show()


#save_figure(fig,"choropleth-total")
In [182]:
fig = px.choropleth(df_wide_geom, geojson=df_wide_geom.geometry, locations=df_wide_geom.index, 
                    color='% ASC Billing',
                    color_continuous_scale="Viridis",
                    #range_color=(0, 12),
                    scope="usa",
                    #facet_col="Moran I score for ACS billing fraction",
                    labels={
                        "2013_Rural_urban_cont_code":"2013-RUCA",
                        "pop":"Pop.",
                        "Average Age":"Mean Age",
                        "Percent Male":"% M",
                        "tot_ratio":"Tot. Ratio",
                        },
                    )

fig.update_layout(
    hoverlabel=dict(
        bgcolor="white",
        font_size=16,
        font_family="Rockwell",
        align="auto"
    )
)
fig.update_layout(legend=dict(
    orientation="h",
    yanchor="bottom",
    y=1.02,
    xanchor="right",
    x=1
))

# Define layout specificities
fig.update_layout(
    margin={"r":0,"t":0,"l":0,"b":0},
    title={
        'text': f"% ASC Billing",
        'y':0.95,
        'x':0.5,
        'xanchor': 'center',
        'yanchor': 'top'
    }
)
fig.show()


#save_figure(fig,"choropleth-total")
In [97]:
fig = px.choropleth(df_wide_geom,
                   geojson=df_wide_geom.to_json(),
                   locations=df_wide_geom.id,
                   color="% ASC Billing",
                    scope="usa",
                   #projection="mercator"
                   )
fig.update_geos(fitbounds="locations", visible=True)
fig.show()
In [64]:
df_wide_geom.info()
<class 'geopandas.geodataframe.GeoDataFrame'>
Int64Index: 941 entries, 0 to 940
Data columns (total 88 columns):
 #   Column                                              Non-Null Count  Dtype   
---  ------                                              --------------  -----   
 0   id                                                  941 non-null    object  
 1   GEO_ID                                              941 non-null    object  
 2   STATE                                               941 non-null    object  
 3   COUNTY                                              941 non-null    object  
 4   NAME                                                941 non-null    object  
 5   LSAD                                                941 non-null    object  
 6   CENSUSAREA                                          941 non-null    float64 
 7   geometry                                            941 non-null    geometry
 8   FIPS                                                941 non-null    object  
 9   County_St                                           941 non-null    object  
 10  Total Number of Services                            941 non-null    float64 
 11  Total Medicare Payment Amount                       941 non-null    float64 
 12  Total Number of Services: 2019                      941 non-null    float64 
 13  Total Medicare Payment Amount: 2019                 941 non-null    float64 
 14  Total Number of Services: 2018                      941 non-null    float64 
 15  Total Medicare Payment Amount: 2018                 941 non-null    float64 
 16  Total Number of Services: 2017                      941 non-null    float64 
 17  Total Medicare Payment Amount: 2017                 941 non-null    float64 
 18  Total Number of Services: 2016                      941 non-null    float64 
 19  Total Medicare Payment Amount: 2016                 941 non-null    float64 
 20  Total Number of Services: 2015                      941 non-null    float64 
 21  Total Medicare Payment Amount: 2015                 941 non-null    float64 
 22  tot_ratio                                           941 non-null    float64 
 23  % ASC Procedures: 2019                              941 non-null    float64 
 24  % ASC Billing: 2019                                 941 non-null    float64 
 25  % ASC Procedures: 2018                              941 non-null    float64 
 26  % ASC Billing: 2018                                 941 non-null    float64 
 27  % ASC Procedures: 2017                              941 non-null    float64 
 28  % ASC Billing: 2017                                 941 non-null    float64 
 29  % ASC Procedures: 2016                              941 non-null    float64 
 30  % ASC Billing: 2016                                 941 non-null    float64 
 31  % ASC Procedures: 2015                              941 non-null    float64 
 32  % ASC Billing: 2015                                 941 non-null    float64 
 33  % ASC Procedures                                    941 non-null    float64 
 34  % ASC Billing                                       941 non-null    float64 
 35  Beneficiaries with Part A and Part B                941 non-null    float64 
 36  Average Age                                         941 non-null    float64 
 37  Percent Male                                        941 non-null    float64 
 38  Percent Non-Hispanic White                          941 non-null    float64 
 39  Percent African American                            941 non-null    float64 
 40  Percent Hispanic                                    941 non-null    float64 
 41  Percent Eligible for Medicaid                       941 non-null    float64 
 42  Average HCC Score                                   941 non-null    float64 
 43  Hospital Readmission Rate                           941 non-null    float64 
 44  Emergency Department Visits per 1000 Beneficiaries  941 non-null    float64 
 45  Procedures Per Capita Standardized Costs            941 non-null    float64 
 46  Procedure Events Per 1000 Beneficiaries             941 non-null    float64 
 47  metro                                               941 non-null    int64   
 48  pct_poverty                                         941 non-null    float64 
 49  median_house_income                                 941 non-null    float64 
 50  pop                                                 941 non-null    float64 
 51  2013_Rural_urban_cont_code                          941 non-null    float64 
 52  Pct_wthout_high_diploma                             941 non-null    float64 
 53  Pct_wth_high_diploma                                941 non-null    float64 
 54  Pct_wth_some_coll                                   941 non-null    float64 
 55  Pct_wth_coll_degree                                 941 non-null    float64 
 56  unemployment                                        941 non-null    float64 
 57  pct_uninsured                                       941 non-null    float64 
 58  fibro                                               941 non-null    float64 
 59  tabacco                                             941 non-null    float64 
 60  obesity                                             941 non-null    float64 
 61  migrane                                             941 non-null    float64 
 62  Alzheimers                                          941 non-null    float64 
 63  Depression                                          941 non-null    float64 
 64  Alcohol Abuse                                       941 non-null    float64 
 65  Drug Abuse                                          941 non-null    float64 
 66  Schizo_othr_psych                                   941 non-null    float64 
 67  COPD                                                941 non-null    float64 
 68  Chronic Kidney Disease                              941 non-null    float64 
 69  Osteoporosis                                        941 non-null    float64 
 70  Stroke                                              941 non-null    float64 
 71  Diabetes                                            941 non-null    float64 
 72  Asthma                                              941 non-null    float64 
 73  Arthritis                                           941 non-null    float64 
 74  Hypertension                                        941 non-null    float64 
 75  Heart Failure                                       941 non-null    float64 
 76  Ischemic Heart Disease                              941 non-null    float64 
 77  Population Density                                  941 non-null    float64 
 78  Medicare Population Density                         941 non-null    float64 
 79  Moran I score for ACS billing fraction              941 non-null    object  
 80  County                                              941 non-null    object  
 81  StateFIPS                                           941 non-null    object  
 82  CountyFIPS_3                                        941 non-null    object  
 83  CountyName                                          941 non-null    object  
 84  StateName                                           941 non-null    object  
 85  CountyFIPS                                          941 non-null    object  
 86  StateAbbr                                           941 non-null    object  
 87  STATE_COUNTY                                        941 non-null    object  
dtypes: float64(69), geometry(1), int64(1), object(17)
memory usage: 654.3+ KB
In [63]:
geo_df.info()
<class 'geopandas.geodataframe.GeoDataFrame'>
Index: 57 entries, 11-Sault-au-Récollet to 194-Parc-Extension
Data columns (total 8 columns):
 #   Column       Non-Null Count  Dtype   
---  ------       --------------  -----   
 0   geometry     57 non-null     geometry
 1   Coderre      57 non-null     int64   
 2   Bergeron     57 non-null     int64   
 3   Joly         57 non-null     int64   
 4   total        57 non-null     int64   
 5   winner       57 non-null     object  
 6   result       57 non-null     object  
 7   district_id  57 non-null     int64   
dtypes: geometry(1), int64(5), object(2)
memory usage: 4.0+ KB
In [119]:
geo_df.geometry
Out[119]:
district
11-Sault-au-Récollet                                   MULTIPOLYGON (((-73.63632 45.57592, -73.63628 ...
12-Saint-Sulpice                                       POLYGON ((-73.62175 45.55448, -73.62350 45.553...
13-Ahuntsic                                            POLYGON ((-73.65132 45.55457, -73.65687 45.545...
14-Bordeaux-Cartierville                               POLYGON ((-73.70430 45.54419, -73.70421 45.543...
21-Ouest                                               POLYGON ((-73.55769 45.59322, -73.56942 45.597...
22-Est                                                 POLYGON ((-73.54528 45.59596, -73.54910 45.597...
23-Centre                                              POLYGON ((-73.55769 45.59322, -73.55646 45.595...
31-Darlington                                          POLYGON ((-73.62076 45.51390, -73.62366 45.510...
32-Côte-des-Neiges                                     POLYGON ((-73.59561 45.50406, -73.59414 45.503...
33-Snowdon                                             POLYGON ((-73.64581 45.50163, -73.64804 45.499...
34-Notre-Dame-de-Grâce                                 POLYGON ((-73.61436 45.48359, -73.61240 45.482...
35-Loyola                                              POLYGON ((-73.61570 45.46329, -73.61824 45.462...
41-du Canal                                            POLYGON ((-73.68278 45.46357, -73.68090 45.462...
42-J.-Émery-Provost                                    POLYGON ((-73.69224 45.43975, -73.69306 45.445...
43-Fort-Rolland                                        POLYGON ((-73.69297 45.44796, -73.69306 45.445...
51-Sault-Saint-Louis                                   MULTIPOLYGON (((-73.58789 45.42147, -73.58637 ...
52-Cecil-P.-Newman                                     POLYGON ((-73.63735 45.41543, -73.63985 45.415...
61-Pierre-Foretier                                     POLYGON ((-73.86890 45.48824, -73.87160 45.490...
62-Denis-Benjamin-Viger                                POLYGON ((-73.87160 45.49057, -73.87581 45.494...
63-Jacques-Bizard                                      MULTIPOLYGON (((-73.87618 45.48446, -73.87486 ...
64-Sainte-Geneviève                                    MULTIPOLYGON (((-73.87953 45.47217, -73.87703 ...
71-Tétreaultville                                      POLYGON ((-73.50585 45.59151, -73.51034 45.592...
72-MaisonneuveLongue-Pointe                            POLYGON ((-73.50585 45.59151, -73.50523 45.591...
73-Hochelaga                                           POLYGON ((-73.52692 45.54945, -73.52896 45.547...
74-Louis-Riel                                          POLYGON ((-73.54550 45.59563, -73.54236 45.594...
81-Marie-Clarac                                        POLYGON ((-73.62024 45.59512, -73.62962 45.583...
82-Ovide-Clermont                                      POLYGON ((-73.60289 45.61122, -73.60411 45.610...
91-Claude-Ryan                                         POLYGON ((-73.59899 45.51604, -73.59866 45.516...
92-Joseph-Beaubien                                     POLYGON ((-73.59899 45.51604, -73.60447 45.515...
93-Robert-Bourassa                                     POLYGON ((-73.59561 45.50406, -73.59878 45.505...
94-Jeanne-Sauvé                                        POLYGON ((-73.61796 45.51217, -73.61766 45.512...
101-Bois-de-Liesse                                     MULTIPOLYGON (((-73.81877 45.51408, -73.81824 ...
102-Cap-Saint-Jacques                                  MULTIPOLYGON (((-73.84617 45.48899, -73.85053 ...
111-Mile-End                                           POLYGON ((-73.57920 45.52801, -73.58151 45.525...
113-Jeanne-Mance                                       POLYGON ((-73.57348 45.50497, -73.58011 45.508...
121-La Pointe-aux-Prairies                             POLYGON ((-73.48690 45.66682, -73.49093 45.667...
122-Pointe-aux-Trembles                                POLYGON ((-73.54474 45.64822, -73.54419 45.648...
123-Rivière-des-Prairies                               POLYGON ((-73.56530 45.63620, -73.56834 45.634...
131-Saint-Édouard                                      POLYGON ((-73.58647 45.53847, -73.58627 45.538...
132-Étienne-Desmarteau                                 POLYGON ((-73.58647 45.53847, -73.60354 45.546...
133-Vieux-Rosemont                                     POLYGON ((-73.55923 45.53990, -73.57358 45.541...
134-Marie-Victorin                                     POLYGON ((-73.56947 45.58166, -73.56838 45.581...
141-Côte-de-Liesse                                     POLYGON ((-73.70912 45.52310, -73.69189 45.512...
142-Norman-McLaren                                     POLYGON ((-73.65103 45.52639, -73.65296 45.522...
151-Saint-Léonard-Est                                  POLYGON ((-73.56966 45.59658, -73.56874 45.594...
152-Saint-Léonard-Ouest                                POLYGON ((-73.56947 45.58166, -73.57055 45.581...
161-Saint-HenriPetite-BourgognePointe-Saint-Charles    POLYGON ((-73.53908 45.48834, -73.53774 45.486...
162-Saint-PaulÉmard                                    POLYGON ((-73.58040 45.46072, -73.58038 45.458...
171-ChamplainL'Île-des-Soeurs                          MULTIPOLYGON (((-73.56168 45.45703, -73.56365 ...
172-Desmarchais-Crawford                               POLYGON ((-73.58379 45.43500, -73.59937 45.437...
181-Peter-McGill                                       POLYGON ((-73.57348 45.50497, -73.56743 45.501...
182-Saint-Jacques                                      POLYGON ((-73.54488 45.51919, -73.54644 45.516...
183-Sainte-Marie                                       MULTIPOLYGON (((-73.52741 45.52351, -73.52518 ...
191-Saint-Michel                                       POLYGON ((-73.59864 45.57146, -73.60271 45.566...
192-François-Perrault                                  POLYGON ((-73.58715 45.56641, -73.58631 45.566...
193-Villeray                                           POLYGON ((-73.61686 45.53570, -73.61892 45.536...
194-Parc-Extension                                     POLYGON ((-73.61709 45.52772, -73.61724 45.527...
Name: geometry, dtype: geometry
In [121]:
import plotly.express as px
import geopandas as gpd

df = px.data.election()
geo_df = gpd.GeoDataFrame.from_features(
    px.data.election_geojson()["features"]
).merge(df, on="district") #.set_index("district")

fig = px.choropleth(geo_df,
                   geojson=geo_df.geometry,
                   locations=geo_df.index,
                   color="Joly",
                   projection="mercator")
fig.update_geos(fitbounds="locations", visible=True)
fig.show()
In [96]:
geojson = px.data.election_geojson()
df = px.data.election()
geo_df = gpd.GeoDataFrame.from_features(
    px.data.election_geojson()["features"]
).merge(df, on="district").set_index("district")

fig = px.choropleth(geo_df, geojson=geojson, color="winner",
                    locations=geo_df.index, featureidkey="properties.district",
                    projection="mercator", hover_data=["Bergeron", "Coderre", "Joly"]
                   )
fig.update_geos(fitbounds="locations", visible=True)
fig.update_layout(margin={"r":0,"t":0,"l":0,"b":0})
fig.show()
In [91]:
geojson
Out[91]:
{'type': 'FeatureCollection',
 'features': [{'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.6363215300962, 45.5759177646435],
       [-73.6362833815582, 45.5758266113331],
       [-73.6446417578686, 45.5658132919643],
       [-73.6453511352974, 45.5647725775888],
       [-73.648867564748, 45.5586898267402],
       [-73.6513170845065, 45.5545659435652],
       [-73.6515658357324, 45.5554439857955],
       [-73.6660837831645, 45.5596724837829],
       [-73.6706609041685, 45.5610978251999],
       [-73.6676019919116, 45.5632340862888],
       [-73.6645385824068, 45.5642716484367],
       [-73.663663123697, 45.5654269638586],
       [-73.663336397858, 45.5666288247853],
       [-73.6637764768649, 45.5678900619231],
       [-73.6625073244826, 45.5688479494114],
       [-73.6624620526633, 45.5708304456346],
       [-73.6620201425015, 45.5713925326191],
       [-73.6616100197742, 45.5737924780218],
       [-73.6612199500215, 45.5747171555678],
       [-73.6625087613399, 45.5748980132699],
       [-73.6639172423219, 45.5730041908097],
       [-73.6654358660443, 45.5729040009532],
       [-73.6661069174428, 45.5737928224235],
       [-73.6657870687343, 45.574385118162],
       [-73.6636711124334, 45.577018676761],
       [-73.6620928771361, 45.578161887933],
       [-73.6611738698168, 45.5798517041392],
       [-73.660404649744, 45.5806752214364],
       [-73.659760079306, 45.5804007503503],
       [-73.6604711314507, 45.5793767269523],
       [-73.660479658497, 45.5787710701802],
       [-73.6613549575147, 45.5780184952852],
       [-73.6617871566128, 45.5758213640561],
       [-73.6607445476436, 45.5764832852254],
       [-73.6608243059909, 45.5774702934068],
       [-73.6592236423267, 45.5793785624903],
       [-73.6570262958283, 45.5810509513563],
       [-73.6552694168748, 45.5819333817794],
       [-73.6543058972308, 45.5836262624158],
       [-73.652557313063, 45.5826892716542],
       [-73.6363215300962, 45.5759177646435]]],
     [[[-73.6561004885273, 45.5841347974261],
       [-73.656376117147, 45.5845383929424],
       [-73.6559939844354, 45.585868003125],
       [-73.6552168328229, 45.5855392416017],
       [-73.6561004885273, 45.5841347974261]]]]},
   'properties': {'district': '11-Sault-au-Récollet'},
   'id': '11'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6217484540132, 45.5544783077209],
      [-73.6235005117779, 45.5536358848324],
      [-73.6278096771011, 45.5513024018691],
      [-73.6301686544477, 45.5503989164938],
      [-73.6325600663803, 45.5499795021129],
      [-73.6342899238824, 45.5494628161417],
      [-73.6363671046978, 45.548169415833],
      [-73.6398673671325, 45.5441488267699],
      [-73.6407295659042, 45.5429686686779],
      [-73.6485543103777, 45.5308320827376],
      [-73.6510270564502, 45.5263874543882],
      [-73.6555330494037, 45.5277342274232],
      [-73.6698852350516, 45.5318835785726],
      [-73.6726124365382, 45.5322997327559],
      [-73.6747555535799, 45.5323081056009],
      [-73.6764129283619, 45.5321264506516],
      [-73.683124268159, 45.5305991300384],
      [-73.6807721370907, 45.534331320177],
      [-73.6785046215606, 45.5379069417581],
      [-73.6752852955733, 45.5369404343695],
      [-73.6740837310465, 45.5378868187786],
      [-73.6687347480061, 45.5363337408676],
      [-73.667891862525, 45.5387409623539],
      [-73.664945183105, 45.5382590909533],
      [-73.6646235398403, 45.5394847807605],
      [-73.662249203322, 45.543633408253],
      [-73.6616100449503, 45.5441416421638],
      [-73.6604302515405, 45.5460790656787],
      [-73.6568659704249, 45.5450525873044],
      [-73.6513170845065, 45.5545659435652],
      [-73.648867564748, 45.5586898267402],
      [-73.6453511352974, 45.5647725775888],
      [-73.6240413737876, 45.5555253903511],
      [-73.6217484540132, 45.5544783077209]]]},
   'properties': {'district': '12-Saint-Sulpice'},
   'id': '12'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6513170845065, 45.5545659435652],
      [-73.6568659704249, 45.5450525873044],
      [-73.6604302515405, 45.5460790656787],
      [-73.6616100449503, 45.5441416421638],
      [-73.662249203322, 45.543633408253],
      [-73.6646235398403, 45.5394847807605],
      [-73.664945183105, 45.5382590909533],
      [-73.667891862525, 45.5387409623539],
      [-73.6687347480061, 45.5363337408676],
      [-73.6740837310465, 45.5378868187786],
      [-73.6752852955733, 45.5369404343695],
      [-73.6785046215606, 45.5379069417581],
      [-73.6807721370907, 45.534331320177],
      [-73.6920199187781, 45.5394683031028],
      [-73.702520410412, 45.5431766227664],
      [-73.7042065154565, 45.5438906316964],
      [-73.7043014929187, 45.5441905861876],
      [-73.7027027602765, 45.5451406840713],
      [-73.7023335988111, 45.5457621950639],
      [-73.7012226911876, 45.5459702396396],
      [-73.7004635154173, 45.5466167282154],
      [-73.6996123824321, 45.5464852570484],
      [-73.6992033294858, 45.5475781625301],
      [-73.6968595536907, 45.5481581755357],
      [-73.6949311086011, 45.5474604427764],
      [-73.6924688517172, 45.5472280284581],
      [-73.6891281157722, 45.5477334249253],
      [-73.6879273316976, 45.5481318231022],
      [-73.6865595013798, 45.5491308196528],
      [-73.6852748086046, 45.5488162600605],
      [-73.6827845213391, 45.5489146412483],
      [-73.6801283681886, 45.549462773374],
      [-73.6791182211476, 45.5500801562043],
      [-73.6772981030339, 45.5516675115113],
      [-73.6765545558035, 45.552766523393],
      [-73.6744642269172, 45.5548591969672],
      [-73.6730096784532, 45.5582339830541],
      [-73.6706609041685, 45.5610978251999],
      [-73.6660837831645, 45.5596724837829],
      [-73.6515658357324, 45.5554439857955],
      [-73.6513170845065, 45.5545659435652]]]},
   'properties': {'district': '13-Ahuntsic'},
   'id': '13'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.7043014929187, 45.5441905861876],
      [-73.7042065154565, 45.5438906316964],
      [-73.702520410412, 45.5431766227664],
      [-73.6920199187781, 45.5394683031028],
      [-73.6807721370907, 45.534331320177],
      [-73.683124268159, 45.5305991300384],
      [-73.685195685208, 45.5301022578388],
      [-73.6870922504792, 45.5286619976995],
      [-73.6897803429098, 45.5288476157777],
      [-73.6939612003867, 45.528347826243],
      [-73.6963296087078, 45.5276805484038],
      [-73.7091218538247, 45.5230954877394],
      [-73.7112612170074, 45.5243023856458],
      [-73.7131122096208, 45.5251637887575],
      [-73.7145584630039, 45.5239315629596],
      [-73.7172924358234, 45.5256928911099],
      [-73.7185119695016, 45.5247508136954],
      [-73.7217031155859, 45.5267447688191],
      [-73.7280602953464, 45.5213554616816],
      [-73.7317546325275, 45.5236815365784],
      [-73.7358987648866, 45.5207291683311],
      [-73.7285097856203, 45.5160943522463],
      [-73.7350991221023, 45.5137867482303],
      [-73.7550630650544, 45.5065238038199],
      [-73.7551669017747, 45.5064862077527],
      [-73.7612752776246, 45.5104175090183],
      [-73.7638683329059, 45.5120860463668],
      [-73.762390301954, 45.5126791739444],
      [-73.7600609683013, 45.5141288858482],
      [-73.7568442082942, 45.5171884494623],
      [-73.7548593171474, 45.5180889539846],
      [-73.752606980088, 45.5185523798859],
      [-73.749151955166, 45.519018390863],
      [-73.7452110015187, 45.5215286261207],
      [-73.7437662661847, 45.5231373686573],
      [-73.7411211602605, 45.526837900694],
      [-73.7394306858002, 45.5285277381045],
      [-73.7360589393138, 45.5302671129156],
      [-73.7343347000828, 45.5309824138834],
      [-73.7311072638005, 45.5320095049916],
      [-73.7283844986554, 45.533203827821],
      [-73.7249729419404, 45.5359178137401],
      [-73.7231098233772, 45.5369689627545],
      [-73.7202103870331, 45.5381794076214],
      [-73.7181375140605, 45.5387109207903],
      [-73.7158043157039, 45.5388996570908],
      [-73.7135388429561, 45.5396848689224],
      [-73.7111454931799, 45.541340948266],
      [-73.7091038651233, 45.5430898357363],
      [-73.7078456046825, 45.5423008892929],
      [-73.7069875096913, 45.5436077713277],
      [-73.705614345008, 45.5441267025504],
      [-73.7043014929187, 45.5441905861876]]]},
   'properties': {'district': '14-Bordeaux-Cartierville'},
   'id': '14'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5576871015794, 45.5932166140624],
      [-73.5694206600629, 45.5971486400825],
      [-73.5696609688417, 45.5965806032278],
      [-73.5726733802096, 45.5977479911912],
      [-73.5745938220503, 45.5986717630315],
      [-73.576232424293, 45.5992577290381],
      [-73.5771288919308, 45.599852413767],
      [-73.5889961999073, 45.6050220349527],
      [-73.5971103983983, 45.6085989887758],
      [-73.6013378366857, 45.6104025414741],
      [-73.6028907661658, 45.6112216102358],
      [-73.601559767966, 45.6118073578371],
      [-73.6023660828945, 45.6125718329314],
      [-73.5984976040034, 45.6140840514745],
      [-73.5954830428467, 45.6158123480652],
      [-73.5740068269183, 45.6304929149516],
      [-73.5683379250343, 45.6341956640577],
      [-73.5514095863784, 45.6269444197056],
      [-73.5481773494253, 45.6255197854529],
      [-73.5585223912755, 45.6137280036474],
      [-73.5640615699407, 45.6074316710882],
      [-73.564986439275, 45.60561620283],
      [-73.5662995431109, 45.6039974029119],
      [-73.5631517029922, 45.6031634368599],
      [-73.5614050931716, 45.6025489377902],
      [-73.5567925816714, 45.6005393547562],
      [-73.5589887922886, 45.5979945383903],
      [-73.5595164040348, 45.5961661000645],
      [-73.5564557704867, 45.5951543577536],
      [-73.5576871015794, 45.5932166140624]]]},
   'properties': {'district': '21-Ouest'},
   'id': '21'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5452799498143, 45.5959627917351],
      [-73.5491007054645, 45.5975302159963],
      [-73.5479841638628, 45.5989434662401],
      [-73.5468145864499, 45.6013644519429],
      [-73.5461968110206, 45.6046211322422],
      [-73.549913736884, 45.605150517886],
      [-73.5533688744189, 45.605412630486],
      [-73.5524302953106, 45.6080081462088],
      [-73.5507759763854, 45.6103339985918],
      [-73.5585223912755, 45.6137280036474],
      [-73.5481773494253, 45.6255197854529],
      [-73.5358870172169, 45.620207093019],
      [-73.5374747721378, 45.6166252950092],
      [-73.5375256945614, 45.6160673327401],
      [-73.5381703589619, 45.6139517855176],
      [-73.5437218072693, 45.6149096422408],
      [-73.5452777806501, 45.6141657083913],
      [-73.5462767505068, 45.6127238289344],
      [-73.5444977198785, 45.6121760838565],
      [-73.5453373826653, 45.6107633861198],
      [-73.5441363974969, 45.6102716461918],
      [-73.5412098839782, 45.6095033241271],
      [-73.5416434070878, 45.6081797015109],
      [-73.540900931842, 45.6078533012629],
      [-73.5416213388458, 45.606939681157],
      [-73.5375401492111, 45.6052359766051],
      [-73.5365038947396, 45.6026457300995],
      [-73.5365958888719, 45.602162446611],
      [-73.5394321608651, 45.6030910243993],
      [-73.5421763850909, 45.6042454438226],
      [-73.5429289535666, 45.6032316351511],
      [-73.539729971205, 45.6018186221009],
      [-73.5407418924341, 45.6006998521118],
      [-73.5447576674512, 45.6019410417126],
      [-73.5451108447268, 45.6000061818095],
      [-73.5445859643042, 45.5999308464328],
      [-73.5442050076359, 45.5981948225546],
      [-73.5438572127564, 45.5980784963673],
      [-73.5452799498143, 45.5959627917351]]]},
   'properties': {'district': '22-Est'},
   'id': '22'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5576871015794, 45.5932166140624],
      [-73.5564557704867, 45.5951543577536],
      [-73.5595164040348, 45.5961661000645],
      [-73.5589887922886, 45.5979945383903],
      [-73.5567925816714, 45.6005393547562],
      [-73.5614050931716, 45.6025489377902],
      [-73.5631517029922, 45.6031634368599],
      [-73.5662995431109, 45.6039974029119],
      [-73.564986439275, 45.60561620283],
      [-73.5640615699407, 45.6074316710882],
      [-73.5585223912755, 45.6137280036474],
      [-73.5507759763854, 45.6103339985918],
      [-73.5524302953106, 45.6080081462088],
      [-73.5533688744189, 45.605412630486],
      [-73.549913736884, 45.605150517886],
      [-73.5461968110206, 45.6046211322422],
      [-73.5468145864499, 45.6013644519429],
      [-73.5479841638628, 45.5989434662401],
      [-73.5491007054645, 45.5975302159963],
      [-73.5452799498143, 45.5959627917351],
      [-73.5455045323429, 45.5956272275911],
      [-73.545930102715, 45.5949937733284],
      [-73.5473484500099, 45.5955355370728],
      [-73.5481396292151, 45.5946360429193],
      [-73.5465394629102, 45.5940712033384],
      [-73.5489394765731, 45.5903029802044],
      [-73.5576871015794, 45.5932166140624]]]},
   'properties': {'district': '23-Centre'},
   'id': '23'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6207592308166, 45.5138993727882],
      [-73.6236560898078, 45.5106541632808],
      [-73.624384898555, 45.5091582170891],
      [-73.6260875230251, 45.507277208983],
      [-73.6279506225702, 45.5061120243158],
      [-73.628749836468, 45.5048079525531],
      [-73.6304494685866, 45.5028490467289],
      [-73.6256440443835, 45.500662130816],
      [-73.6331323407225, 45.49234917306],
      [-73.6480439724158, 45.4990451424615],
      [-73.6458072174417, 45.5016289991394],
      [-73.6422399591459, 45.5054987858353],
      [-73.6423036889254, 45.5062221151428],
      [-73.6415508188144, 45.5069829054595],
      [-73.6416660769228, 45.5076101030023],
      [-73.6385805807369, 45.5112159439382],
      [-73.6365911851412, 45.5146566965285],
      [-73.6357295158589, 45.5143963845137],
      [-73.6346269691423, 45.5156528191911],
      [-73.6289040380069, 45.5140823858644],
      [-73.6267223236567, 45.5165801475772],
      [-73.6207592308166, 45.5138993727882]]]},
   'properties': {'district': '31-Darlington'},
   'id': '31'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5956108742759, 45.504064067218],
      [-73.5941401789655, 45.5033436344744],
      [-73.594737745289, 45.5028667176493],
      [-73.5977240363362, 45.5016310280474],
      [-73.5997960499359, 45.5001439911523],
      [-73.6009279740317, 45.4988800346583],
      [-73.6033750499038, 45.4967309718248],
      [-73.6044775189475, 45.4952226776326],
      [-73.6068399722065, 45.4952769144878],
      [-73.6083680626652, 45.493592693099],
      [-73.6093606035265, 45.4939788081012],
      [-73.6115925457235, 45.4916920833656],
      [-73.6147351668377, 45.4930299583055],
      [-73.6184160919695, 45.4889467204633],
      [-73.618423454854, 45.4881800607925],
      [-73.6153515138627, 45.4867956883177],
      [-73.6169038962737, 45.4851011880198],
      [-73.6331323407225, 45.49234917306],
      [-73.6256440443835, 45.500662130816],
      [-73.6304494685866, 45.5028490467289],
      [-73.628749836468, 45.5048079525531],
      [-73.6279506225702, 45.5061120243158],
      [-73.6260875230251, 45.507277208983],
      [-73.624384898555, 45.5091582170891],
      [-73.6236560898078, 45.5106541632808],
      [-73.6207592308166, 45.5138993727882],
      [-73.6176645335398, 45.5125000231349],
      [-73.617959519301, 45.5121686212918],
      [-73.61888001694, 45.5111346532789],
      [-73.6169256431203, 45.5102737338336],
      [-73.6178928803835, 45.5091750557282],
      [-73.6160933747766, 45.5082725969653],
      [-73.6189454361275, 45.5051234940594],
      [-73.6182356279483, 45.504722156916],
      [-73.6130513861854, 45.5104478685544],
      [-73.6063535452531, 45.5074911306599],
      [-73.6061344132343, 45.5068772235294],
      [-73.6035337540631, 45.5057001623398],
      [-73.6024762927983, 45.5068574351344],
      [-73.5993805679324, 45.5053898653966],
      [-73.5987846893921, 45.5056180649425],
      [-73.5956108742759, 45.504064067218]]]},
   'properties': {'district': '32-Côte-des-Neiges'},
   'id': '32'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6458072174417, 45.5016289991394],
      [-73.6480439724158, 45.4990451424615],
      [-73.6331323407225, 45.49234917306],
      [-73.6169038962737, 45.4851011880198],
      [-73.6171481421592, 45.4848346166979],
      [-73.6143642141962, 45.4835868912093],
      [-73.6159143530659, 45.4828328944331],
      [-73.6178740199084, 45.4828487105026],
      [-73.6188871149392, 45.4826094451865],
      [-73.6212759199926, 45.4802684345737],
      [-73.6225662166532, 45.4809098124242],
      [-73.6236079242847, 45.479859834089],
      [-73.6247644644914, 45.4792722536745],
      [-73.6274376104247, 45.4787022686984],
      [-73.6296262215988, 45.478422071886],
      [-73.6309839979771, 45.4790336481084],
      [-73.6303804074798, 45.4796761714723],
      [-73.6511475576679, 45.4890232837666],
      [-73.6486185977978, 45.4918874029923],
      [-73.6505027283703, 45.4926843456098],
      [-73.6558244313911, 45.4867907549359],
      [-73.6554964724779, 45.4865593791057],
      [-73.6559518311015, 45.4851214751334],
      [-73.6560231568666, 45.4789400952457],
      [-73.6611067166692, 45.4811529055447],
      [-73.6618618884249, 45.4803203895973],
      [-73.6695855765435, 45.483802365291],
      [-73.6746342471328, 45.4819683440264],
      [-73.6763145414839, 45.4831298265322],
      [-73.6776271543493, 45.4823345919293],
      [-73.677264286648, 45.4836591822082],
      [-73.6751680903633, 45.4912833590877],
      [-73.6678730495106, 45.4869534898132],
      [-73.6660964808822, 45.4866186123515],
      [-73.665349200462, 45.4870183659149],
      [-73.6562276688947, 45.49432722353],
      [-73.6637510731136, 45.4992450684359],
      [-73.6617471598017, 45.4992191258018],
      [-73.6623623016746, 45.5022066512214],
      [-73.6605369493135, 45.5024306141327],
      [-73.6600841825714, 45.50331916613],
      [-73.659999506549, 45.5047080114556],
      [-73.6566453499119, 45.5037588241059],
      [-73.6516126661051, 45.504311872331],
      [-73.6458072174417, 45.5016289991394]]]},
   'properties': {'district': '33-Snowdon'},
   'id': '33'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6143642141962, 45.4835868912093],
      [-73.6123997707291, 45.4826898974257],
      [-73.6143764334436, 45.4805885224868],
      [-73.6054346259738, 45.4765925587108],
      [-73.605024536716, 45.4770080719998],
      [-73.5985471562789, 45.4740708829885],
      [-73.5951347718664, 45.4764466331536],
      [-73.5966486659517, 45.4732210790839],
      [-73.5995923966142, 45.4714885118876],
      [-73.6015380888098, 45.4698449656495],
      [-73.6025897276388, 45.4690525247808],
      [-73.6031619796725, 45.4691032161751],
      [-73.6056266168094, 45.4676031109374],
      [-73.6058459619009, 45.4672881102352],
      [-73.6116004847967, 45.4647691120724],
      [-73.6121904900053, 45.4648542087469],
      [-73.6157015928197, 45.4632907897894],
      [-73.6167538282606, 45.4637150194085],
      [-73.6260868871444, 45.4678594502274],
      [-73.626514031426, 45.4682540051731],
      [-73.6317531402478, 45.4705324186308],
      [-73.6328791824832, 45.4692477650227],
      [-73.6375349663401, 45.4712784001916],
      [-73.636638362928, 45.4717833758261],
      [-73.6429334550997, 45.4745543212637],
      [-73.6397624769414, 45.4766952953752],
      [-73.6393702983563, 45.4768105158646],
      [-73.6354876412699, 45.4768957315274],
      [-73.6324931664858, 45.477871983287],
      [-73.6296262215988, 45.478422071886],
      [-73.6274376104247, 45.4787022686984],
      [-73.6247644644914, 45.4792722536745],
      [-73.6236079242847, 45.479859834089],
      [-73.6225662166532, 45.4809098124242],
      [-73.6212759199926, 45.4802684345737],
      [-73.6188871149392, 45.4826094451865],
      [-73.6178740199084, 45.4828487105026],
      [-73.6159143530659, 45.4828328944331],
      [-73.6143642141962, 45.4835868912093]]]},
   'properties': {'district': '34-Notre-Dame-de-Grâce'},
   'id': '34'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6157015928197, 45.4632907897894],
      [-73.6182352042185, 45.4622268121902],
      [-73.6200562870233, 45.4616683026575],
      [-73.6243236842049, 45.4586553508057],
      [-73.6262003043123, 45.4574918787775],
      [-73.6314544395632, 45.4527593013115],
      [-73.6350181512615, 45.4509158064615],
      [-73.6351722497066, 45.4507225431116],
      [-73.6579831562151, 45.4595353374805],
      [-73.6571683135528, 45.4601081011059],
      [-73.6581848068946, 45.4614565130998],
      [-73.6556103303451, 45.4629114310011],
      [-73.652126146378, 45.4676895103383],
      [-73.650271326417, 45.4688055451965],
      [-73.6491060800072, 45.4705082201931],
      [-73.6456903840605, 45.4732294857318],
      [-73.6429334550997, 45.4745543212637],
      [-73.636638362928, 45.4717833758261],
      [-73.6375349663401, 45.4712784001916],
      [-73.6328791824832, 45.4692477650227],
      [-73.6317531402478, 45.4705324186308],
      [-73.626514031426, 45.4682540051731],
      [-73.6260868871444, 45.4678594502274],
      [-73.6167538282606, 45.4637150194085],
      [-73.6157015928197, 45.4632907897894]]]},
   'properties': {'district': '35-Loyola'},
   'id': '35'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6827804258142, 45.4635658825978],
      [-73.680902143784, 45.4623754221733],
      [-73.6819797751037, 45.4611465117243],
      [-73.6828103840958, 45.4609562889736],
      [-73.6837901612144, 45.4594789107516],
      [-73.6850645006026, 45.4581450364168],
      [-73.6872613190858, 45.45743059602],
      [-73.6874478222607, 45.4558195821286],
      [-73.6872205285223, 45.4552707229765],
      [-73.6763900162006, 45.4523637929963],
      [-73.67377108286, 45.4530336717393],
      [-73.6720573706002, 45.4528472783153],
      [-73.6708095323057, 45.454567942777],
      [-73.6685657847746, 45.4567309452231],
      [-73.6569820780073, 45.4523202088578],
      [-73.6448369147901, 45.4475941198865],
      [-73.6433550395347, 45.4477889354918],
      [-73.6432919538684, 45.4483609262331],
      [-73.6389029083366, 45.4466926413334],
      [-73.6367835977829, 45.447838031415],
      [-73.6320301276656, 45.4495010416609],
      [-73.6290926270452, 45.4483946176344],
      [-73.6320762130349, 45.4466558317026],
      [-73.6351699979365, 45.445393422083],
      [-73.6392793914912, 45.4438396460105],
      [-73.6470945537851, 45.4407073290916],
      [-73.648051977364, 45.4402561224796],
      [-73.6537698617598, 45.4370900482024],
      [-73.6593235959903, 45.4348597630844],
      [-73.6621186235209, 45.433443013701],
      [-73.6659361085031, 45.4320787105657],
      [-73.665989308902, 45.4284342302665],
      [-73.6689564175307, 45.4291767414944],
      [-73.6731193300976, 45.4280636694712],
      [-73.6759423999609, 45.4276813808521],
      [-73.6833563260685, 45.4282185950861],
      [-73.6865003978824, 45.4283124979178],
      [-73.6878687931234, 45.4286162358336],
      [-73.6882161207604, 45.4292815314123],
      [-73.6856210014114, 45.4290337944536],
      [-73.6824907873074, 45.4293268197374],
      [-73.6802412950549, 45.4292313975545],
      [-73.675637946869, 45.4284197115606],
      [-73.6730699666729, 45.4286396172162],
      [-73.6691630663163, 45.429896298712],
      [-73.6694459537283, 45.4304807516148],
      [-73.6730208497195, 45.4292965595349],
      [-73.6750647146261, 45.4289965544438],
      [-73.6767010508474, 45.4291739328909],
      [-73.6788386194388, 45.4302144484015],
      [-73.6788136864397, 45.4304304732339],
      [-73.6733659453582, 45.4293230346261],
      [-73.6691401095123, 45.4307511873639],
      [-73.6696391042462, 45.4309484342688],
      [-73.6714905342855, 45.4303967061942],
      [-73.6716716548405, 45.4310983881409],
      [-73.6737798875814, 45.4309332101671],
      [-73.6775256263951, 45.431305335836],
      [-73.6792911320404, 45.4318695414462],
      [-73.6820917599341, 45.4323959865103],
      [-73.6847244511365, 45.4323557615008],
      [-73.6843819981847, 45.4331481730083],
      [-73.6862880355843, 45.433675955614],
      [-73.6893786382238, 45.43297800821],
      [-73.6919766084407, 45.4328477403871],
      [-73.6920222789549, 45.4344181753399],
      [-73.6924064617963, 45.4372834135916],
      [-73.6919192684033, 45.4375875837079],
      [-73.6922359492324, 45.4397539275822],
      [-73.6790976648257, 45.4399597709378],
      [-73.6718763889968, 45.4401679518281],
      [-73.6702870397047, 45.440019142569],
      [-73.6635037895282, 45.4400929494508],
      [-73.6629212228917, 45.4401596573971],
      [-73.6629008949467, 45.4422188385912],
      [-73.6635315763833, 45.4422179374171],
      [-73.6636442247504, 45.4445171206371],
      [-73.6650313754737, 45.4449769741284],
      [-73.6688238611265, 45.4465533440431],
      [-73.6703899048248, 45.4470018886664],
      [-73.6723760891366, 45.4472832888363],
      [-73.6862003751106, 45.4475701793018],
      [-73.6929749468618, 45.4479566183894],
      [-73.6931235366321, 45.44814625489],
      [-73.6960704968967, 45.4482114291558],
      [-73.6970275555854, 45.4488217409105],
      [-73.6970986158494, 45.4534198522438],
      [-73.6970604739367, 45.4567907245283],
      [-73.6967667127171, 45.4587187165095],
      [-73.6956922188653, 45.4626538256577],
      [-73.6956163827684, 45.4640262681568],
      [-73.69619836572, 45.4654974169452],
      [-73.6947785817616, 45.4645178045181],
      [-73.6933043566279, 45.4703396575946],
      [-73.6827804258142, 45.4635658825978]]]},
   'properties': {'district': '41-du Canal'},
   'id': '41'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6922359492324, 45.4397539275822],
      [-73.6930646838521, 45.4455152024534],
      [-73.6929749468618, 45.4479566183894],
      [-73.6862003751106, 45.4475701793018],
      [-73.6723760891366, 45.4472832888363],
      [-73.6703899048248, 45.4470018886664],
      [-73.6688238611265, 45.4465533440431],
      [-73.6650313754737, 45.4449769741284],
      [-73.6636442247504, 45.4445171206371],
      [-73.6635315763833, 45.4422179374171],
      [-73.6629008949467, 45.4422188385912],
      [-73.6629212228917, 45.4401596573971],
      [-73.6635037895282, 45.4400929494508],
      [-73.6702870397047, 45.440019142569],
      [-73.6718763889968, 45.4401679518281],
      [-73.6790976648257, 45.4399597709378],
      [-73.6922359492324, 45.4397539275822]]]},
   'properties': {'district': '42-J.-Émery-Provost'},
   'id': '42'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6929749468618, 45.4479566183894],
      [-73.6930646838521, 45.4455152024534],
      [-73.6922359492324, 45.4397539275822],
      [-73.6919192684033, 45.4375875837079],
      [-73.6924064617963, 45.4372834135916],
      [-73.6920222789549, 45.4344181753399],
      [-73.6919766084407, 45.4328477403871],
      [-73.6932876958108, 45.4324224970616],
      [-73.694195347338, 45.4324839527568],
      [-73.6949136010573, 45.4332296803625],
      [-73.6988288457718, 45.4344466726102],
      [-73.7010791173413, 45.434694716853],
      [-73.7030235835285, 45.4351501569008],
      [-73.7052464981121, 45.4348762919984],
      [-73.7084847193563, 45.4361211648559],
      [-73.7108619082078, 45.4360808035114],
      [-73.7131770697603, 45.436535476583],
      [-73.7141004237697, 45.4373526055584],
      [-73.7197027055463, 45.4383497204873],
      [-73.7205977591364, 45.438420079974],
      [-73.7206259030039, 45.439094891288],
      [-73.7192721714824, 45.4393943883616],
      [-73.7222362640027, 45.4487922160595],
      [-73.7206936272739, 45.4487451257208],
      [-73.722831053433, 45.4557427179281],
      [-73.7245717150603, 45.4610335488204],
      [-73.7198081628308, 45.4644866016957],
      [-73.7170519619499, 45.4666015017259],
      [-73.7125173690129, 45.4699350201585],
      [-73.7080097103994, 45.47334246671],
      [-73.7047665432935, 45.4712980390786],
      [-73.69619836572, 45.4654974169452],
      [-73.6956163827684, 45.4640262681568],
      [-73.6956922188653, 45.4626538256577],
      [-73.6967667127171, 45.4587187165095],
      [-73.6970604739367, 45.4567907245283],
      [-73.6970986158494, 45.4534198522438],
      [-73.6970275555854, 45.4488217409105],
      [-73.6960704968967, 45.4482114291558],
      [-73.6931235366321, 45.44814625489],
      [-73.6929749468618, 45.4479566183894]]]},
   'properties': {'district': '43-Fort-Rolland'},
   'id': '43'},
  {'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.5878943026224, 45.4214667320274],
       [-73.5863736733671, 45.4214319841574],
       [-73.5869474028608, 45.4206395990966],
       [-73.5878943026224, 45.4214667320274]]],
     [[[-73.5725281473542, 45.4260939579768],
       [-73.5704318906483, 45.4257263831213],
       [-73.5705580062435, 45.4244124795508],
       [-73.5739539624556, 45.4219626672329],
       [-73.5766876209735, 45.4212859978906],
       [-73.5793575905544, 45.4208612013169],
       [-73.5824241611882, 45.4207510361274],
       [-73.5840593827098, 45.4204618626093],
       [-73.585056506724, 45.4207940136185],
       [-73.586554348269, 45.4226195923359],
       [-73.5860576024637, 45.4236638110559],
       [-73.584295514885, 45.4245289791408],
       [-73.5827488367791, 45.424251218775],
       [-73.5809343733788, 45.424360511388],
       [-73.5784175573386, 45.4248212373305],
       [-73.5770508918231, 45.425290048099],
       [-73.5731288926102, 45.4262015674713],
       [-73.5725281473542, 45.4260939579768]]],
     [[[-73.5765170514597, 45.4274230889043],
       [-73.5749707241727, 45.4273611190412],
       [-73.5723756663881, 45.4267869197677],
       [-73.5752500087582, 45.4259752044009],
       [-73.5797854469441, 45.4251621784139],
       [-73.5803981192377, 45.4246848695548],
       [-73.5816888803182, 45.4247468599426],
       [-73.5837470045383, 45.4252493371248],
       [-73.5811925680258, 45.4261690319939],
       [-73.5773858946539, 45.42731451108],
       [-73.5765170514597, 45.4274230889043]]],
     [[[-73.5993656298056, 45.437522488597],
       [-73.5837871545249, 45.4350036826887],
       [-73.5864937818087, 45.4330669729378],
       [-73.5889455796285, 45.4317602654679],
       [-73.5892899771004, 45.4312921174991],
       [-73.5917282376663, 45.4295893857394],
       [-73.5930673492969, 45.4278875931486],
       [-73.5941659028554, 45.4276167102135],
       [-73.5970103055467, 45.4244378040521],
       [-73.6024582557665, 45.4197537949939],
       [-73.6050240641787, 45.418374641288],
       [-73.6071441080738, 45.4178597046428],
       [-73.6089187571527, 45.4171291621745],
       [-73.6111012955212, 45.4159032271],
       [-73.6144997511617, 45.4158098763183],
       [-73.6157904203163, 45.4159075684946],
       [-73.6190093657475, 45.4154992857685],
       [-73.6211671693205, 45.4148130602082],
       [-73.6256397226365, 45.4151411168221],
       [-73.6290762426954, 45.4149482971955],
       [-73.6295864341622, 45.4145878316083],
       [-73.6326788478802, 45.4147641808428],
       [-73.6324382282295, 45.4157003113135],
       [-73.6338310649383, 45.4157616841636],
       [-73.6373466145775, 45.4154299316521],
       [-73.6378211847585, 45.4157853047214],
       [-73.6349821404871, 45.4216213986168],
       [-73.630914321986, 45.4207058504903],
       [-73.629580513036, 45.4205264796284],
       [-73.6269794842437, 45.4219064890514],
       [-73.6221765288238, 45.4233556809216],
       [-73.6235576102796, 45.4251452650735],
       [-73.625860660556, 45.4262630893683],
       [-73.6213932515199, 45.4290799524068],
       [-73.6189096270924, 45.431198716026],
       [-73.6153394945845, 45.4349173246406],
       [-73.6147722148194, 45.4363801178349],
       [-73.6185038157741, 45.4371719975162],
       [-73.6203669519898, 45.4381561591494],
       [-73.6292793360419, 45.4422437520764],
       [-73.6304212122284, 45.4412800353944],
       [-73.6319594346838, 45.4420660970196],
       [-73.6341339482992, 45.4434436213567],
       [-73.6334152486196, 45.4438343169323],
       [-73.6348120456809, 45.444546590121],
       [-73.6351699979365, 45.445393422083],
       [-73.6320762130349, 45.4466558317026],
       [-73.6290926270452, 45.4483946176344],
       [-73.6288149375869, 45.4482900651074],
       [-73.6269986444794, 45.4501430927141],
       [-73.6255515041789, 45.4513172221793],
       [-73.622324477466, 45.4535901866228],
       [-73.6201147014597, 45.4548257159799],
       [-73.6136079881888, 45.4576954341346],
       [-73.6068239912076, 45.4545470690524],
       [-73.6048092799479, 45.4489130784869],
       [-73.6052123848584, 45.4479821667775],
       [-73.6094089858961, 45.4442773154325],
       [-73.6104503124607, 45.4429793199455],
       [-73.6118008558715, 45.4394499728596],
       [-73.5996082895714, 45.4375187309259],
       [-73.5993656298056, 45.437522488597]]]]},
   'properties': {'district': '51-Sault-Saint-Louis'},
   'id': '51'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6373466145775, 45.4154299316521],
      [-73.6398482479311, 45.4154574940498],
      [-73.6413054445293, 45.4157165943723],
      [-73.6441055865314, 45.4165049565242],
      [-73.6469598857207, 45.418436018764],
      [-73.6496982979192, 45.4199531866296],
      [-73.6528057037257, 45.4208669233735],
      [-73.6563386875677, 45.4231117299686],
      [-73.6574132128538, 45.4235151379827],
      [-73.6590899773487, 45.4245026614551],
      [-73.6597563681528, 45.4251856881017],
      [-73.6622132461692, 45.4263249714976],
      [-73.6626617007921, 45.4267473070838],
      [-73.6639788872218, 45.4270423138518],
      [-73.665989308902, 45.4284342302665],
      [-73.6659361085031, 45.4320787105657],
      [-73.6621186235209, 45.433443013701],
      [-73.6593235959903, 45.4348597630844],
      [-73.6537698617598, 45.4370900482024],
      [-73.648051977364, 45.4402561224796],
      [-73.6470945537851, 45.4407073290916],
      [-73.6392793914912, 45.4438396460105],
      [-73.6351699979365, 45.445393422083],
      [-73.6348120456809, 45.444546590121],
      [-73.6334152486196, 45.4438343169323],
      [-73.6341339482992, 45.4434436213567],
      [-73.6319594346838, 45.4420660970196],
      [-73.6304212122284, 45.4412800353944],
      [-73.6292793360419, 45.4422437520764],
      [-73.6203669519898, 45.4381561591494],
      [-73.6185038157741, 45.4371719975162],
      [-73.6147722148194, 45.4363801178349],
      [-73.6153394945845, 45.4349173246406],
      [-73.6189096270924, 45.431198716026],
      [-73.6213932515199, 45.4290799524068],
      [-73.625860660556, 45.4262630893683],
      [-73.6235576102796, 45.4251452650735],
      [-73.6221765288238, 45.4233556809216],
      [-73.6269794842437, 45.4219064890514],
      [-73.629580513036, 45.4205264796284],
      [-73.630914321986, 45.4207058504903],
      [-73.6349821404871, 45.4216213986168],
      [-73.6378211847585, 45.4157853047214],
      [-73.6373466145775, 45.4154299316521]]]},
   'properties': {'district': '52-Cecil-P.-Newman'},
   'id': '52'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.8688974470136, 45.4882449524107],
      [-73.871602833053, 45.4905720481716],
      [-73.8694139090223, 45.4919469541754],
      [-73.870532930773, 45.4928625205596],
      [-73.8716913646707, 45.4933306815312],
      [-73.872233047857, 45.4949468141821],
      [-73.8714042058561, 45.4965567000138],
      [-73.872571305249, 45.4969659674767],
      [-73.871134091344, 45.4990564163597],
      [-73.8701130707197, 45.5000549627491],
      [-73.8690288298613, 45.5007201896345],
      [-73.8722903935919, 45.503568954282],
      [-73.8716174921312, 45.5042888396132],
      [-73.8756305607743, 45.5078228770541],
      [-73.8783878189261, 45.5059406633388],
      [-73.8803094438111, 45.5042458334118],
      [-73.8803341428118, 45.5033993667444],
      [-73.879759682167, 45.5029518530572],
      [-73.8770152857708, 45.501806378212],
      [-73.8789156358527, 45.5017299402712],
      [-73.879779371889, 45.5004798588748],
      [-73.8810568286333, 45.4999384356033],
      [-73.8830127770248, 45.4996741535333],
      [-73.884412047715, 45.4990183531015],
      [-73.8853262749786, 45.4998100023704],
      [-73.8840175555813, 45.5020031308338],
      [-73.8845885513537, 45.503100834689],
      [-73.8882584256138, 45.5047130635017],
      [-73.8902948397667, 45.5048242389134],
      [-73.8931298332185, 45.5045492632818],
      [-73.8938090092703, 45.5051466368411],
      [-73.8930883375795, 45.5061095241892],
      [-73.8912989165002, 45.5060276552235],
      [-73.8907763512179, 45.5069642008183],
      [-73.8894862335895, 45.5075924382318],
      [-73.8893630543063, 45.5086347066791],
      [-73.8880808924888, 45.5083547817147],
      [-73.8870687665439, 45.5091995603904],
      [-73.8852521620131, 45.5102059725257],
      [-73.8881290541888, 45.5127359235277],
      [-73.8890287067442, 45.5122302528857],
      [-73.8911436774502, 45.5127840458479],
      [-73.8937551506541, 45.5125006850816],
      [-73.8953141801776, 45.5130744053201],
      [-73.896331119406, 45.5139759395892],
      [-73.8972364759115, 45.5131483697101],
      [-73.8989649328704, 45.5146837440746],
      [-73.9002254469086, 45.5131179581327],
      [-73.9008379207362, 45.5136630574361],
      [-73.9005919569215, 45.5144536068957],
      [-73.9021261241608, 45.5155955053506],
      [-73.9009914493894, 45.5161347116661],
      [-73.9020712706953, 45.5167877731109],
      [-73.9020876361723, 45.5172918560237],
      [-73.8999623185899, 45.5172091442281],
      [-73.8983416967041, 45.5160989860003],
      [-73.8970501718221, 45.5162744685233],
      [-73.896506711813, 45.5172571885447],
      [-73.8931760247634, 45.5179232635692],
      [-73.8918830801879, 45.5186858504077],
      [-73.89060443538, 45.5188882146005],
      [-73.8899347125325, 45.5182876407975],
      [-73.8875283162043, 45.5182958298662],
      [-73.8871271342177, 45.5195300009394],
      [-73.8860195052025, 45.5203975900766],
      [-73.8849337116296, 45.5207252282394],
      [-73.8820294235971, 45.5209418712909],
      [-73.8801807487187, 45.5201561927542],
      [-73.8790398509879, 45.5199080044884],
      [-73.8757241818541, 45.5198469639429],
      [-73.8712540724591, 45.51942970446],
      [-73.8693729830596, 45.5195167954401],
      [-73.867959836772, 45.5187475084215],
      [-73.8660852612371, 45.518916733747],
      [-73.8650447273518, 45.5192607308197],
      [-73.8636752254303, 45.5192742783684],
      [-73.8642825006245, 45.5181743422849],
      [-73.8612862477059, 45.5160062120045],
      [-73.8573480782361, 45.5146328898613],
      [-73.8576368219668, 45.5137501468995],
      [-73.8563777974017, 45.5129982318504],
      [-73.8561039739004, 45.5121981492155],
      [-73.8550238065929, 45.5113916654122],
      [-73.8556577823538, 45.5104448573143],
      [-73.8585654378245, 45.508816075481],
      [-73.8591760216501, 45.5082382022867],
      [-73.8597941402612, 45.5068235473577],
      [-73.8595897032533, 45.5048715239796],
      [-73.8603509384135, 45.5038432949756],
      [-73.8628677193202, 45.5031873776418],
      [-73.8634772725348, 45.5024655856932],
      [-73.863229031203, 45.4996768609889],
      [-73.8624925888829, 45.4985813745818],
      [-73.8617450446894, 45.4983353640287],
      [-73.8610656712915, 45.4975420638734],
      [-73.8614902756333, 45.4959120252572],
      [-73.8631347750672, 45.4949799702698],
      [-73.8643010381037, 45.4932934742402],
      [-73.8637682240978, 45.4920174491202],
      [-73.8642488213344, 45.4911520725992],
      [-73.8664440380781, 45.4903261139859],
      [-73.8688974470136, 45.4882449524107]]]},
   'properties': {'district': '61-Pierre-Foretier'},
   'id': '61'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.871602833053, 45.4905720481716],
      [-73.8758099807102, 45.4943016403121],
      [-73.8832708288195, 45.4900124335721],
      [-73.893915982267, 45.4991295138785],
      [-73.8978204833524, 45.5021042916793],
      [-73.8993079427873, 45.5021890950386],
      [-73.901198690394, 45.5019296796061],
      [-73.9032166411352, 45.5013944047771],
      [-73.9072471667436, 45.4990521662397],
      [-73.9097687478128, 45.498420306124],
      [-73.910763113645, 45.4979785583287],
      [-73.9131442528934, 45.5001505549281],
      [-73.9117306033429, 45.5014828251295],
      [-73.9105682077776, 45.502919788446],
      [-73.9125029822642, 45.5046603019441],
      [-73.9125904080641, 45.5059790139203],
      [-73.9115367282405, 45.5071346344323],
      [-73.9098260610793, 45.5077167397986],
      [-73.9095376253027, 45.5082630419981],
      [-73.9075790301516, 45.5084626314966],
      [-73.9064637954127, 45.5082146250766],
      [-73.9052902228377, 45.5087497533613],
      [-73.9048304811418, 45.5093648655927],
      [-73.9028980165401, 45.5106748854948],
      [-73.9025706032313, 45.513213659007],
      [-73.9021033388663, 45.5139081604197],
      [-73.9026005080814, 45.5156160928628],
      [-73.9021261241608, 45.5155955053506],
      [-73.9005919569215, 45.5144536068957],
      [-73.9008379207362, 45.5136630574361],
      [-73.9002254469086, 45.5131179581327],
      [-73.8989649328704, 45.5146837440746],
      [-73.8972364759115, 45.5131483697101],
      [-73.896331119406, 45.5139759395892],
      [-73.8953141801776, 45.5130744053201],
      [-73.8937551506541, 45.5125006850816],
      [-73.8911436774502, 45.5127840458479],
      [-73.8890287067442, 45.5122302528857],
      [-73.8881290541888, 45.5127359235277],
      [-73.8852521620131, 45.5102059725257],
      [-73.8870687665439, 45.5091995603904],
      [-73.8880808924888, 45.5083547817147],
      [-73.8893630543063, 45.5086347066791],
      [-73.8894862335895, 45.5075924382318],
      [-73.8907763512179, 45.5069642008183],
      [-73.8912989165002, 45.5060276552235],
      [-73.8930883375795, 45.5061095241892],
      [-73.8938090092703, 45.5051466368411],
      [-73.8931298332185, 45.5045492632818],
      [-73.8902948397667, 45.5048242389134],
      [-73.8882584256138, 45.5047130635017],
      [-73.8845885513537, 45.503100834689],
      [-73.8840175555813, 45.5020031308338],
      [-73.8853262749786, 45.4998100023704],
      [-73.884412047715, 45.4990183531015],
      [-73.8830127770248, 45.4996741535333],
      [-73.8810568286333, 45.4999384356033],
      [-73.879779371889, 45.5004798588748],
      [-73.8789156358527, 45.5017299402712],
      [-73.8770152857708, 45.501806378212],
      [-73.879759682167, 45.5029518530572],
      [-73.8803341428118, 45.5033993667444],
      [-73.8803094438111, 45.5042458334118],
      [-73.8783878189261, 45.5059406633388],
      [-73.8756305607743, 45.5078228770541],
      [-73.8716174921312, 45.5042888396132],
      [-73.8722903935919, 45.503568954282],
      [-73.8690288298613, 45.5007201896345],
      [-73.8701130707197, 45.5000549627491],
      [-73.871134091344, 45.4990564163597],
      [-73.872571305249, 45.4969659674767],
      [-73.8714042058561, 45.4965567000138],
      [-73.872233047857, 45.4949468141821],
      [-73.8716913646707, 45.4933306815312],
      [-73.870532930773, 45.4928625205596],
      [-73.8694139090223, 45.4919469541754],
      [-73.871602833053, 45.4905720481716]]]},
   'properties': {'district': '62-Denis-Benjamin-Viger'},
   'id': '62'},
  {'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.876179389015, 45.484463443982],
       [-73.8748623836763, 45.4845487678604],
       [-73.8746531555376, 45.4838655945021],
       [-73.8752754756586, 45.4831976914281],
       [-73.875332125701, 45.4820996763162],
       [-73.8773551113916, 45.4823719006883],
       [-73.8773585206136, 45.4838386904758],
       [-73.8770492982827, 45.4844695752153],
       [-73.876179389015, 45.484463443982]]],
     [[[-73.871602833053, 45.4905720481716],
       [-73.8688974470136, 45.4882449524107],
       [-73.8709851008353, 45.487059190004],
       [-73.8725145833884, 45.4854652904542],
       [-73.8761955543809, 45.4864641220707],
       [-73.8773897323982, 45.4856292741431],
       [-73.8778041545601, 45.4844850797772],
       [-73.8785921129696, 45.4837086183771],
       [-73.8781898959115, 45.4828731025615],
       [-73.8784365392884, 45.4814954771698],
       [-73.8796440398513, 45.4803396456993],
       [-73.8808564171004, 45.4799307290984],
       [-73.8818738698332, 45.4790634862107],
       [-73.8828567898793, 45.4787722169973],
       [-73.8847419788084, 45.4776140567433],
       [-73.8874400837697, 45.4756252617452],
       [-73.8890406450115, 45.4740361165489],
       [-73.8896093964888, 45.473044339843],
       [-73.8920158379205, 45.4714793088166],
       [-73.8939883829402, 45.4719134901468],
       [-73.8962921181107, 45.4721394139777],
       [-73.8981449394396, 45.4719079872095],
       [-73.8992850543273, 45.4721559893786],
       [-73.9014271769693, 45.4712486357827],
       [-73.9038056762196, 45.4712042547101],
       [-73.9051695937615, 45.4705605613393],
       [-73.9045774306121, 45.4700226989345],
       [-73.9028488295322, 45.4697318295333],
       [-73.9012801121118, 45.4703403082789],
       [-73.8996924472568, 45.4700938928558],
       [-73.8993825392247, 45.469663097207],
       [-73.8999775060713, 45.4688151666323],
       [-73.9017348723624, 45.4677561646305],
       [-73.9023924422294, 45.468509706018],
       [-73.9043441969034, 45.4696096448133],
       [-73.9084347070547, 45.4693341104744],
       [-73.9120964530199, 45.4682153872984],
       [-73.9126431874804, 45.4694449753644],
       [-73.9136278859403, 45.4694413239075],
       [-73.9154106009438, 45.4701278046013],
       [-73.9159006769417, 45.4706838913767],
       [-73.9168728992832, 45.4707163448971],
       [-73.9159791650457, 45.4726632836215],
       [-73.9164275963913, 45.4727606419858],
       [-73.9171840487468, 45.4712821683374],
       [-73.9179119052825, 45.4711355184565],
       [-73.9186742261816, 45.4721675623649],
       [-73.9196472003342, 45.4740176773167],
       [-73.9200930017441, 45.4737730563005],
       [-73.921822149022, 45.4741086594329],
       [-73.9226284972793, 45.4752714551831],
       [-73.924738453321, 45.4775172443067],
       [-73.9253150364798, 45.4776590879844],
       [-73.9266000233535, 45.476745452941],
       [-73.9277434225804, 45.477398128666],
       [-73.9295423138299, 45.4767974221727],
       [-73.9302919142255, 45.4778114366407],
       [-73.9314189351491, 45.4779961715469],
       [-73.9326541103686, 45.4772716425334],
       [-73.9335030743869, 45.4762245897937],
       [-73.9350412733002, 45.4766507100519],
       [-73.9370692452005, 45.4762391230436],
       [-73.9406266477915, 45.4761163385087],
       [-73.942911201225, 45.475477638423],
       [-73.9443213415212, 45.4758861323891],
       [-73.9441879968396, 45.4768134931837],
       [-73.9428248046939, 45.478697804247],
       [-73.9416119001885, 45.4794240216934],
       [-73.9405851561781, 45.4789960185208],
       [-73.9387460246999, 45.4793540720446],
       [-73.9383403023619, 45.4798235952081],
       [-73.9385185477879, 45.4813526185292],
       [-73.9403810268872, 45.4823442895009],
       [-73.9410419166311, 45.4834215699972],
       [-73.942256795601, 45.483380875313],
       [-73.9426871284147, 45.4827943413787],
       [-73.9436978356457, 45.482808418644],
       [-73.9433844250482, 45.4836104864635],
       [-73.9412104480622, 45.4837088979371],
       [-73.941186300091, 45.4855356756957],
       [-73.9409258043702, 45.4865805138247],
       [-73.940155183621, 45.4878253029672],
       [-73.9400375236355, 45.4891394779763],
       [-73.939084522942, 45.4899799926108],
       [-73.9355316222878, 45.4921352533586],
       [-73.9349775409211, 45.4932801876613],
       [-73.9328555975538, 45.4935401391563],
       [-73.9323151123675, 45.4931193083499],
       [-73.9298370141484, 45.4936595300698],
       [-73.9291104700923, 45.4940132354185],
       [-73.9270348943367, 45.4936430419454],
       [-73.925473026234, 45.4952145713303],
       [-73.9244092344479, 45.4966763272855],
       [-73.9244257212294, 45.4971711381462],
       [-73.9233876507023, 45.4982360094313],
       [-73.9226520258841, 45.4995263547275],
       [-73.9218373692027, 45.5000962326717],
       [-73.9209670436555, 45.5000814447197],
       [-73.918541557808, 45.5008552086516],
       [-73.9174837992266, 45.5014440345453],
       [-73.9145252844175, 45.5010948373465],
       [-73.9134946418312, 45.5018904208046],
       [-73.9127623770829, 45.5032518742003],
       [-73.9125029822642, 45.5046603019441],
       [-73.9105682077776, 45.502919788446],
       [-73.9117306033429, 45.5014828251295],
       [-73.9131442528934, 45.5001505549281],
       [-73.910763113645, 45.4979785583287],
       [-73.9097687478128, 45.498420306124],
       [-73.9072471667436, 45.4990521662397],
       [-73.9032166411352, 45.5013944047771],
       [-73.901198690394, 45.5019296796061],
       [-73.8993079427873, 45.5021890950386],
       [-73.8978204833524, 45.5021042916793],
       [-73.893915982267, 45.4991295138785],
       [-73.8832708288195, 45.4900124335721],
       [-73.8758099807102, 45.4943016403121],
       [-73.871602833053, 45.4905720481716]]]]},
   'properties': {'district': '63-Jacques-Bizard'},
   'id': '63'},
  {'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.8795251463835, 45.4721694456373],
       [-73.8770259047514, 45.4733055656905],
       [-73.8771362722445, 45.474146820144],
       [-73.8758315302677, 45.4744852213893],
       [-73.8761694823241, 45.475285050858],
       [-73.8753710533004, 45.4763945070991],
       [-73.8754013038998, 45.4771052655959],
       [-73.8745581040502, 45.4791867014648],
       [-73.873401680597, 45.4803243146019],
       [-73.8714778204625, 45.4814913213621],
       [-73.8706822810873, 45.4830686993857],
       [-73.8688129680033, 45.4847754445001],
       [-73.8690502967072, 45.4858455083571],
       [-73.8658510539776, 45.4876644845598],
       [-73.8647484711707, 45.4872900384824],
       [-73.8624368975074, 45.4879093508046],
       [-73.8598077012489, 45.4888850004049],
       [-73.8587614558506, 45.4873090890375],
       [-73.8613316931676, 45.4851413285652],
       [-73.8624629228902, 45.4840039194648],
       [-73.8650419471552, 45.4821657726431],
       [-73.8728715855598, 45.4756017517064],
       [-73.871209821762, 45.4733162451191],
       [-73.8733213850942, 45.4725990666647],
       [-73.8782862116718, 45.4705088548296],
       [-73.8795251463835, 45.4721694456373]]],
     [[[-73.8598857733827, 45.4911029074784],
       [-73.8591675296752, 45.4908171897388],
       [-73.8600571674373, 45.4898965476815],
       [-73.8612991016732, 45.4900456152652],
       [-73.8605639387492, 45.4911097682054],
       [-73.8598857733827, 45.4911029074784]]]]},
   'properties': {'district': '64-Sainte-Geneviève'},
   'id': '64'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.505845657669, 45.5915064148139],
      [-73.5103359282538, 45.5921124591547],
      [-73.5206880075519, 45.5952083313336],
      [-73.5204207506441, 45.5957326455424],
      [-73.5227698757162, 45.5964405193219],
      [-73.5231408135446, 45.5957591991736],
      [-73.533521772969, 45.5988762603839],
      [-73.5369160899836, 45.5931626565659],
      [-73.5411715382662, 45.5939767034301],
      [-73.5423606148624, 45.5943108573749],
      [-73.5455045323429, 45.5956272275911],
      [-73.5452799498143, 45.5959627917351],
      [-73.5438572127564, 45.5980784963673],
      [-73.5442050076359, 45.5981948225546],
      [-73.5445859643042, 45.5999308464328],
      [-73.5451108447268, 45.6000061818095],
      [-73.5447576674512, 45.6019410417126],
      [-73.5407418924341, 45.6006998521118],
      [-73.539729971205, 45.6018186221009],
      [-73.5429289535666, 45.6032316351511],
      [-73.5421763850909, 45.6042454438226],
      [-73.5394321608651, 45.6030910243993],
      [-73.5365958888719, 45.602162446611],
      [-73.5365038947396, 45.6026457300995],
      [-73.5375401492111, 45.6052359766051],
      [-73.5416213388458, 45.606939681157],
      [-73.540900931842, 45.6078533012629],
      [-73.5416434070878, 45.6081797015109],
      [-73.5412098839782, 45.6095033241271],
      [-73.5441363974969, 45.6102716461918],
      [-73.5453373826653, 45.6107633861198],
      [-73.5444977198785, 45.6121760838565],
      [-73.5462767505068, 45.6127238289344],
      [-73.5452777806501, 45.6141657083913],
      [-73.5437218072693, 45.6149096422408],
      [-73.5381703589619, 45.6139517855176],
      [-73.5375256945614, 45.6160673327401],
      [-73.5252332402243, 45.6137951013372],
      [-73.5145702896503, 45.6119902043961],
      [-73.5073926872162, 45.6107104987953],
      [-73.507104042043, 45.6103305736701],
      [-73.5088445389914, 45.6059056683277],
      [-73.5094016237031, 45.6029289790696],
      [-73.5089844073373, 45.5984312397903],
      [-73.5085623510741, 45.5964354408978],
      [-73.5073994472774, 45.5937585441643],
      [-73.505845657669, 45.5915064148139]]]},
   'properties': {'district': '71-Tétreaultville'},
   'id': '71'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.505845657669, 45.5915064148139],
      [-73.5052335547608, 45.5914035841385],
      [-73.5040074172822, 45.5877509637108],
      [-73.50548477383, 45.5842108995057],
      [-73.5046727489859, 45.5839523001102],
      [-73.5060139625714, 45.5806625893987],
      [-73.5058561540639, 45.5806068926751],
      [-73.5091666956111, 45.5757730349861],
      [-73.5141197194594, 45.5708695926608],
      [-73.5190039768335, 45.5682773867463],
      [-73.5197939453882, 45.5669670591355],
      [-73.5180270972663, 45.5661485153046],
      [-73.5253430489297, 45.5574887203531],
      [-73.5250635489053, 45.5568993328574],
      [-73.5236813870747, 45.5568097261785],
      [-73.521480081669, 45.5591100901826],
      [-73.5209547766993, 45.5588573091504],
      [-73.5218702090576, 45.5578763137034],
      [-73.5209413390244, 45.5570999459563],
      [-73.5191167026398, 45.5588496230043],
      [-73.518595216105, 45.5586040300451],
      [-73.522051635704, 45.5552304196808],
      [-73.5269225613603, 45.549446926412],
      [-73.5335765932332, 45.5515757481653],
      [-73.5389816134656, 45.5533773670715],
      [-73.5382239872366, 45.5549283797349],
      [-73.5486183023616, 45.5582491708623],
      [-73.5460296824187, 45.562265422129],
      [-73.5459659905086, 45.5625254142127],
      [-73.5456328946765, 45.5629337545645],
      [-73.5413632157982, 45.5709610549351],
      [-73.5386884000436, 45.5749269433291],
      [-73.5320531965098, 45.5852349268307],
      [-73.540035463506, 45.5878529169711],
      [-73.5369160899836, 45.5931626565659],
      [-73.533521772969, 45.5988762603839],
      [-73.5231408135446, 45.5957591991736],
      [-73.5227698757162, 45.5964405193219],
      [-73.5204207506441, 45.5957326455424],
      [-73.5206880075519, 45.5952083313336],
      [-73.5103359282538, 45.5921124591547],
      [-73.505845657669, 45.5915064148139]]]},
   'properties': {'district': '72-MaisonneuveLongue-Pointe'},
   'id': '72'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5269225613603, 45.549446926412],
      [-73.5289560474797, 45.5470320263359],
      [-73.5277739913219, 45.547187016061],
      [-73.5277290513663, 45.5464490003045],
      [-73.5313590128093, 45.5457750092113],
      [-73.5321039500724, 45.5447229718789],
      [-73.5291969726971, 45.5451540050291],
      [-73.5296700173696, 45.5442239930694],
      [-73.5329650126455, 45.5436089818848],
      [-73.5339429567644, 45.5424780308809],
      [-73.5315039994787, 45.5426720333775],
      [-73.5316359736222, 45.5420080334177],
      [-73.5344850464319, 45.5413149877237],
      [-73.5404589754615, 45.5356759920904],
      [-73.5417879567955, 45.529933001055],
      [-73.5428587889529, 45.5304546205586],
      [-73.5439636509721, 45.5334697006227],
      [-73.5473499781753, 45.5376709059424],
      [-73.5482541001656, 45.5383569002539],
      [-73.550216365092, 45.5389758922042],
      [-73.5592280432661, 45.5399028690768],
      [-73.5552605710227, 45.5474166761255],
      [-73.5545655421497, 45.55467023726],
      [-73.5542787320438, 45.5568764086233],
      [-73.5546496932451, 45.5649641797921],
      [-73.5544730757919, 45.5652953442798],
      [-73.5459659905086, 45.5625254142127],
      [-73.5460296824187, 45.562265422129],
      [-73.5486183023616, 45.5582491708623],
      [-73.5382239872366, 45.5549283797349],
      [-73.5389816134656, 45.5533773670715],
      [-73.5335765932332, 45.5515757481653],
      [-73.5269225613603, 45.549446926412]]]},
   'properties': {'district': '73-Hochelaga'},
   'id': '73'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5455045323429, 45.5956272275911],
      [-73.5423606148624, 45.5943108573749],
      [-73.5411715382662, 45.5939767034301],
      [-73.5369160899836, 45.5931626565659],
      [-73.540035463506, 45.5878529169711],
      [-73.5320531965098, 45.5852349268307],
      [-73.5386884000436, 45.5749269433291],
      [-73.5413632157982, 45.5709610549351],
      [-73.5456328946765, 45.5629337545645],
      [-73.5459659905086, 45.5625254142127],
      [-73.5544730757919, 45.5652953442798],
      [-73.5489772535198, 45.5734435433853],
      [-73.5557298683366, 45.5757065336466],
      [-73.5584435150771, 45.578098690279],
      [-73.5683754804235, 45.5814045757918],
      [-73.5648413846768, 45.5830623920281],
      [-73.566054883333, 45.5843176844033],
      [-73.563949176176, 45.5849798671748],
      [-73.5642198577817, 45.5854079588427],
      [-73.5642246834943, 45.5872483268508],
      [-73.5663609324088, 45.5883396268265],
      [-73.5686767639537, 45.5922969983003],
      [-73.5690474086577, 45.5937353194892],
      [-73.5687432258054, 45.5949521683749],
      [-73.5696609688417, 45.5965806032278],
      [-73.5694206600629, 45.5971486400825],
      [-73.5576871015794, 45.5932166140624],
      [-73.5489394765731, 45.5903029802044],
      [-73.5465394629102, 45.5940712033384],
      [-73.5481396292151, 45.5946360429193],
      [-73.5473484500099, 45.5955355370728],
      [-73.545930102715, 45.5949937733284],
      [-73.5455045323429, 45.5956272275911]]]},
   'properties': {'district': '74-Louis-Riel'},
   'id': '74'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6202427208594, 45.5951205335532],
      [-73.6296215435427, 45.5838130726522],
      [-73.6288186186035, 45.5832571469721],
      [-73.631962332515, 45.579640175342],
      [-73.6327012962769, 45.5799802985646],
      [-73.6363215300962, 45.5759177646435],
      [-73.652557313063, 45.5826892716542],
      [-73.6543058972308, 45.5836262624158],
      [-73.6531900096361, 45.5859698880497],
      [-73.6526947978849, 45.5876532157306],
      [-73.6523937374702, 45.5900742122073],
      [-73.6505401287885, 45.5918403260598],
      [-73.6490983475598, 45.5943078055034],
      [-73.646028354957, 45.5966872776611],
      [-73.6450204850692, 45.598497300652],
      [-73.6434244270991, 45.6009558130627],
      [-73.6432738605823, 45.6022427894953],
      [-73.6418446065649, 45.6048360555341],
      [-73.6415278334524, 45.606276219979],
      [-73.6400469319338, 45.6087976232294],
      [-73.6388534618155, 45.6101933725153],
      [-73.6374274156649, 45.6122509805631],
      [-73.6349651825723, 45.6101401159366],
      [-73.6284179810453, 45.603912893307],
      [-73.6227414555439, 45.5985713755102],
      [-73.6209924104659, 45.5968531497608],
      [-73.6216736698201, 45.5964861898013],
      [-73.6202427208594, 45.5951205335532]]]},
   'properties': {'district': '81-Marie-Clarac'},
   'id': '81'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6028907661658, 45.6112216102358],
      [-73.6041139394664, 45.6106174089674],
      [-73.6035616092243, 45.6101078733853],
      [-73.6048043091085, 45.6094292879636],
      [-73.6062298901187, 45.610759685103],
      [-73.6079197060538, 45.6094530924621],
      [-73.6092890313816, 45.6081470965116],
      [-73.6125635803426, 45.604373796832],
      [-73.61467650443, 45.601820884038],
      [-73.6202427208594, 45.5951205335532],
      [-73.6216736698201, 45.5964861898013],
      [-73.6209924104659, 45.5968531497608],
      [-73.6227414555439, 45.5985713755102],
      [-73.6284179810453, 45.603912893307],
      [-73.6349651825723, 45.6101401159366],
      [-73.6374274156649, 45.6122509805631],
      [-73.6357315212, 45.6162353900055],
      [-73.6334060135125, 45.6196665233391],
      [-73.6310514588113, 45.6217838603777],
      [-73.6289543944547, 45.6234221648674],
      [-73.6269636907653, 45.6247707822286],
      [-73.6250472436735, 45.6262897836938],
      [-73.6235959602566, 45.6271766849645],
      [-73.6206953088035, 45.6298453145986],
      [-73.6168081007299, 45.6262083345707],
      [-73.6071490341973, 45.6170493269392],
      [-73.6023660828945, 45.6125718329314],
      [-73.601559767966, 45.6118073578371],
      [-73.6028907661658, 45.6112216102358]]]},
   'properties': {'district': '82-Ovide-Clermont'},
   'id': '82'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5989854515795, 45.5160358124743],
      [-73.5986563507028, 45.5163499572059],
      [-73.601437737118, 45.5176238014654],
      [-73.6020308024605, 45.5177034122021],
      [-73.613010925262, 45.5225880512056],
      [-73.6108850612038, 45.5249602486287],
      [-73.5966746401772, 45.5186407402299],
      [-73.5982202946245, 45.5169177573452],
      [-73.5969109664106, 45.5161364855643],
      [-73.5989854515795, 45.5160358124743]]]},
   'properties': {'district': '91-Claude-Ryan'},
   'id': '91'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5989854515795, 45.5160358124743],
      [-73.6044730454934, 45.5155769251068],
      [-73.6089843852315, 45.5146703511952],
      [-73.6091799069916, 45.5148927825],
      [-73.6186655613026, 45.5191467549529],
      [-73.6148105187034, 45.5234843904785],
      [-73.6155485100061, 45.52374152426],
      [-73.6253373412254, 45.518414467689],
      [-73.6244833769123, 45.5195443162251],
      [-73.6208637881685, 45.5236565043515],
      [-73.617235572865, 45.5277835686717],
      [-73.6170925681517, 45.5277209056734],
      [-73.6124143323658, 45.525647330045],
      [-73.6108850612038, 45.5249602486287],
      [-73.613010925262, 45.5225880512056],
      [-73.6020308024605, 45.5177034122021],
      [-73.601437737118, 45.5176238014654],
      [-73.5986563507028, 45.5163499572059],
      [-73.5989854515795, 45.5160358124743]]]},
   'properties': {'district': '92-Joseph-Beaubien'},
   'id': '92'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5956108742759, 45.504064067218],
      [-73.5987846893921, 45.5056180649425],
      [-73.5993805679324, 45.5053898653966],
      [-73.6024762927983, 45.5068574351344],
      [-73.6035337540631, 45.5057001623398],
      [-73.6061344132343, 45.5068772235294],
      [-73.6063535452531, 45.5074911306599],
      [-73.6130513861854, 45.5104478685544],
      [-73.6182356279483, 45.504722156916],
      [-73.6189454361275, 45.5051234940594],
      [-73.6160933747766, 45.5082725969653],
      [-73.6178928803835, 45.5091750557282],
      [-73.6169256431203, 45.5102737338336],
      [-73.61888001694, 45.5111346532789],
      [-73.617959519301, 45.5121686212918],
      [-73.6171142113946, 45.5117885655948],
      [-73.6163442345691, 45.5125462730753],
      [-73.615038686563, 45.511951761593],
      [-73.6111115129373, 45.5140796366228],
      [-73.6089843852315, 45.5146703511952],
      [-73.6044730454934, 45.5155769251068],
      [-73.5989854515795, 45.5160358124743],
      [-73.5969109664106, 45.5161364855643],
      [-73.5982202946245, 45.5169177573452],
      [-73.5966746401772, 45.5186407402299],
      [-73.5902604532774, 45.5157813641729],
      [-73.5911992183544, 45.5147110287094],
      [-73.5918451342772, 45.5144729450241],
      [-73.5968586638591, 45.5145623065118],
      [-73.5978614314752, 45.5141637733071],
      [-73.598896296438, 45.5131127563816],
      [-73.5969405107098, 45.5130415385056],
      [-73.5969012890154, 45.5117790625741],
      [-73.5949672180747, 45.5109069459258],
      [-73.5935088435771, 45.5105257693584],
      [-73.594191031848, 45.5097864575692],
      [-73.591464574106, 45.508070751295],
      [-73.5956108742759, 45.504064067218]]]},
   'properties': {'district': '93-Robert-Bourassa'},
   'id': '93'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.617959519301, 45.5121686212918],
      [-73.6176645335398, 45.5125000231349],
      [-73.6207592308166, 45.5138993727882],
      [-73.6267223236567, 45.5165801475772],
      [-73.6253373412254, 45.518414467689],
      [-73.6155485100061, 45.52374152426],
      [-73.6148105187034, 45.5234843904785],
      [-73.6186655613026, 45.5191467549529],
      [-73.6091799069916, 45.5148927825],
      [-73.6089843852315, 45.5146703511952],
      [-73.6111115129373, 45.5140796366228],
      [-73.615038686563, 45.511951761593],
      [-73.6163442345691, 45.5125462730753],
      [-73.6171142113946, 45.5117885655948],
      [-73.617959519301, 45.5121686212918]]]},
   'properties': {'district': '94-Jeanne-Sauvé'},
   'id': '94'},
  {'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.8187679895316, 45.5140812084438],
       [-73.8182383369059, 45.5132188436317],
       [-73.8194262685108, 45.5128016511853],
       [-73.8210527525633, 45.5129859861948],
       [-73.8211602697308, 45.5138855228726],
       [-73.8187679895316, 45.5140812084438]]],
     [[[-73.7612752776246, 45.5104175090183],
       [-73.7551669017747, 45.5064862077527],
       [-73.7550630650544, 45.5065238038199],
       [-73.7516832079437, 45.5044227485347],
       [-73.7530750881715, 45.5037537247243],
       [-73.7547114610262, 45.5033812068779],
       [-73.756652358581, 45.5024589334263],
       [-73.7582371682807, 45.5020414841587],
       [-73.7594306007504, 45.5027766325504],
       [-73.7609994664832, 45.5016752336666],
       [-73.7638615520544, 45.5034953365559],
       [-73.764601206777, 45.5029446682134],
       [-73.7653841918245, 45.5034648112556],
       [-73.7671979733428, 45.5027497284985],
       [-73.7692002551043, 45.5040137486001],
       [-73.7709616412032, 45.5034073001873],
       [-73.7725018897261, 45.5025715611262],
       [-73.770851931212, 45.5015263075263],
       [-73.7738796981111, 45.5005112554049],
       [-73.7716579558132, 45.4991257181769],
       [-73.7735738316828, 45.4981363521851],
       [-73.7779880975343, 45.5009521734749],
       [-73.780555316633, 45.4997211145292],
       [-73.7811328878805, 45.5000886664279],
       [-73.7828691809435, 45.4992834417083],
       [-73.7866716942594, 45.5016560785918],
       [-73.7833876826593, 45.5031694957223],
       [-73.7921892811359, 45.505162983993],
       [-73.790378705595, 45.5039707845666],
       [-73.7971312330344, 45.5007319392105],
       [-73.800845778582, 45.4990215282087],
       [-73.8020719362353, 45.500313400533],
       [-73.8090622022287, 45.4969839281454],
       [-73.8103152495861, 45.4968275421823],
       [-73.8148195197041, 45.5014854076037],
       [-73.814130519647, 45.5018291882481],
       [-73.8151983502239, 45.5028700758232],
       [-73.8158749418108, 45.5025712297953],
       [-73.8192989400152, 45.5061341618076],
       [-73.8239273064692, 45.5039359215182],
       [-73.8260247686459, 45.5028472072531],
       [-73.8336495886976, 45.4992478732958],
       [-73.8354476552771, 45.4983089444422],
       [-73.835851882975, 45.4987134333303],
       [-73.8376510464643, 45.4977036685397],
       [-73.8352748755507, 45.4946201233283],
       [-73.8359064469498, 45.4941865754856],
       [-73.8445138674112, 45.4899447538175],
       [-73.8461670237813, 45.488985999861],
       [-73.8503699985263, 45.4936842455575],
       [-73.853113099403, 45.4984292547447],
       [-73.8558121436329, 45.5017030001578],
       [-73.8554973469563, 45.506068266442],
       [-73.8541507320505, 45.5071387755787],
       [-73.8547842282295, 45.5078848003326],
       [-73.8541503989792, 45.5088568468323],
       [-73.8514364847285, 45.5107998956924],
       [-73.8509728924279, 45.5113681864054],
       [-73.8497265304179, 45.5116149897809],
       [-73.8487575861648, 45.5122208147549],
       [-73.8486390859537, 45.5137509650076],
       [-73.8470767467479, 45.515690388096],
       [-73.8459043806884, 45.5165397868316],
       [-73.8447612809957, 45.5165252439303],
       [-73.8416070645454, 45.5171016749459],
       [-73.8379192636275, 45.5168516646645],
       [-73.8362532214568, 45.51650560879],
       [-73.8321180123678, 45.5163557197529],
       [-73.8313656471532, 45.5168348664122],
       [-73.8297408583824, 45.5169655584571],
       [-73.8282028168338, 45.5166190156169],
       [-73.8268661171387, 45.5156510162477],
       [-73.8250222653614, 45.5155213777536],
       [-73.8246734151281, 45.5149644141917],
       [-73.8233629812572, 45.5141042906802],
       [-73.8234733111558, 45.5132581353231],
       [-73.8218473252627, 45.5131637356642],
       [-73.8209366065744, 45.5128154164364],
       [-73.8192176588039, 45.5126139694502],
       [-73.8179057909873, 45.5132557668608],
       [-73.8178065811604, 45.5138229980126],
       [-73.8160507514445, 45.5154287971508],
       [-73.814770537422, 45.5156310808765],
       [-73.8131059190362, 45.5155096653326],
       [-73.810217503155, 45.5162914840575],
       [-73.8084551833961, 45.5162217432523],
       [-73.8064888710304, 45.5155636081875],
       [-73.8057027099487, 45.5147919349551],
       [-73.8040410010469, 45.5149672884696],
       [-73.801546777817, 45.5149829442516],
       [-73.8001619454196, 45.5148065602758],
       [-73.7995790764703, 45.5135123735559],
       [-73.7995988098213, 45.5123965010493],
       [-73.7992059489796, 45.5107148435346],
       [-73.7978204799485, 45.5101065121228],
       [-73.7969591683437, 45.5093799021214],
       [-73.7939384028061, 45.509297721884],
       [-73.79058311435, 45.5088654314285],
       [-73.7870155334484, 45.5094594051816],
       [-73.7852614432657, 45.5093198098856],
       [-73.7829719822765, 45.5095864846083],
       [-73.7806008657296, 45.5088903884048],
       [-73.7769513427547, 45.5084674192311],
       [-73.7745708564459, 45.5084461679299],
       [-73.7719486126198, 45.5087044209407],
       [-73.7697639799538, 45.5095104479827],
       [-73.7673058990371, 45.5093183322757],
       [-73.7625356657639, 45.5100672469129],
       [-73.7612752776246, 45.5104175090183]]]]},
   'properties': {'district': '101-Bois-de-Liesse'},
   'id': '101'},
  {'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.8461670237813, 45.488985999861],
       [-73.850532069583, 45.486758681857],
       [-73.8458397013725, 45.4794951647217],
       [-73.8472019880053, 45.4788779608994],
       [-73.8518367097832, 45.4764514219245],
       [-73.8573573288562, 45.4736627559579],
       [-73.8545371967343, 45.4706120339916],
       [-73.8603908221258, 45.4659954945452],
       [-73.859889484827, 45.4655831049747],
       [-73.8669852747875, 45.4613941823855],
       [-73.8659406037748, 45.4600298096328],
       [-73.8814395340419, 45.4526362439631],
       [-73.8847216555087, 45.4524908762247],
       [-73.8890536732734, 45.4491166876217],
       [-73.8915462525593, 45.4480217199892],
       [-73.8938116724967, 45.4465652096353],
       [-73.8981246578432, 45.4475293470406],
       [-73.9003739737275, 45.4471542652552],
       [-73.9000666991504, 45.4467285005871],
       [-73.9015060886188, 45.446358434947],
       [-73.9023709077117, 45.4475251321732],
       [-73.9043599589048, 45.4467892477034],
       [-73.9055608807492, 45.4484676964261],
       [-73.9104202259452, 45.4468936252547],
       [-73.9231679445166, 45.4420154242323],
       [-73.9228839309917, 45.4416385017936],
       [-73.9245143656332, 45.4408765943703],
       [-73.924830550628, 45.4404255381026],
       [-73.9348115551979, 45.4490797759617],
       [-73.9369647858857, 45.4508355286695],
       [-73.9367305115467, 45.4519612579974],
       [-73.936084813848, 45.45278257894],
       [-73.9363214019941, 45.4536095287366],
       [-73.9384314066949, 45.45366444434],
       [-73.93849022267, 45.4546540611182],
       [-73.9401870518575, 45.4558173634308],
       [-73.9432583349177, 45.4561564624145],
       [-73.9444816415584, 45.4572495419421],
       [-73.9470042484352, 45.4577165755588],
       [-73.9475358331527, 45.4586413391725],
       [-73.9466703677291, 45.4591486916182],
       [-73.9457347700682, 45.4588823651705],
       [-73.9452919598077, 45.4594780510929],
       [-73.9438715446993, 45.4593485885153],
       [-73.9418275850641, 45.461228202182],
       [-73.9418734970443, 45.4621908676335],
       [-73.9433996704037, 45.4627518229434],
       [-73.9458662537823, 45.4625712338861],
       [-73.9452835656909, 45.4632754571652],
       [-73.9455865563861, 45.4644081059436],
       [-73.9444336707811, 45.464151615889],
       [-73.9428244875956, 45.4644188471942],
       [-73.9420560006039, 45.4659065384758],
       [-73.9397320642846, 45.4663563878557],
       [-73.9401770020335, 45.4676594913386],
       [-73.9394768022606, 45.4680671581924],
       [-73.9395814637767, 45.4700104369658],
       [-73.9382622094761, 45.4714102256228],
       [-73.9356853954855, 45.4722749319843],
       [-73.9346437792633, 45.4731967435679],
       [-73.9329374951772, 45.4725193630933],
       [-73.9323111235668, 45.4725667323419],
       [-73.9299152373346, 45.4737006039578],
       [-73.928842473854, 45.4739115313467],
       [-73.9275236887696, 45.4737184885069],
       [-73.9265293732015, 45.4741631743875],
       [-73.925796243829, 45.4736259485905],
       [-73.9248000500235, 45.4721089475954],
       [-73.9222818122356, 45.4705794857248],
       [-73.922965231979, 45.4696141155523],
       [-73.9226524205748, 45.4688324194201],
       [-73.9212201297683, 45.4688467094977],
       [-73.9216571330551, 45.4674143796986],
       [-73.921550552687, 45.4668568126713],
       [-73.9195312526606, 45.4635798400557],
       [-73.9178201887521, 45.4621912996059],
       [-73.9148789978459, 45.4619144443475],
       [-73.9126660861929, 45.4603383473932],
       [-73.91114607451, 45.4605598133876],
       [-73.9103819033438, 45.4609764429342],
       [-73.9100549453511, 45.4617335639878],
       [-73.9082146339227, 45.4617969415567],
       [-73.9075688375165, 45.4609865148744],
       [-73.9058658349117, 45.4609563776965],
       [-73.9051876779266, 45.4605991035458],
       [-73.9038323289561, 45.4606219020727],
       [-73.9020889859002, 45.4618068799119],
       [-73.9017130574761, 45.4628880358479],
       [-73.9003152261538, 45.4623259838994],
       [-73.899767819995, 45.462669876326],
       [-73.8976775036577, 45.4654577069673],
       [-73.8962483592814, 45.4658946426154],
       [-73.8957916608649, 45.4664270982997],
       [-73.8945384007686, 45.4664224345534],
       [-73.8936214304942, 45.4669655597388],
       [-73.8921732932478, 45.4665295724673],
       [-73.8916127412336, 45.4668464725107],
       [-73.8913265706041, 45.4679902821467],
       [-73.8900901349216, 45.4685793797869],
       [-73.8888217813327, 45.4686035027193],
       [-73.8860812311329, 45.4695648402732],
       [-73.8847899934361, 45.4696321930072],
       [-73.8828866868638, 45.4718612485547],
       [-73.8823610038276, 45.4716560245278],
       [-73.8811747849457, 45.4721459539451],
       [-73.8806356311152, 45.471850773116],
       [-73.8795251463835, 45.4721694456373],
       [-73.8782862116718, 45.4705088548296],
       [-73.8733213850942, 45.4725990666647],
       [-73.871209821762, 45.4733162451191],
       [-73.8728715855598, 45.4756017517064],
       [-73.8650419471552, 45.4821657726431],
       [-73.8624629228902, 45.4840039194648],
       [-73.8613316931676, 45.4851413285652],
       [-73.8587614558506, 45.4873090890375],
       [-73.8598077012489, 45.4888850004049],
       [-73.8592579904622, 45.4889452259737],
       [-73.8578565654384, 45.4898674655412],
       [-73.8569952719841, 45.4912379676731],
       [-73.8545791042202, 45.4935760467931],
       [-73.8531479621556, 45.4959201221199],
       [-73.8544902230577, 45.4977606434992],
       [-73.8548560501467, 45.4989743240793],
       [-73.8555516665994, 45.4997100150003],
       [-73.8578400891255, 45.4995048836594],
       [-73.8585024501129, 45.4997829560785],
       [-73.8591539006867, 45.5007425753891],
       [-73.8588895885858, 45.501436262307],
       [-73.8580145103082, 45.5020213087385],
       [-73.8578513100126, 45.5031672055572],
       [-73.85712842707, 45.5040318263201],
       [-73.8570843291783, 45.505329258001],
       [-73.8555961994083, 45.5077731597575],
       [-73.8547842282295, 45.5078848003326],
       [-73.8541507320505, 45.5071387755787],
       [-73.8554973469563, 45.506068266442],
       [-73.8558121436329, 45.5017030001578],
       [-73.853113099403, 45.4984292547447],
       [-73.8503699985263, 45.4936842455575],
       [-73.8461670237813, 45.488985999861]]],
     [[[-73.8565163230435, 45.5065638456799],
       [-73.8570490281172, 45.5058063309797],
       [-73.8583878278331, 45.5070438611748],
       [-73.8567674874305, 45.5078408713637],
       [-73.8559107285537, 45.5079515359158],
       [-73.8565163230435, 45.5065638456799]]]]},
   'properties': {'district': '102-Cap-Saint-Jacques'},
   'id': '102'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5792047395127, 45.5280064404383],
      [-73.581506814336, 45.5255527662198],
      [-73.5893088980696, 45.5167596569974],
      [-73.5902604532774, 45.5157813641729],
      [-73.5966746401772, 45.5186407402299],
      [-73.6108850612038, 45.5249602486287],
      [-73.6124143323658, 45.525647330045],
      [-73.6088433154766, 45.5276253868022],
      [-73.6061835826899, 45.5283650193777],
      [-73.6023604559616, 45.5284000664849],
      [-73.5992862274652, 45.5288774305058],
      [-73.5962116234987, 45.5301487739359],
      [-73.5947764680621, 45.5311589735711],
      [-73.5863837119054, 45.5382742004886],
      [-73.5871054297936, 45.5372069067238],
      [-73.5899093482658, 45.5348049045751],
      [-73.5847595146863, 45.5324079438366],
      [-73.5859421309178, 45.5310790335786],
      [-73.5792047395127, 45.5280064404383]]]},
   'properties': {'district': '111-Mile-End'},
   'id': '111'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5655614721314, 45.5213643879447],
      [-73.5740572626836, 45.5252747203744],
      [-73.5745923823609, 45.5259374612073],
      [-73.5792047395127, 45.5280064404383],
      [-73.5859421309178, 45.5310790335786],
      [-73.5847595146863, 45.5324079438366],
      [-73.5899093482658, 45.5348049045751],
      [-73.5871054297936, 45.5372069067238],
      [-73.5863837119054, 45.5382742004886],
      [-73.5862704189394, 45.5383757481773],
      [-73.5838512015266, 45.5400861300747],
      [-73.5810607519196, 45.5411249464667],
      [-73.5786195284797, 45.5415422864787],
      [-73.5764926058406, 45.5415739191208],
      [-73.5735822926994, 45.5413565189643],
      [-73.5592280432661, 45.5399028690768],
      [-73.5613401818778, 45.5359226324552],
      [-73.5641429566138, 45.5273492053093],
      [-73.5652383566418, 45.5238165260966],
      [-73.5655614721314, 45.5213643879447]]]},
   'properties': {'district': '112-De Lorimier'},
   'id': '112'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5734800018833, 45.5049709717948],
      [-73.580113792401, 45.5081921313855],
      [-73.5785542203746, 45.5104511791594],
      [-73.5786781018666, 45.5117608495828],
      [-73.582430798457, 45.5136019767056],
      [-73.5893088980696, 45.5167596569974],
      [-73.581506814336, 45.5255527662198],
      [-73.5792047395127, 45.5280064404383],
      [-73.5745923823609, 45.5259374612073],
      [-73.5740572626836, 45.5252747203744],
      [-73.5655614721314, 45.5213643879447],
      [-73.5655904084691, 45.5210639273018],
      [-73.571279665339, 45.5083636436696],
      [-73.5729588302122, 45.5055494196855],
      [-73.5734800018833, 45.5049709717948]]]},
   'properties': {'district': '113-Jeanne-Mance'},
   'id': '113'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.4868984819315, 45.6668163755988],
      [-73.4909285596849, 45.6670796662378],
      [-73.4943692754526, 45.6676107175883],
      [-73.5052117189194, 45.6694506091685],
      [-73.5066485322791, 45.66770609928],
      [-73.5086661140009, 45.6660376032574],
      [-73.514071369879, 45.663410883372],
      [-73.5226608995211, 45.6590189476592],
      [-73.5409160537594, 45.6501644528664],
      [-73.5441930168941, 45.6487914226698],
      [-73.544738106063, 45.6482242645147],
      [-73.5524611738286, 45.6444112188767],
      [-73.5555002141554, 45.6426177060947],
      [-73.5652962272313, 45.6362003202316],
      [-73.5713393674169, 45.6418436992789],
      [-73.5731131247475, 45.6438386857375],
      [-73.5764976851296, 45.641270099185],
      [-73.5866413495341, 45.6508496604014],
      [-73.5898582112291, 45.6537703909976],
      [-73.5838459058531, 45.6567113166436],
      [-73.5767899673498, 45.6602649640823],
      [-73.5719339731853, 45.6626357744781],
      [-73.539067309963, 45.678979317943],
      [-73.5369552091684, 45.6802676902485],
      [-73.5352474248791, 45.6816148433586],
      [-73.532629555028, 45.6840504841943],
      [-73.5308427113654, 45.6858730099174],
      [-73.5292925000853, 45.6880318303705],
      [-73.5284527492428, 45.6897324941851],
      [-73.5262321777264, 45.695068712866],
      [-73.5248704855113, 45.696745979989],
      [-73.5234829925507, 45.6977084455985],
      [-73.521300714461, 45.6988491350421],
      [-73.518072949079, 45.7000844428825],
      [-73.5135468623237, 45.7013546459954],
      [-73.5051625304534, 45.7033317792418],
      [-73.498947493721, 45.7045252458975],
      [-73.4954757567513, 45.7049490135942],
      [-73.4932103740932, 45.7047553331643],
      [-73.4921323200277, 45.7041126467728],
      [-73.4909405407531, 45.7027073672294],
      [-73.4900498047694, 45.7021797732479],
      [-73.4887664394737, 45.7021177409386],
      [-73.4856763927507, 45.7030727269477],
      [-73.4829186491029, 45.7036523330194],
      [-73.4803835661343, 45.7046724098692],
      [-73.4783219605948, 45.7052709191606],
      [-73.4766385432002, 45.7054709950549],
      [-73.4751651064534, 45.7048699119281],
      [-73.4745824263264, 45.7033866618514],
      [-73.4749382311583, 45.7024425674455],
      [-73.4763824131897, 45.7006700752533],
      [-73.4784777403736, 45.697652858064],
      [-73.4790042639298, 45.6961901697848],
      [-73.4792384579055, 45.6941308824961],
      [-73.4796140010016, 45.6929943766718],
      [-73.4803640884928, 45.6919258774639],
      [-73.483643872129, 45.6885943328445],
      [-73.4851764024197, 45.6867120396751],
      [-73.4857156558079, 45.6857399456762],
      [-73.4866448398145, 45.682296765324],
      [-73.486914072058, 45.6801843677801],
      [-73.4872497030629, 45.6755976940944],
      [-73.4873520249609, 45.6730343323445],
      [-73.4868984819315, 45.6668163755988]]]},
   'properties': {'district': '121-La Pointe-aux-Prairies'},
   'id': '121'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.544738106063, 45.6482242645147],
      [-73.5441930168941, 45.6487914226698],
      [-73.5409160537594, 45.6501644528664],
      [-73.5226608995211, 45.6590189476592],
      [-73.514071369879, 45.663410883372],
      [-73.5086661140009, 45.6660376032574],
      [-73.5066485322791, 45.66770609928],
      [-73.5052117189194, 45.6694506091685],
      [-73.4943692754526, 45.6676107175883],
      [-73.4909285596849, 45.6670796662378],
      [-73.4868984819315, 45.6668163755988],
      [-73.4865306288933, 45.6640279113745],
      [-73.486175917176, 45.6627454155844],
      [-73.4851106606772, 45.6602901608252],
      [-73.4846809037125, 45.6588306383762],
      [-73.4832382097687, 45.6554954757732],
      [-73.4821383232798, 45.6536179248291],
      [-73.4787636354681, 45.6491486823782],
      [-73.4780610185114, 45.6476510142289],
      [-73.4774799728854, 45.6454905837529],
      [-73.4872757738587, 45.6469779321365],
      [-73.4879707187836, 45.6443924831145],
      [-73.4878427542795, 45.6430795950772],
      [-73.4879726577335, 45.6412664739826],
      [-73.4872874543207, 45.6393119798027],
      [-73.489854112659, 45.6368295683212],
      [-73.4903943370184, 45.6355618234685],
      [-73.4916720124889, 45.6345001210246],
      [-73.4910397713222, 45.6338422392127],
      [-73.491927215926, 45.6328678840833],
      [-73.5098459767589, 45.6358225966319],
      [-73.5202077969535, 45.6374981237725],
      [-73.5214492864595, 45.6377899174742],
      [-73.5431729267196, 45.6475814296488],
      [-73.544738106063, 45.6482242645147]]]},
   'properties': {'district': '122-Pointe-aux-Trembles'},
   'id': '122'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5652962272313, 45.6362003202316],
      [-73.5683379250343, 45.6341956640577],
      [-73.5740068269183, 45.6304929149516],
      [-73.5954830428467, 45.6158123480652],
      [-73.5984976040034, 45.6140840514745],
      [-73.6023660828945, 45.6125718329314],
      [-73.6071490341973, 45.6170493269392],
      [-73.6168081007299, 45.6262083345707],
      [-73.6206953088035, 45.6298453145986],
      [-73.6241232556812, 45.6330522649771],
      [-73.5943845703787, 45.6513674636385],
      [-73.5898582112291, 45.6537703909976],
      [-73.5866413495341, 45.6508496604014],
      [-73.5764976851296, 45.641270099185],
      [-73.5731131247475, 45.6438386857375],
      [-73.5713393674169, 45.6418436992789],
      [-73.5652962272313, 45.6362003202316]]]},
   'properties': {'district': '123-Rivière-des-Prairies'},
   'id': '123'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5864681894816, 45.538468592349],
      [-73.5862704189394, 45.5383757481773],
      [-73.5863837119054, 45.5382742004886],
      [-73.5947764680621, 45.5311589735711],
      [-73.5962116234987, 45.5301487739359],
      [-73.5992862274652, 45.5288774305058],
      [-73.6023604559616, 45.5284000664849],
      [-73.6061835826899, 45.5283650193777],
      [-73.6088433154766, 45.5276253868022],
      [-73.6124143323658, 45.525647330045],
      [-73.6170925681517, 45.5277209056734],
      [-73.6170629786343, 45.5290836882431],
      [-73.6174856875378, 45.5297416402976],
      [-73.6190955864224, 45.5306548374863],
      [-73.6215351178101, 45.5311083503899],
      [-73.6182756954315, 45.5346855542873],
      [-73.6168611349556, 45.5357046144078],
      [-73.6144250141163, 45.5383032859687],
      [-73.6123252903368, 45.5421333051385],
      [-73.6086846729618, 45.5461409843801],
      [-73.6070387029669, 45.5479557550382],
      [-73.6035398110948, 45.5463469119155],
      [-73.5864681894816, 45.538468592349]]]},
   'properties': {'district': '131-Saint-Édouard'},
   'id': '131'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5864681894816, 45.538468592349],
      [-73.6035398110948, 45.5463469119155],
      [-73.6019471163738, 45.5481178990012],
      [-73.5975914187124, 45.553207322408],
      [-73.5910006798707, 45.5607570868859],
      [-73.5774327397367, 45.5565544731088],
      [-73.5794549693978, 45.5542318437368],
      [-73.5755593123915, 45.5530615312237],
      [-73.5800875168702, 45.5456157629748],
      [-73.5813297515111, 45.5438139922411],
      [-73.5837910525824, 45.541331668411],
      [-73.5864681894816, 45.538468592349]]]},
   'properties': {'district': '132-Étienne-Desmarteau'},
   'id': '132'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5592280432661, 45.5399028690768],
      [-73.5735822926994, 45.5413565189643],
      [-73.5764926058406, 45.5415739191208],
      [-73.5786195284797, 45.5415422864787],
      [-73.5810607519196, 45.5411249464667],
      [-73.5838512015266, 45.5400861300747],
      [-73.5862704189394, 45.5383757481773],
      [-73.5864681894816, 45.538468592349],
      [-73.5837910525824, 45.541331668411],
      [-73.5813297515111, 45.5438139922411],
      [-73.5800875168702, 45.5456157629748],
      [-73.5755593123915, 45.5530615312237],
      [-73.5794549693978, 45.5542318437368],
      [-73.5774327397367, 45.5565544731088],
      [-73.573735635149, 45.5607975285183],
      [-73.5588620237975, 45.5560173236498],
      [-73.5545655421497, 45.55467023726],
      [-73.5552605710227, 45.5474166761255],
      [-73.5592280432661, 45.5399028690768]]]},
   'properties': {'district': '133-Vieux-Rosemont'},
   'id': '133'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5694653361432, 45.5816630209033],
      [-73.5683754804235, 45.5814045757918],
      [-73.5584435150771, 45.578098690279],
      [-73.5557298683366, 45.5757065336466],
      [-73.5489772535198, 45.5734435433853],
      [-73.5544730757919, 45.5652953442798],
      [-73.5546496932451, 45.5649641797921],
      [-73.5542787320438, 45.5568764086233],
      [-73.5545655421497, 45.55467023726],
      [-73.5588620237975, 45.5560173236498],
      [-73.573735635149, 45.5607975285183],
      [-73.5774327397367, 45.5565544731088],
      [-73.5910006798707, 45.5607570868859],
      [-73.5863094536503, 45.5661499995185],
      [-73.5871520545273, 45.566412729231],
      [-73.584731908233, 45.5691066724291],
      [-73.5772385119147, 45.5776818920023],
      [-73.578130955202, 45.5780689341974],
      [-73.5752604702031, 45.5805388907561],
      [-73.5739953109801, 45.5819266091566],
      [-73.5709328233077, 45.5809046758787],
      [-73.5705509760525, 45.5814521659595],
      [-73.5694653361432, 45.5816630209033]]]},
   'properties': {'district': '134-Marie-Victorin'},
   'id': '134'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.7091218538247, 45.5230954877394],
      [-73.6918870159802, 45.5123542857052],
      [-73.6881524418874, 45.5100541386763],
      [-73.6827840991507, 45.5143258168654],
      [-73.6744134053365, 45.5090285090174],
      [-73.6696337564668, 45.5063911079337],
      [-73.6673976326861, 45.5049604588181],
      [-73.6660099573454, 45.5044347648104],
      [-73.6644157884018, 45.5050492992242],
      [-73.6646042365099, 45.504734675849],
      [-73.6681641565442, 45.501660999668],
      [-73.67484741122, 45.4963374151867],
      [-73.680502634204, 45.4920408059609],
      [-73.6825483439594, 45.4907732405381],
      [-73.6860100016197, 45.4896024241141],
      [-73.677264286648, 45.4836591822082],
      [-73.6776271543493, 45.4823345919293],
      [-73.6827804258142, 45.4635658825978],
      [-73.6933043566279, 45.4703396575946],
      [-73.6947785817616, 45.4645178045181],
      [-73.69619836572, 45.4654974169452],
      [-73.7047665432935, 45.4712980390786],
      [-73.7080097103994, 45.47334246671],
      [-73.7221390583544, 45.4826358450705],
      [-73.7241021941398, 45.4814064808358],
      [-73.7315756591541, 45.4757155112906],
      [-73.7423991292426, 45.4671531227456],
      [-73.74247528623, 45.4670360365519],
      [-73.7505933570667, 45.4606744381013],
      [-73.7626492898165, 45.4684579890562],
      [-73.7623181805669, 45.4687557278511],
      [-73.7684606113614, 45.4749503791392],
      [-73.7661156464615, 45.4767286467613],
      [-73.7690019457786, 45.4785035754768],
      [-73.7741729540726, 45.4818386741628],
      [-73.7681746120908, 45.4847594283289],
      [-73.7678463791609, 45.485678039566],
      [-73.7664813956616, 45.486482172257],
      [-73.7666703097771, 45.4885693048636],
      [-73.7671205072924, 45.4890902137182],
      [-73.7645934137213, 45.4903739088715],
      [-73.7681822983003, 45.4944507802049],
      [-73.767927191601, 45.4946223655038],
      [-73.7708534417468, 45.4965141396676],
      [-73.7735738316828, 45.4981363521851],
      [-73.7716579558132, 45.4991257181769],
      [-73.7738796981111, 45.5005112554049],
      [-73.770851931212, 45.5015263075263],
      [-73.7725018897261, 45.5025715611262],
      [-73.7709616412032, 45.5034073001873],
      [-73.7692002551043, 45.5040137486001],
      [-73.7671979733428, 45.5027497284985],
      [-73.7653841918245, 45.5034648112556],
      [-73.764601206777, 45.5029446682134],
      [-73.7638615520544, 45.5034953365559],
      [-73.7609994664832, 45.5016752336666],
      [-73.7594306007504, 45.5027766325504],
      [-73.7582371682807, 45.5020414841587],
      [-73.756652358581, 45.5024589334263],
      [-73.7547114610262, 45.5033812068779],
      [-73.7530750881715, 45.5037537247243],
      [-73.7516832079437, 45.5044227485347],
      [-73.7550630650544, 45.5065238038199],
      [-73.7350991221023, 45.5137867482303],
      [-73.7285097856203, 45.5160943522463],
      [-73.7358987648866, 45.5207291683311],
      [-73.7317546325275, 45.5236815365784],
      [-73.7280602953464, 45.5213554616816],
      [-73.7217031155859, 45.5267447688191],
      [-73.7185119695016, 45.5247508136954],
      [-73.7172924358234, 45.5256928911099],
      [-73.7145584630039, 45.5239315629596],
      [-73.7131122096208, 45.5251637887575],
      [-73.7112612170074, 45.5243023856458],
      [-73.7091218538247, 45.5230954877394]]]},
   'properties': {'district': '141-Côte-de-Liesse'},
   'id': '141'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6510270564502, 45.5263874543882],
      [-73.6529551695687, 45.5229726150982],
      [-73.6580588118226, 45.5152954959574],
      [-73.6620316014577, 45.509044066038],
      [-73.6644157884018, 45.5050492992242],
      [-73.6660099573454, 45.5044347648104],
      [-73.6673976326861, 45.5049604588181],
      [-73.6696337564668, 45.5063911079337],
      [-73.6744134053365, 45.5090285090174],
      [-73.6827840991507, 45.5143258168654],
      [-73.6881524418874, 45.5100541386763],
      [-73.6918870159802, 45.5123542857052],
      [-73.7091218538247, 45.5230954877394],
      [-73.6963296087078, 45.5276805484038],
      [-73.6939612003867, 45.528347826243],
      [-73.6897803429098, 45.5288476157777],
      [-73.6870922504792, 45.5286619976995],
      [-73.685195685208, 45.5301022578388],
      [-73.683124268159, 45.5305991300384],
      [-73.6764129283619, 45.5321264506516],
      [-73.6747555535799, 45.5323081056009],
      [-73.6726124365382, 45.5322997327559],
      [-73.6698852350516, 45.5318835785726],
      [-73.6555330494037, 45.5277342274232],
      [-73.6510270564502, 45.5263874543882]]]},
   'properties': {'district': '142-Norman-McLaren'},
   'id': '142'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5696609688417, 45.5965806032278],
      [-73.5687432258054, 45.5949521683749],
      [-73.5690474086577, 45.5937353194892],
      [-73.5686767639537, 45.5922969983003],
      [-73.5663609324088, 45.5883396268265],
      [-73.5642246834943, 45.5872483268508],
      [-73.5642198577817, 45.5854079588427],
      [-73.563949176176, 45.5849798671748],
      [-73.566054883333, 45.5843176844033],
      [-73.5648413846768, 45.5830623920281],
      [-73.5683754804235, 45.5814045757918],
      [-73.5694653361432, 45.5816630209033],
      [-73.5732723109658, 45.5829252463303],
      [-73.5742252628096, 45.5830975713343],
      [-73.5790395581623, 45.5832311484519],
      [-73.5817361693186, 45.5828435232896],
      [-73.5850508708636, 45.5817485572606],
      [-73.5872765077617, 45.5817600646972],
      [-73.5896208961855, 45.5825234015516],
      [-73.5927968176961, 45.5840511668496],
      [-73.5944959844225, 45.585037876555],
      [-73.5961671053026, 45.5863788582573],
      [-73.5985181690096, 45.5893118445279],
      [-73.6020871279873, 45.5931683856944],
      [-73.6032485083726, 45.5942192930034],
      [-73.6086990780645, 45.5965789895409],
      [-73.6101417757025, 45.5974474797099],
      [-73.6116347298964, 45.5986698542549],
      [-73.6130354491493, 45.6003781128039],
      [-73.61467650443, 45.601820884038],
      [-73.6125635803426, 45.604373796832],
      [-73.6092890313816, 45.6081470965116],
      [-73.6079197060538, 45.6094530924621],
      [-73.6062298901187, 45.610759685103],
      [-73.6048043091085, 45.6094292879636],
      [-73.6035616092243, 45.6101078733853],
      [-73.6041139394664, 45.6106174089674],
      [-73.6028907661658, 45.6112216102358],
      [-73.6013378366857, 45.6104025414741],
      [-73.5971103983983, 45.6085989887758],
      [-73.5889961999073, 45.6050220349527],
      [-73.5771288919308, 45.599852413767],
      [-73.576232424293, 45.5992577290381],
      [-73.5745938220503, 45.5986717630315],
      [-73.5726733802096, 45.5977479911912],
      [-73.5696609688417, 45.5965806032278]]]},
   'properties': {'district': '151-Saint-Léonard-Est'},
   'id': '151'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5694653361432, 45.5816630209033],
      [-73.5705509760525, 45.5814521659595],
      [-73.5709328233077, 45.5809046758787],
      [-73.5739953109801, 45.5819266091566],
      [-73.5752604702031, 45.5805388907561],
      [-73.578130955202, 45.5780689341974],
      [-73.5772385119147, 45.5776818920023],
      [-73.584731908233, 45.5691066724291],
      [-73.5871520545273, 45.566412729231],
      [-73.5874046777632, 45.5664890958155],
      [-73.5986381445569, 45.5714628841478],
      [-73.6016424297946, 45.5727835347079],
      [-73.6005459884454, 45.5740149891614],
      [-73.6023753660902, 45.5742891313383],
      [-73.6043589520305, 45.5755705351656],
      [-73.6113135304111, 45.5785547523195],
      [-73.6148320474836, 45.580191303428],
      [-73.6208358233192, 45.5828408672289],
      [-73.623269111324, 45.5839925896586],
      [-73.6242513055513, 45.5846473290482],
      [-73.6267569494518, 45.5854624669655],
      [-73.6280749026379, 45.5838243220039],
      [-73.6288186186035, 45.5832571469721],
      [-73.6296215435427, 45.5838130726522],
      [-73.6202427208594, 45.5951205335532],
      [-73.61467650443, 45.601820884038],
      [-73.6130354491493, 45.6003781128039],
      [-73.6116347298964, 45.5986698542549],
      [-73.6101417757025, 45.5974474797099],
      [-73.6086990780645, 45.5965789895409],
      [-73.6032485083726, 45.5942192930034],
      [-73.6020871279873, 45.5931683856944],
      [-73.5985181690096, 45.5893118445279],
      [-73.5961671053026, 45.5863788582573],
      [-73.5944959844225, 45.585037876555],
      [-73.5927968176961, 45.5840511668496],
      [-73.5896208961855, 45.5825234015516],
      [-73.5872765077617, 45.5817600646972],
      [-73.5850508708636, 45.5817485572606],
      [-73.5817361693186, 45.5828435232896],
      [-73.5790395581623, 45.5832311484519],
      [-73.5742252628096, 45.5830975713343],
      [-73.5732723109658, 45.5829252463303],
      [-73.5694653361432, 45.5816630209033]]]},
   'properties': {'district': '152-Saint-Léonard-Ouest'},
   'id': '152'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5390758626817, 45.4883382585102],
      [-73.5377390087046, 45.4867781311819],
      [-73.5371875080419, 45.4847716425103],
      [-73.5390896331107, 45.4789579782257],
      [-73.5400605004001, 45.4771849523131],
      [-73.5409045352268, 45.4770676622637],
      [-73.544790989561, 45.4746546504853],
      [-73.547897885736, 45.4732945786535],
      [-73.5519632604747, 45.4713851205092],
      [-73.5535995299322, 45.4704935184097],
      [-73.5561183847095, 45.4699434381887],
      [-73.5571517699907, 45.4699658746605],
      [-73.5630845502664, 45.4721519332886],
      [-73.5629773154921, 45.472291406797],
      [-73.5680238353449, 45.4742185784751],
      [-73.5698754985218, 45.474526598925],
      [-73.5723445217071, 45.4741023764959],
      [-73.5731337395658, 45.4754020852012],
      [-73.5751431743146, 45.4755655583636],
      [-73.5776045371727, 45.4761591293053],
      [-73.5787522413781, 45.4747754151352],
      [-73.5814009760351, 45.4720006793341],
      [-73.5831499688592, 45.4704494618721],
      [-73.586192167734, 45.4685776819367],
      [-73.5902980753151, 45.4669303074751],
      [-73.593418397905, 45.4661730419256],
      [-73.5952982354664, 45.4653094409894],
      [-73.5969113989909, 45.4662290782584],
      [-73.6006750017194, 45.4693265503939],
      [-73.6015380888098, 45.4698449656495],
      [-73.5995923966142, 45.4714885118876],
      [-73.5966486659517, 45.4732210790839],
      [-73.5951347718664, 45.4764466331536],
      [-73.5861251156067, 45.4827228896224],
      [-73.5851119123332, 45.4822361060294],
      [-73.5842729287511, 45.4830658950147],
      [-73.5806528881796, 45.4855782409323],
      [-73.5812577295116, 45.4863226865868],
      [-73.5788051804801, 45.4879299741214],
      [-73.5726247033677, 45.4927252183027],
      [-73.5671882558807, 45.4901263927885],
      [-73.5653550896585, 45.4921968620631],
      [-73.5630011277184, 45.4954107671203],
      [-73.561988917097, 45.497173589984],
      [-73.5607477815647, 45.4979125426916],
      [-73.5594748545018, 45.4973055470605],
      [-73.5559728136711, 45.4959454567625],
      [-73.5545777017417, 45.4947339282606],
      [-73.5533130105218, 45.4921853756885],
      [-73.5524160214136, 45.4912899988865],
      [-73.5507109567109, 45.4904150448375],
      [-73.5496180493079, 45.4900890295113],
      [-73.5411879980439, 45.4884799718781],
      [-73.5398824970348, 45.4880751564896],
      [-73.5390758626817, 45.4883382585102]]]},
   'properties': {'district': '161-Saint-HenriPetite-BourgognePointe-Saint-Charles'},
   'id': '161'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5803978450664, 45.4607242060317],
      [-73.580383848446, 45.45869859258],
      [-73.5808415940198, 45.4566805659982],
      [-73.5822612868352, 45.4543201865436],
      [-73.5841878662571, 45.4525126975338],
      [-73.5873026203887, 45.4501968887305],
      [-73.5895426922804, 45.4479760865095],
      [-73.590317536462, 45.4476444830976],
      [-73.5946364116012, 45.4432356001591],
      [-73.5993656298056, 45.437522488597],
      [-73.5996082895714, 45.4375187309259],
      [-73.6118008558715, 45.4394499728596],
      [-73.6104503124607, 45.4429793199455],
      [-73.6094089858961, 45.4442773154325],
      [-73.6052123848584, 45.4479821667775],
      [-73.6048092799479, 45.4489130784869],
      [-73.6068239912076, 45.4545470690524],
      [-73.6136079881888, 45.4576954341346],
      [-73.6201147014597, 45.4548257159799],
      [-73.622324477466, 45.4535901866228],
      [-73.6255515041789, 45.4513172221793],
      [-73.6269986444794, 45.4501430927141],
      [-73.6288149375869, 45.4482900651074],
      [-73.6290926270452, 45.4483946176344],
      [-73.6320301276656, 45.4495010416609],
      [-73.6351722497066, 45.4507225431116],
      [-73.6350181512615, 45.4509158064615],
      [-73.6314544395632, 45.4527593013115],
      [-73.6262003043123, 45.4574918787775],
      [-73.6243236842049, 45.4586553508057],
      [-73.6200562870233, 45.4616683026575],
      [-73.6182352042185, 45.4622268121902],
      [-73.6157015928197, 45.4632907897894],
      [-73.6121904900053, 45.4648542087469],
      [-73.6116004847967, 45.4647691120724],
      [-73.6058459619009, 45.4672881102352],
      [-73.6056266168094, 45.4676031109374],
      [-73.6031619796725, 45.4691032161751],
      [-73.6025897276388, 45.4690525247808],
      [-73.6015380888098, 45.4698449656495],
      [-73.6006750017194, 45.4693265503939],
      [-73.5969113989909, 45.4662290782584],
      [-73.5952982354664, 45.4653094409894],
      [-73.593418397905, 45.4661730419256],
      [-73.5902980753151, 45.4669303074751],
      [-73.586192167734, 45.4685776819367],
      [-73.5831499688592, 45.4704494618721],
      [-73.5814009760351, 45.4720006793341],
      [-73.5787522413781, 45.4747754151352],
      [-73.5776045371727, 45.4761591293053],
      [-73.5751431743146, 45.4755655583636],
      [-73.5731337395658, 45.4754020852012],
      [-73.5723445217071, 45.4741023764959],
      [-73.5717046710668, 45.4728345777635],
      [-73.5722263249864, 45.4666080942859],
      [-73.5725692397967, 45.4663779997673],
      [-73.5760636235492, 45.4665267227639],
      [-73.57595438059, 45.467731089093],
      [-73.5774466724098, 45.4677934094142],
      [-73.5787521792962, 45.467573327191],
      [-73.5788688512642, 45.4664809032158],
      [-73.5806776025411, 45.4665598624633],
      [-73.5810988106852, 45.464472934997],
      [-73.5809592544789, 45.4629192039784],
      [-73.5803978450664, 45.4607242060317]]]},
   'properties': {'district': '162-Saint-PaulÉmard'},
   'id': '162'},
  {'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.561675647957, 45.457026812229],
       [-73.5636503131163, 45.4570986393357],
       [-73.5631589565038, 45.4599505630657],
       [-73.5803978450664, 45.4607242060317],
       [-73.5809592544789, 45.4629192039784],
       [-73.5810988106852, 45.464472934997],
       [-73.5806776025411, 45.4665598624633],
       [-73.5788688512642, 45.4664809032158],
       [-73.5787521792962, 45.467573327191],
       [-73.5774466724098, 45.4677934094142],
       [-73.57595438059, 45.467731089093],
       [-73.5760636235492, 45.4665267227639],
       [-73.5725692397967, 45.4663779997673],
       [-73.5722263249864, 45.4666080942859],
       [-73.5717046710668, 45.4728345777635],
       [-73.5723445217071, 45.4741023764959],
       [-73.5698754985218, 45.474526598925],
       [-73.5680238353449, 45.4742185784751],
       [-73.5629773154921, 45.472291406797],
       [-73.5630845502664, 45.4721519332886],
       [-73.5571517699907, 45.4699658746605],
       [-73.5566742286267, 45.4697998242277],
       [-73.5564729236705, 45.4697250295537],
       [-73.5568919723525, 45.4692509155842],
       [-73.5584979993156, 45.4688652320405],
       [-73.5594741255912, 45.4680886833354],
       [-73.5600314607336, 45.4630762897765],
       [-73.5602070432843, 45.4599716856435],
       [-73.5604361685249, 45.458927727929],
       [-73.561675647957, 45.457026812229]]],
     [[[-73.531939269639, 45.4668762388698],
       [-73.533282030383, 45.4668218592047],
       [-73.5391619813113, 45.4629235420104],
       [-73.5399777236207, 45.4591888832885],
       [-73.5484320046815, 45.4470555292603],
       [-73.5539781715369, 45.4450013623675],
       [-73.5598960265295, 45.4441434701074],
       [-73.5620234184536, 45.4489835563647],
       [-73.5598289224776, 45.4530789952144],
       [-73.5597287567806, 45.4550947277761],
       [-73.5567932176119, 45.4601984189426],
       [-73.5563771935053, 45.4660746682549],
       [-73.5556877795518, 45.4672628311292],
       [-73.5517365614674, 45.4676966587134],
       [-73.5498323828317, 45.4691552202777],
       [-73.5458565074551, 45.4710106620399],
       [-73.544425597308, 45.472837915256],
       [-73.541638672543, 45.4745667491612],
       [-73.539337021061, 45.4752874231563],
       [-73.5374306118892, 45.4744062177182],
       [-73.5344866609104, 45.4708347638261],
       [-73.5344988591904, 45.4699079767891],
       [-73.5334499941273, 45.4695573443126],
       [-73.531939269639, 45.4668762388698]]]]},
   'properties': {'district': "171-ChamplainL'Île-des-Soeurs"},
   'id': '171'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5837871545249, 45.4350036826887],
      [-73.5993656298056, 45.437522488597],
      [-73.5946364116012, 45.4432356001591],
      [-73.590317536462, 45.4476444830976],
      [-73.5895426922804, 45.4479760865095],
      [-73.5873026203887, 45.4501968887305],
      [-73.5841878662571, 45.4525126975338],
      [-73.5822612868352, 45.4543201865436],
      [-73.5808415940198, 45.4566805659982],
      [-73.580383848446, 45.45869859258],
      [-73.5803978450664, 45.4607242060317],
      [-73.5631589565038, 45.4599505630657],
      [-73.5636503131163, 45.4570986393357],
      [-73.561675647957, 45.457026812229],
      [-73.5644316339364, 45.4531214887569],
      [-73.5653629828168, 45.4514382552214],
      [-73.5666188947215, 45.4498773089445],
      [-73.5684785830554, 45.4481879229679],
      [-73.5692699550472, 45.4471436069185],
      [-73.5705853638418, 45.446107961992],
      [-73.5722579304274, 45.444469116852],
      [-73.5739182313887, 45.4433612189646],
      [-73.5756800507555, 45.4416593600233],
      [-73.5779148011138, 45.4400830529182],
      [-73.5837871545249, 45.4350036826887]]]},
   'properties': {'district': '172-Desmarchais-Crawford'},
   'id': '172'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5734800018833, 45.5049709717948],
      [-73.5674300859224, 45.5019457643141],
      [-73.5651563545969, 45.5009257536286],
      [-73.5607477815647, 45.4979125426916],
      [-73.561988917097, 45.497173589984],
      [-73.5630011277184, 45.4954107671203],
      [-73.5653550896585, 45.4921968620631],
      [-73.5671882558807, 45.4901263927885],
      [-73.5726247033677, 45.4927252183027],
      [-73.5788051804801, 45.4879299741214],
      [-73.5812577295116, 45.4863226865868],
      [-73.583103429338, 45.4880924257338],
      [-73.5822957867321, 45.4883263628527],
      [-73.5956809652028, 45.4926003378767],
      [-73.5964675380297, 45.491704867985],
      [-73.6012074615523, 45.4937019439569],
      [-73.6009266859408, 45.4942697485875],
      [-73.6045082688859, 45.4947060857692],
      [-73.6068399722065, 45.4952769144878],
      [-73.6044775189475, 45.4952226776326],
      [-73.6033750499038, 45.4967309718248],
      [-73.6009279740317, 45.4988800346583],
      [-73.5997960499359, 45.5001439911523],
      [-73.5977240363362, 45.5016310280474],
      [-73.594737745289, 45.5028667176493],
      [-73.5941401789655, 45.5033436344744],
      [-73.5956108742759, 45.504064067218],
      [-73.591464574106, 45.508070751295],
      [-73.594191031848, 45.5097864575692],
      [-73.5935088435771, 45.5105257693584],
      [-73.5949672180747, 45.5109069459258],
      [-73.5969012890154, 45.5117790625741],
      [-73.5969405107098, 45.5130415385056],
      [-73.598896296438, 45.5131127563816],
      [-73.5978614314752, 45.5141637733071],
      [-73.5968586638591, 45.5145623065118],
      [-73.5918451342772, 45.5144729450241],
      [-73.5911992183544, 45.5147110287094],
      [-73.5902604532774, 45.5157813641729],
      [-73.5893088980696, 45.5167596569974],
      [-73.582430798457, 45.5136019767056],
      [-73.5786781018666, 45.5117608495828],
      [-73.5785542203746, 45.5104511791594],
      [-73.580113792401, 45.5081921313855],
      [-73.5734800018833, 45.5049709717948]]]},
   'properties': {'district': '181-Peter-McGill'},
   'id': '181'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5448806808084, 45.5191907535652],
      [-73.5464379266303, 45.5162854363298],
      [-73.5468620115755, 45.513857976795],
      [-73.5492190367874, 45.5102959685844],
      [-73.5477210054261, 45.5103219824598],
      [-73.5469030036515, 45.5117340389128],
      [-73.54657799908, 45.5129270270646],
      [-73.5456969917881, 45.512357998283],
      [-73.5463640090514, 45.5093239803744],
      [-73.549695020088, 45.5092129682665],
      [-73.550625003396, 45.5079019928894],
      [-73.5467100456003, 45.5077980094498],
      [-73.5469790182482, 45.5067930379886],
      [-73.5514338758453, 45.5065970940784],
      [-73.5520469804644, 45.5053720127641],
      [-73.5473670408895, 45.5056550070783],
      [-73.5477130465639, 45.5046509913685],
      [-73.552496564402, 45.5042657932143],
      [-73.5528089694944, 45.5031050102093],
      [-73.5479779947401, 45.5032960364571],
      [-73.5483780292475, 45.5021840045336],
      [-73.5528640439438, 45.5019529839854],
      [-73.5523299208625, 45.4996958153214],
      [-73.5495469612169, 45.4995170102135],
      [-73.5501069846685, 45.4916750357777],
      [-73.5489559611269, 45.4916509673111],
      [-73.5478249505202, 45.4998100412319],
      [-73.5461249747178, 45.4997069784511],
      [-73.5466960251749, 45.494926043877],
      [-73.5457370062228, 45.4948960144495],
      [-73.5450679617308, 45.4999819687279],
      [-73.5437740015677, 45.5074910365882],
      [-73.5427789476457, 45.5078289768043],
      [-73.542713028629, 45.5014819775582],
      [-73.5425669725168, 45.4977269821455],
      [-73.5411679652957, 45.4913989983256],
      [-73.5390758626817, 45.4883382585102],
      [-73.5398824970348, 45.4880751564896],
      [-73.5411879980439, 45.4884799718781],
      [-73.5496180493079, 45.4900890295113],
      [-73.5507109567109, 45.4904150448375],
      [-73.5524160214136, 45.4912899988865],
      [-73.5533130105218, 45.4921853756885],
      [-73.5545777017417, 45.4947339282606],
      [-73.5559728136711, 45.4959454567625],
      [-73.5594748545018, 45.4973055470605],
      [-73.5607477815647, 45.4979125426916],
      [-73.5651563545969, 45.5009257536286],
      [-73.5674300859224, 45.5019457643141],
      [-73.5734800018833, 45.5049709717948],
      [-73.5729588302122, 45.5055494196855],
      [-73.571279665339, 45.5083636436696],
      [-73.5655904084691, 45.5210639273018],
      [-73.5655614721314, 45.5213643879447],
      [-73.5652383566418, 45.5238165260966],
      [-73.5568838251035, 45.5199246700318],
      [-73.5537687235941, 45.5232551201153],
      [-73.5497109051325, 45.521356149553],
      [-73.5448806808084, 45.5191907535652]]]},
   'properties': {'district': '182-Saint-Jacques'},
   'id': '182'},
  {'type': 'Feature',
   'geometry': {'type': 'MultiPolygon',
    'coordinates': [[[[-73.5274147442424, 45.5235135910537],
       [-73.5251840405205, 45.5163154069544],
       [-73.5190996853698, 45.4964289566498],
       [-73.5196839019087, 45.4963133966792],
       [-73.5192316055091, 45.4951826206437],
       [-73.5235780132462, 45.4965380018334],
       [-73.5262219855313, 45.4982100373889],
       [-73.5284680362731, 45.4999489748907],
       [-73.5298469696156, 45.5015420394984],
       [-73.5305050225488, 45.5047999722322],
       [-73.5301920008631, 45.5074609662696],
       [-73.5284829714113, 45.5111469746062],
       [-73.5295139475797, 45.521700975721],
       [-73.5275250227419, 45.5218729979917],
       [-73.5274147442424, 45.5235135910537]]],
     [[[-73.5323979026789, 45.5309116588315],
       [-73.5322539821252, 45.5289053155386],
       [-73.532650406906, 45.5287379966455],
       [-73.535473289372, 45.5289601566106],
       [-73.5360719733226, 45.5280409644584],
       [-73.535776948517, 45.527560047342],
       [-73.5344149864457, 45.5272360422621],
       [-73.5339490789414, 45.5259734056912],
       [-73.5318552691702, 45.5248370417729],
       [-73.5314333871381, 45.5222881159041],
       [-73.5315020312839, 45.5206100031596],
       [-73.5304254498686, 45.5175627808954],
       [-73.5300105388493, 45.5149954869969],
       [-73.530089354595, 45.5141148861583],
       [-73.5320378226962, 45.5082952174682],
       [-73.5331764353799, 45.5063562405992],
       [-73.5349739836122, 45.5062349788193],
       [-73.5356400145159, 45.5066940066737],
       [-73.5374959977644, 45.5096790170141],
       [-73.5387299917373, 45.5139430070273],
       [-73.5384300301647, 45.5176120247025],
       [-73.5393770324368, 45.5206029708317],
       [-73.5399389592119, 45.523607991237],
       [-73.5390530375969, 45.5256939673896],
       [-73.5354039767675, 45.5305800445252],
       [-73.5342920245728, 45.5315010077074],
       [-73.5329380014176, 45.53135795749],
       [-73.5323979026789, 45.5309116588315]]],
     [[[-73.5448806808084, 45.5191907535652],
       [-73.5497109051325, 45.521356149553],
       [-73.5537687235941, 45.5232551201153],
       [-73.5568838251035, 45.5199246700318],
       [-73.5652383566418, 45.5238165260966],
       [-73.5641429566138, 45.5273492053093],
       [-73.5613401818778, 45.5359226324552],
       [-73.5592280432661, 45.5399028690768],
       [-73.550216365092, 45.5389758922042],
       [-73.5482541001656, 45.5383569002539],
       [-73.5473499781753, 45.5376709059424],
       [-73.5439636509721, 45.5334697006227],
       [-73.5428587889529, 45.5304546205586],
       [-73.5417879567955, 45.529933001055],
       [-73.542631029933, 45.5272240023092],
       [-73.5433079570219, 45.5259280339674],
       [-73.5450449609183, 45.5202409952069],
       [-73.5448806808084, 45.5191907535652]]]]},
   'properties': {'district': '183-Sainte-Marie'},
   'id': '183'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5986381445569, 45.5714628841478],
      [-73.6027105259893, 45.5669595870386],
      [-73.6076346034193, 45.5613579100341],
      [-73.6093881709895, 45.5598575160123],
      [-73.6142388370954, 45.5543735967318],
      [-73.6161654573353, 45.5519916303917],
      [-73.6217484540132, 45.5544783077209],
      [-73.6240413737876, 45.5555253903511],
      [-73.6453511352974, 45.5647725775888],
      [-73.6446417578686, 45.5658132919643],
      [-73.6362833815582, 45.5758266113331],
      [-73.6363215300962, 45.5759177646435],
      [-73.6327012962769, 45.5799802985646],
      [-73.631962332515, 45.579640175342],
      [-73.6288186186035, 45.5832571469721],
      [-73.6280749026379, 45.5838243220039],
      [-73.6267569494518, 45.5854624669655],
      [-73.6242513055513, 45.5846473290482],
      [-73.623269111324, 45.5839925896586],
      [-73.6208358233192, 45.5828408672289],
      [-73.6148320474836, 45.580191303428],
      [-73.6113135304111, 45.5785547523195],
      [-73.6043589520305, 45.5755705351656],
      [-73.6023753660902, 45.5742891313383],
      [-73.6005459884454, 45.5740149891614],
      [-73.6016424297946, 45.5727835347079],
      [-73.5986381445569, 45.5714628841478]]]},
   'properties': {'district': '191-Saint-Michel'},
   'id': '191'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.5871520545273, 45.566412729231],
      [-73.5863094536503, 45.5661499995185],
      [-73.5910006798707, 45.5607570868859],
      [-73.5975914187124, 45.553207322408],
      [-73.6019471163738, 45.5481178990012],
      [-73.6035398110948, 45.5463469119155],
      [-73.6070387029669, 45.5479557550382],
      [-73.6086846729618, 45.5461409843801],
      [-73.6205880272051, 45.5514560807313],
      [-73.6201064769685, 45.5520190517324],
      [-73.6235005117779, 45.5536358848324],
      [-73.6217484540132, 45.5544783077209],
      [-73.6161654573353, 45.5519916303917],
      [-73.6142388370954, 45.5543735967318],
      [-73.6093881709895, 45.5598575160123],
      [-73.6076346034193, 45.5613579100341],
      [-73.6027105259893, 45.5669595870386],
      [-73.5986381445569, 45.5714628841478],
      [-73.5874046777632, 45.5664890958155],
      [-73.5871520545273, 45.566412729231]]]},
   'properties': {'district': '192-François-Perrault'},
   'id': '192'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6168611349556, 45.5357046144078],
      [-73.618922206967, 45.5366652760056],
      [-73.6407295659042, 45.5429686686779],
      [-73.6398673671325, 45.5441488267699],
      [-73.6363671046978, 45.548169415833],
      [-73.6342899238824, 45.5494628161417],
      [-73.6325600663803, 45.5499795021129],
      [-73.6301686544477, 45.5503989164938],
      [-73.6278096771011, 45.5513024018691],
      [-73.6235005117779, 45.5536358848324],
      [-73.6201064769685, 45.5520190517324],
      [-73.6205880272051, 45.5514560807313],
      [-73.6086846729618, 45.5461409843801],
      [-73.6123252903368, 45.5421333051385],
      [-73.6144250141163, 45.5383032859687],
      [-73.6168611349556, 45.5357046144078]]]},
   'properties': {'district': '193-Villeray'},
   'id': '193'},
  {'type': 'Feature',
   'geometry': {'type': 'Polygon',
    'coordinates': [[[-73.6170925681517, 45.5277209056734],
      [-73.617235572865, 45.5277835686717],
      [-73.6208637881685, 45.5236565043515],
      [-73.6221372911404, 45.5240220054992],
      [-73.6227576775837, 45.5233405909978],
      [-73.6485543103777, 45.5308320827376],
      [-73.6407295659042, 45.5429686686779],
      [-73.618922206967, 45.5366652760056],
      [-73.6168611349556, 45.5357046144078],
      [-73.6182756954315, 45.5346855542873],
      [-73.6215351178101, 45.5311083503899],
      [-73.6190955864224, 45.5306548374863],
      [-73.6174856875378, 45.5297416402976],
      [-73.6170629786343, 45.5290836882431],
      [-73.6170925681517, 45.5277209056734]]]},
   'properties': {'district': '194-Parc-Extension'},
   'id': '194'}]}
In [ ]: